diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18606a7ac..8ada99197 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,14 +54,10 @@ jobs: - name: Editable install run: | uv venv - # scikit-build-core pinned <1: the 1.x editable install changed where - # the compiled extension lands, which breaks the Windows DLL-vendoring - # step below (green on 0.12.2, DLL load failure on 1.0.2). Lift the pin - # together with a rework of that step. --no-build-isolation so the - # pinned backend in the venv is the one that actually builds the - # editable wheel (isolation would re-resolve pyproject's - # scikit-build-core>=0.11 to 1.x). - uv pip install "scikit-build-core<1" pybind11 numpy + # --no-build-isolation so the backend in the venv is the one that + # actually builds the editable wheel (and so later direct cmake + # rebuilds share its build tree). + uv pip install scikit-build-core pybind11 numpy uv pip install -e .[dev] --no-build-isolation - name: Vendor conda BLAS/LAPACK runtime next to the extension (Windows) @@ -70,13 +66,18 @@ jobs: # Trigger the lazy scikit-build-core editable build so the extension and its # install dir exist (the import itself fails on the missing BLAS DLL -- expected). uv run python -c "import simcoon" 2>&1 | Out-Null - # simcoon/__init__.py adds its own package dir to the DLL search - # (os.add_dll_directory). Copy conda's reference BLAS/LAPACK + Fortran runtime - # there so _core resolves its transitive deps under the uv venv: unlike the conda - # Python used by ci.yml, the venv does not see C:\Miniconda\Library\bin, and - # Python 3.8+ ignores PATH for extension-module dependencies. - $dst = ".venv\Lib\site-packages\simcoon" - Copy-Item "$env:CONDA\Library\bin\*.dll" $dst -Force -ErrorAction SilentlyContinue + # Copy conda's reference BLAS/LAPACK + Fortran runtime NEXT TO _core.pyd: + # Windows resolves an extension module's dependencies from the pyd's own + # directory (PATH is ignored since Python 3.8, and the uv venv does not see + # C:\Miniconda\Library\bin like ci.yml's conda Python does). The pyd's + # location depends on the scikit-build-core editable layout (site-packages + # on 0.x, redirected to \install\platlib\simcoon on 1.x), so + # locate it instead of hardcoding either. + $pyds = Get-ChildItem -Path build, .venv\Lib\site-packages -Recurse -Filter "_core*.pyd" -ErrorAction SilentlyContinue + if (-not $pyds) { Write-Error "editable _core.pyd not found"; exit 1 } + foreach ($pyd in $pyds) { + Copy-Item "$env:CONDA\Library\bin\*.dll" $pyd.DirectoryName -Force -ErrorAction SilentlyContinue + } exit 0 - name: Verify cmake rebuild works (Unix) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d3781807..f6f0ea2ec 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -370,13 +370,6 @@ if(WIN32 AND BUILD_PYTHON_BINDINGS) endif() endif() -# Compile public executables (with main functions) -set(EXECUTABLES solver L_eff Elastic_props ODF PDF) -foreach(exe_name ${EXECUTABLES}) - add_executable(${exe_name} software/${exe_name}.cpp) - target_link_libraries(${exe_name} PRIVATE simcoon ${CMAKE_DL_LIBS}) -endforeach() - ##Testing if(SIMCOON_BUILD_TESTS) # Test plugin libraries diff --git a/bench/bench_legacy_vs_modular.py b/bench/bench_legacy_vs_modular.py new file mode 100644 index 000000000..b83da6085 --- /dev/null +++ b/bench/bench_legacy_vs_modular.py @@ -0,0 +1,202 @@ +"""Benchmark legacy UMATs against their MODUL (modular UMAT) twin configurations. + +ZENER/ZENNK are intentionally absent: Zener_fast/Zener_Nfast are generalized +KELVIN chains (branch driving force sigma - L_i EV_i), a different rheological +model from the modular Prony (generalized Maxwell) — no twin exists. + +Methodology: INTERLEAVED A/B — each repetition runs the legacy kernel then the +modular twin back-to-back, so load spikes hit both arms equally; the reported +estimator is the MINIMUM over repetitions (least-noise wall time; naive medians +proved 5x sensitive to background load). A max-deviation column doubles as an +equivalence smoke check. + +Usage: + python bench/bench_legacy_vs_modular.py [--families ELISO,EPCHA,...] + [--repeats 8] + +Run from anywhere; paths resolve relative to the repo. Requires the simcoon +python package (editable install). Results land in a temp dir and are removed. +""" +import argparse +import os +import statistics +import tempfile +import time +from pathlib import Path + +import numpy as np + +import simcoon as sim +from simcoon.modular import ( + ModularMaterial, IsotropicElasticity, CubicElasticity, + TransverseIsotropicElasticity, OrthotropicElasticity, + Plasticity, VoceHardening, PowerLawHardening, + HillYield, DFAYield, AnisotropicYield, + PragerHardening, ChabocheHardening, Viscoelasticity, +) + +REPO = Path(__file__).resolve().parents[1] +EXAMPLES = REPO / "examples" / "mechanical" + +VE_TERMS = [(1500., 0.35, 3000., 1200.), + (800., 0.35, 30000., 12000.), + (400., 0.35, 300000., 120000.)] + + +def _mat(elasticity, mechanisms=()): + return ModularMaterial(elasticity=elasticity, mechanisms=list(mechanisms)) + + +# family -> (legacy_name, legacy_props, legacy_nstatev, path_file, ModularMaterial) +FAMILIES = { + "ELISO": ("ELISO", [210000., 0.3, 1.2e-5], 1, "MODUL_path.txt", + _mat(IsotropicElasticity(C1=210000., C2=0.3, alpha=1.2e-5))), + "ELIST": ("ELIST", [3, 230000., 15000., 0.02, 0.4, 50000., 0., 0.], 1, + "MODUL_path.txt", + _mat(TransverseIsotropicElasticity(EL=230000., ET=15000., + nuTL=0.02, nuTT=0.4, + GLT=50000., axis=3))), + "ELORT": ("ELORT", [70000., 30000., 15000., 0.3, 0.3, 0.3, + 8000., 6000., 5000., 1e-5, 2e-5, 3e-5], 1, + "MODUL_path.txt", + _mat(OrthotropicElasticity(C1=70000., C2=30000., C3=15000., + C4=0.3, C5=0.3, C6=0.3, + C7=8000., C8=6000., C9=5000., + alpha1=1e-5, alpha2=2e-5, alpha3=3e-5))), + "EPICP": ("EPICP", [210000., 0.3, 0., 300., 1000., 0.3], 8, "MODUL_path.txt", + _mat(IsotropicElasticity(C1=210000., C2=0.3), + [Plasticity(sigma_Y=300., + isotropic_hardening=PowerLawHardening(k=1000., m=0.3))])), + "EPKCP": ("EPKCP", [210000., 0.3, 0., 300., 1000., 1.0, 20000.], 33, + "MODUL_path.txt", + _mat(IsotropicElasticity(C1=210000., C2=0.3), + [Plasticity(sigma_Y=300., + isotropic_hardening=PowerLawHardening(k=1000., m=1.0), + kinematic_hardening=PragerHardening(C=1.5 * 20000.))])), + "EPCHA": ("EPCHA", [210000., 0.3, 0., 300., 200., 20., + 30000., 172., 19500., 301.], 33, "MODUL_path.txt", + _mat(IsotropicElasticity(C1=210000., C2=0.3), + [Plasticity(sigma_Y=300., + isotropic_hardening=VoceHardening(Q=200., b=20.), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))])), + "EPHIL": ("EPHIL", [210000., 0.3, 0., 300., 5000., 1.0, + 0.5, 0.4, 0.6, 1.5, 1.5, 1.5], 33, "MODUL_path.txt", + _mat(IsotropicElasticity(C1=210000., C2=0.3), + [Plasticity(sigma_Y=300., + yield_criterion=HillYield(F=0.5, G=0.4, H=0.6, + L=1.5, M=1.5, N=1.5), + isotropic_hardening=PowerLawHardening(k=5000., m=1.0))])), + "EPHAC": ("EPHAC", [210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 0.5, 0.4, 0.6, 1.5, 1.5, 1.5], 33, "MODUL_path.txt", + _mat(CubicElasticity(C1=210000., C2=0.3, C3=85000.), + [Plasticity(sigma_Y=300., + yield_criterion=HillYield(F=0.5, G=0.4, H=0.6, + L=1.5, M=1.5, N=1.5), + isotropic_hardening=VoceHardening(Q=200., b=20.), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))])), + "EPANI": ("EPANI", [210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 1.2, 1.1, 1.1, -0.6, -0.6, -0.5, 1.6, 1.5, 1.4], 33, + "MODUL_path.txt", + _mat(CubicElasticity(C1=210000., C2=0.3, C3=85000.), + [Plasticity(sigma_Y=300., + yield_criterion=AnisotropicYield( + P11=1.2, P22=1.1, P33=1.1, P12=-0.6, + P13=-0.6, P23=-0.5, P44=1.6, P55=1.5, + P66=1.4), + isotropic_hardening=VoceHardening(Q=200., b=20.), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))])), + "EPDFA": ("EPDFA", [210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 0.5, 0.4, 0.6, 1.5, 1.5, 1.5, 0.1], 33, "MODUL_path.txt", + _mat(CubicElasticity(C1=210000., C2=0.3, C3=85000.), + [Plasticity(sigma_Y=300., + yield_criterion=DFAYield(F=0.5, G=0.4, H=0.6, + L=1.5, M=1.5, N=1.5, + K=0.1), + isotropic_hardening=VoceHardening(Q=200., b=20.), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))])), + "EPCHG": ("EPCHG", [210000., 0.3, 85000., 0., 300., 2, 2, 0, + 150., 15., 50., 40., 30000., 172., 19500., 301.], 33, + "MODUL_path.txt", + _mat(CubicElasticity(C1=210000., C2=0.3, C3=85000.), + [Plasticity(sigma_Y=300., + # legacy N-term iso couples through a single Hp + # -> ONE effective Voce (b_eff=sum b_i, + # Q_eff=sum(b_i Q_i)/sum(b_i)) + isotropic_hardening=VoceHardening( + Q=(15. * 150. + 40. * 50.) / 55., b=55.), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))])), + # EPHIN legacy is defective for N >= 2 (NaN even for identical/inactive + # second surface) — bench the provable N = 1 case. + "EPHIN": ("EPHIN", [210000., 0.3, 0., 1, + 300., 3000., 1.0, 0.5, 0.4, 0.6, 1.5, 1.5, 1.5], 33, + "MODUL_path.txt", + _mat(IsotropicElasticity(C1=210000., C2=0.3), + [Plasticity(sigma_Y=300., + yield_criterion=HillYield(F=0.5, G=0.4, H=0.6, + L=1.5, M=1.5, N=1.5), + isotropic_hardening=PowerLawHardening(k=3000., m=1.0))])), + "PRONK": ("PRONK", [3000., 0.35, 0., 3] + [x for t in VE_TERMS for x in t], + 7 + 7 * 3, "PRONK_path.txt", + _mat(IsotropicElasticity(C1=3000., C2=0.35), + [Viscoelasticity(terms=VE_TERMS)])), +} + + +def bench_family(key, results_dir, repeats): + name, props, nstatev, path_file, mat = FAMILIES[key] + props = np.asarray(props, dtype=float) + t_leg, t_mod = [], [] + out_l, out_m = f"b_{key}_l.txt", f"b_{key}_m.txt" + for _ in range(repeats): + t0 = time.perf_counter() + sim.solver(name, props, nstatev, 0., 0., 0., 0, 1, + "../data", results_dir, path_file, out_l) + t_leg.append(time.perf_counter() - t0) + t0 = time.perf_counter() + sim.solver("MODUL", mat.props, mat.nstatev, 0., 0., 0., 0, 1, + "../data", results_dir, path_file, out_m) + t_mod.append(time.perf_counter() - t0) + # discard the first (warmup) pair; min = least-noise estimator + tl, tm = min(t_leg[1:]), min(t_mod[1:]) + res = Path(EXAMPLES) / results_dir + a = np.loadtxt(res / out_l.replace(".txt", "_global-0.txt"))[:, 14] + b = np.loadtxt(res / out_m.replace(".txt", "_global-0.txt"))[:, 14] + dev = np.max(np.abs(a - b)) / max(np.max(np.abs(a)), 1e-12) + return tl * 1e3, tm * 1e3, dev + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--families", default=",".join(FAMILIES), + help="comma-separated subset of: " + ",".join(FAMILIES)) + ap.add_argument("--repeats", type=int, default=8) + args = ap.parse_args() + + os.chdir(EXAMPLES) + with tempfile.TemporaryDirectory() as tmp: + link = EXAMPLES / f"_bench_{os.getpid()}" + link.symlink_to(tmp, target_is_directory=True) + try: + print(f"| family | legacy [ms] | MODUL [ms] | ratio | max dev |") + print(f"|---|---|---|---|---|") + for key in args.families.split(","): + key = key.strip() + if key not in FAMILIES: + print(f"| {key} | (unknown family) | | | |") + continue + tl, tm, dev = bench_family(key, link.name, args.repeats) + print(f"| {key} | {tl:.1f} | {tm:.1f} | {tm/tl:.2f} | {dev:.2e} |") + finally: + link.unlink() + + +if __name__ == "__main__": + main() diff --git a/docs/simulation/abaqus.rst b/docs/simulation/abaqus.rst index b77af1cf6..4d233a8b4 100644 --- a/docs/simulation/abaqus.rst +++ b/docs/simulation/abaqus.rst @@ -281,40 +281,56 @@ The following constitutive models are available through ``select_umat_M()``: * - Code - Model - - Properties + - Properties (in order) - State Variables * - ELISO - Isotropic elasticity - E, ν, α - - 1 (start flag) + - 1 * - ELIST - Transversely isotropic elasticity - - E₁, E₂, ν₁₂, ν₂₃, G₁₂, α₁, α₂ + - axis, EL, ET, νTL, νTT, GLT, αL, αT - 1 * - ELORT - Orthotropic elasticity - E₁, E₂, E₃, ν₁₂, ν₁₃, ν₂₃, G₁₂, G₁₃, G₂₃, α₁, α₂, α₃ - 1 * - EPICP - - Isotropic plasticity (isotropic hardening) - - E, ν, α, σ_y, H - - 8 (p, Hp, ...) + - Von Mises plasticity, power-law isotropic hardening + - E, ν, α, σ_Y, k, m + - 8 (T_init, p, EP) * - EPKCP - - Kinematic + isotropic hardening - - E, ν, α, σ_y, H, C, γ - - 14 + - Von Mises, power-law isotropic + Prager kinematic + - E, ν, α, σ_Y, k, m, kX + - 14 (T_init, p, EP, a) * - EPCHA - - Chaboche cyclic plasticity - - E, ν, α, σ_y, Q, b, C₁, γ₁, ... - - 14+ - * - EPHIL - - Hill anisotropic plasticity (iso hardening) - - E, ν, α, σ_y, H, F, G, H, L, M, N - - 8 + - Von Mises + Voce + 2× Armstrong-Frederick + - E, ν, α, σ_Y, Q, b, C₁, D₁, C₂, D₂ + - 33 + * - EPHIL / EPTRI + - Hill yield + power-law isotropic hardening + - E, ν, α, σ_Y, k, m, F, G, H, L, M, N + - 8 (T_init, p, EP) * - EPHAC - - Hill + Chaboche - - E, ν, α, σ_y, Q, b, C₁, γ₁, F, G, H, L, M, N - - 14+ + - Cubic elasticity + Hill + Voce + 2× AF + - E, ν, G, α, σ_Y, Q, b, C₁, D₁, C₂, D₂, F, G, H, L, M, N + - 33 + * - EPANI + - Cubic elasticity + anisotropic yield + Voce + 2× AF + - E, ν, G, α, σ_Y, Q, b, C₁, D₁, C₂, D₂, P₁₁..P₆₆ (9) + - 33 + * - EPDFA + - Cubic elasticity + DFA yield + Voce + 2× AF + - E, ν, G, α, σ_Y, Q, b, C₁, D₁, C₂, D₂, F, G, H, L, M, N, K + - 33 + * - EPCHG + - Generic Chaboche (selectable yield, N iso/kin terms) + - E, ν, G, α, σ_Y, N_iso, N_kin, criteria, (Q,b)×N, (C,D)×N, crit. params + - 33 + * - EPHIN + - N Hill yield surfaces + - E, ν, α, N, per surface: σ_Y, k, m, F, G, H, L, M, N + - 1 + 7N * - SMAUT - SMA unified model - See SMA documentation @@ -324,21 +340,29 @@ The following constitutive models are available through ``select_umat_M()``: - See SMA documentation - 24 * - LLDM0 - - Lemaitre-Chaboche damage - - E, ν, α, σ_y, H, S, s, D_c + - Lemaitre-Ladeveze-Dufailly damage + - See header documentation - 9 * - ZENER - - Zener viscoelastic (single branch) - - E₀, E₁, η - - 7 + - Kelvin viscoelastic (single branch) + - E₀, ν₀, α, E₁, ν₁, ηB₁, ηS₁ + - 14 * - ZENNK - - Zener viscoelastic (N branches) - - E₀, E₁, η₁, E₂, η₂, ... - - 1+6N + - Kelvin viscoelastic (N branches) + - E₀, ν₀, α, N, per branch: Eᵢ, νᵢ, ηBᵢ, ηSᵢ + - 7 + 7N * - PRONK - - Prony series viscoelastic - - G₀, K₀, g₁, τ₁, k₁, τ'₁, ... - - 1+12N + - Prony series viscoelastic (generalized Maxwell) + - E₀, ν₀, α, N, per branch: Eᵢ, νᵢ, ηBᵢ, ηSᵢ + - 7 + 7N + * - MODUL + - Composable modular UMAT + - self-describing stream (see :mod:`simcoon.modular`) + - model-dependent + +Several of these names are served by the modular engine through +props-translating adapters — identical usage and results; see +:doc:`umat_catalog` for per-name status and state-variable layout notes. .. list-table:: Micromechanics Models :header-rows: 1 diff --git a/docs/simulation/ansys.rst b/docs/simulation/ansys.rst index 640293f6f..352c0eb53 100644 --- a/docs/simulation/ansys.rst +++ b/docs/simulation/ansys.rst @@ -22,6 +22,8 @@ The Ansys ``USERMAT`` subroutine interface differs from Abaqus in several ways: - **No time step control**: Cannot request smaller time steps from within USERMAT - **State variable initialization**: Cannot set non-zero initial values - **Model selection**: Uses numeric model code in props[0] instead of material name + (the code maps to the same 5-character names — see :doc:`umat_catalog` for + the complete per-name reference) Prerequisites ------------- @@ -119,23 +121,23 @@ Model Codes * - 3 - ELIST - Transversely isotropic elasticity - - E₁, E₂, ν₁₂, ν₂₃, G₁₂, α₁, α₂ + - axis, EL, ET, νTL, νTT, GLT, αL, αT * - 4 - ELORT - Orthotropic elasticity - E₁, E₂, E₃, ν₁₂, ν₁₃, ν₂₃, G₁₂, G₁₃, G₂₃, α₁, α₂, α₃ * - 5 - EPICP - - Isotropic plasticity (isotropic hardening) - - E, ν, α, σ_y, H + - Von Mises plasticity, power-law isotropic hardening + - E, ν, α, σ_Y, k, m * - 6 - EPKCP - - Kinematic + isotropic hardening - - E, ν, α, σ_y, H, C, γ + - Von Mises, power-law isotropic + Prager kinematic + - E, ν, α, σ_Y, k, m, kX * - 7 - EPCHA - - Chaboche cyclic plasticity - - E, ν, α, σ_y, Q, b, C₁, γ₁, ... + - Von Mises + Voce + 2× Armstrong-Frederick + - E, ν, α, σ_Y, Q, b, C₁, D₁, C₂, D₂ * - 8 - SMAUT - SMA unified model @@ -146,24 +148,24 @@ Model Codes - E, ν, α, σ_y, H, S, s, D_c * - 11 - ZENER - - Zener viscoelastic (single branch) - - E₀, E₁, η + - Kelvin viscoelastic (single branch) + - E₀, ν₀, α, E₁, ν₁, ηB₁, ηS₁ * - 12 - ZENNK - - Zener viscoelastic (N branches) - - E₀, E₁, η₁, E₂, η₂, ... + - Kelvin viscoelastic (N branches) + - E₀, ν₀, α, N, per branch: Eᵢ, νᵢ, ηBᵢ, ηSᵢ * - 13 - PRONK - - Prony series viscoelastic - - G₀, K₀, g₁, τ₁, k₁, τ'₁, ... + - Prony series viscoelastic (generalized Maxwell) + - E₀, ν₀, α, N, per branch: Eᵢ, νᵢ, ηBᵢ, ηSᵢ * - 17 - EPHIL - - Hill anisotropic plasticity - - E, ν, α, σ_y, H, F, G, H, L, M, N + - Hill yield + power-law isotropic hardening + - E, ν, α, σ_Y, k, m, F, G, H, L, M, N * - 18 - EPHAC - - Hill + Chaboche - - E, ν, α, σ_y, Q, b, C₁, γ₁, F, G, H, L, M, N + - Cubic elasticity + Hill + Voce + 2× AF + - E, ν, G, α, σ_Y, Q, b, C₁, D₁, C₂, D₂, F, G, H, L, M, N How It Works ------------ diff --git a/docs/simulation/fea_integration.rst b/docs/simulation/fea_integration.rst index 94081f2b9..e44912a3e 100644 --- a/docs/simulation/fea_integration.rst +++ b/docs/simulation/fea_integration.rst @@ -78,19 +78,30 @@ All simcoon constitutive models are available through the FEA bridges: ELISO (isotropic), ELIST (transversely isotropic), ELORT (orthotropic) **Plasticity:** -EPICP (isotropic hardening), EPKCP (kinematic), EPCHA (Chaboche), EPHIL (Hill), EPHAC (Hill-Chaboche) +EPICP (isotropic hardening), EPKCP (kinematic), EPCHA (Chaboche), +EPHIL/EPTRI (Hill), EPHAC (Hill-Chaboche), EPANI (anisotropic-Chaboche), +EPDFA (DFA-Chaboche), EPCHG (generic Chaboche), EPHIN (N Hill surfaces) **Viscoelasticity:** -ZENER (single branch), ZENNK (N branches), PRONK (Prony series) +ZENER (Kelvin, single branch), ZENNK (Kelvin, N branches), PRONK (Prony series) **Shape Memory Alloys:** SMAUT (unified), SMANI (anisotropic) **Damage:** -LLDM0 (Lemaitre-Chaboche) +LLDM0 (Lemaitre-Ladeveze-Dufailly) **Micromechanics:** MIHEN (Mori-Tanaka), MIMTN (multi-phase), MISCN (self-consistent), MIPLN (layered) +**Composable:** +MODUL (modular UMAT — elasticity + any combination of plasticity, +viscoelasticity and damage mechanisms; see :mod:`simcoon.modular`) + +Many legacy names are now served by the modular engine through +props-translating adapters (identical calling convention and results): see +:doc:`umat_catalog` for the complete per-name status, props layouts and +state-variable notes. + See the individual Abaqus and Ansys pages for complete property and state variable specifications. diff --git a/docs/simulation/index.rst b/docs/simulation/index.rst index 3085509ff..78ed0c207 100755 --- a/docs/simulation/index.rst +++ b/docs/simulation/index.rst @@ -6,6 +6,9 @@ Simulation :caption: Contents: solver.rst + python_solver.rst + umat_catalog.rst + umat_tutorial.rst identification.rst output.rst fea_integration.rst \ No newline at end of file diff --git a/docs/simulation/python_solver.rst b/docs/simulation/python_solver.rst new file mode 100644 index 000000000..427396755 --- /dev/null +++ b/docs/simulation/python_solver.rst @@ -0,0 +1,158 @@ +In-memory Python solver +================================ + +The ``simcoon.solver`` package drives the C++ material-point solver directly +from Python: the loading path is defined with :class:`~simcoon.solver.Block` +and :class:`~simcoon.solver.StepMeca` / :class:`~simcoon.solver.StepThermomeca` +objects, and the results come back as numpy arrays — no ``path.txt``, +``output.dat`` or result files involved. Since simcoon 2.0 this package *is* +``sim.solver``; legacy loading files are parsed into loading objects with +:func:`~simcoon.solver.from_file` (the raw pre-2.0 file-to-file runner remains +available as the low-level binding ``simcoon._core.solver``). + +Quick start +----------- + +A uniaxial tension test on an elastic isotropic material: + +.. code-block:: python + + import numpy as np + from simcoon import solver + + step = solver.StepMeca( + control=['strain'] + ['stress'] * 5, # E11 driven, lateral stress-free + value=[0.01, 0, 0, 0, 0, 0], # targets, Voigt order [11,22,33,12,13,23] + time=1.0, ninc=100, + ) + res = solver.solve(step, "ELISO", [70000., 0.3, 1.E-5], nstatev=1) + + stress = res["Stress"] # Cauchy stress history, shape (6, N) + strain = res["Strain"] # Green-Lagrange strain history, shape (6, N) + +Results follow the fedoo ``DataSet`` conventions — components first, one +column per increment — so they interoperate directly with fedoo utilities +(e.g. ``fedoo.util.voigt_tensors.StressTensorList(res["Stress"])``). +Available fields include ``Stress`` (Cauchy), ``Kirchhoff``, ``PKII``, +``Strain``, ``LogStrain``, ``F``, ``R``, ``DR`` (``(3, 3, N)``), +``TangentMatrix`` (``(6, 6, N)``), ``Statev``, ``Wm``, ``Time``, ``Temp`` and, +for thermomechanical runs, ``Q``, ``r``, ``Wt`` and the coupled tangents +``dSdE``, ``dSdT``, ``drdE``, ``drdT``. + +Loading control +--------------- + +* ``control`` sets each component to ``'strain'`` (kinematically driven) or + ``'stress'`` (statically driven); mixed control is solved by Newton-Raphson. +* ``Block(control_type=...)`` selects the strain/stress measures: + ``'small_strain'`` (default), ``'green_lagrange'`` (PKII control), + ``'logarithmic'`` (Kirchhoff control), ``'biot'``, or the fully kinematic + ``'F'`` / ``'gradU'`` (9 components of the deformation gradient). +* ``solve(corate=...)`` selects the objective rate for the finite-strain + control types: ``'jaumann'``, ``'green_naghdi'``, ``'logarithmic'`` (default), + ``'logarithmic_R'``, ``'truesdell'``, ``'logarithmic_F'``. +* ``mode='sinusoidal'`` interpolates the step sinusoidally instead of + linearly; ``mode='tabular'`` follows a user table passed in memory: + +.. code-block:: python + + t = np.linspace(0.01, 1.0, 100) + e11 = 0.015 * np.sin(np.pi * t) + step = solver.StepMeca(control=['strain'] + ['zero'] * 5, + mode='tabular', + tabular=np.column_stack([t, e11])) + +* Cyclic loading repeats the steps of a block: ``Block(steps=[...], ncycle=10)``. + Tabular steps cannot be cycled (their time column is absolute); unroll the + cycles into explicit steps instead. +* A rotation rate can be superimposed on the mixed finite-strain control + types through ``StepMeca(BC_w=...)`` (3x3 spin matrix). + +Thermomechanical loading +------------------------ + +:class:`~simcoon.solver.StepThermomeca` activates the coupled heat equation +(block type 2, small strain), with ``thermal_control`` set to +``'temperature'`` (ramp to ``T_final``), ``'heat_flux'`` (prescribed ``Q``) or +``'convection'`` (0D convection with coefficient ``q_conv``): + +.. code-block:: python + + step = solver.StepThermomeca(control=['stress'] * 6, value=[0.] * 6, + T_final=340., ninc=50) + # ELISO thermomechanical props: rho, c_p, E, nu, alpha + res = solver.solve(step, "ELISO", [1.E-9, 1., 70000., 0.3, 1.E-5], nstatev=1) + +Mechanical steps (:class:`~simcoon.solver.StepMeca`) also accept ``T_final``: +the temperature then ramps as an imposed condition of the mechanical problem +(thermal expansion without the heat equation). + +Tabular thermomechanical steps support the three thermal controls: with +``thermal_control='temperature'`` the table carries a T column when +``tabular_T=True`` (constant temperature otherwise); with ``'heat_flux'`` the +thermal column is the prescribed flux Q; with ``'convection'`` there is no +thermal column and ``q_conv`` applies. + +For finite-element couplers, the point-wise thermomechanical UMAT batch entry +``sim.umat_T(...)`` complements ``sim.umat(...)``; it returns +``(sigma, statev, Wm, Wt, r, dSdE, dSdT, drdE, drdT)``. + +Legacy file formats +------------------- + +Existing ``path.txt`` / ``material.dat`` inputs are parsed into loading +objects — same solve, one entry point: + +.. code-block:: python + + blocks, T_init = solver.from_file("data", "path.txt") + material = solver.material_from_file("data", "material.dat") + res = solver.solve(blocks, T_init=T_init, **material) + +JSON configuration +------------------ + +Materials and loading paths round-trip through JSON +(:func:`~simcoon.solver.save_material_json`, +:func:`~simcoon.solver.save_path_json`, +:func:`~simcoon.solver.load_simulation_json`): + +.. code-block:: python + + solver.save_material_json("material.json", "ELISO", [70000., 0.3, 1.E-5], 1) + solver.save_path_json("path.json", [solver.Block(steps=[step])], T_init=293.15) + res = solver.solve(**solver.load_simulation_json("material.json", "path.json")) + +Results can be persisted with ``res.save("run.npz")`` / +``SolverResults.load("run.npz")``, or flattened with ``res.to_dataframe()``. + +Solver parameters +----------------- + +``solve()`` exposes the numeric controls of the adaptive Newton loop as +keyword arguments: ``precision`` (default 1e-6), ``maxiter``/``miniter``, +``div_tnew_dt``/``mul_tnew_dt`` (time-step cut/growth factors), ``inforce``, +``lambda_solver`` (penalty stiffness of strain-driven components), plus +``tangent_mode`` (``'none'``, ``'continuum'``, ``'algorithmic'`` — default) +and ``solver_type``. + +API reference +------------- + +.. autoclass:: simcoon.solver.StepMeca + :members: + +.. autoclass:: simcoon.solver.StepThermomeca + :members: + +.. autoclass:: simcoon.solver.Block + :members: + +.. autofunction:: simcoon.solver.solve + +.. autofunction:: simcoon.solver.from_file + +.. autofunction:: simcoon.solver.material_from_file + +.. autoclass:: simcoon.solver.SolverResults + :members: diff --git a/docs/simulation/solver.rst b/docs/simulation/solver.rst index 4f3ce0dbb..b5d7d1bd2 100755 --- a/docs/simulation/solver.rst +++ b/docs/simulation/solver.rst @@ -1,7 +1,7 @@ Use the solver ================================ -The Simcoon solver allows you to simulate the mechanical or thermomechanical response of materials under various loading conditions. This documentation covers the Python interface, solver parameters, and the structure of input files. +The Simcoon solver allows you to simulate the mechanical or thermomechanical response of materials under various loading conditions. This page documents the legacy file-driven workflow (``path.txt`` / ``material.dat`` in, result text files out) through the low-level binding ``sim._core.solver``. Since simcoon 2.0 the recommended interface is the in-memory API (see :doc:`python_solver`); legacy files parse into loading objects with ``sim.solver.from_file``. Elastic tensile test -------------------- @@ -86,7 +86,7 @@ Finally, call the solver function: .. code-block:: python - sim.solver( + sim._core.solver( umat_name, props, nstatev, @@ -151,6 +151,51 @@ The solver function takes the following parameters: * - outputfile - string - Name of the output result file + * - tangent_mode + - int + - Tangent-operator mode (optional keyword, default 2): see below + +Tangent-operator modes +^^^^^^^^^^^^^^^^^^^^^^ + +The ``tangent_mode`` keyword selects the tangent operator returned by the +constitutive models (also exposed as named constants: +``sim.tangent_none``, ``sim.tangent_continuum``, ``sim.tangent_algorithmic``, +``sim.tangent_closest_point``): + +.. list-table:: + :header-rows: 1 + :widths: 10 25 65 + + * - Value + - Name + - Description + * - 0 + - none + - No tangent assembly — ``Lt`` stays the elastic operator (explicit + integration schemes) + * - 1 + - continuum + - Continuum elasto-(visco)plastic operator (this was mode 0 before the + 2.0 renumbering) + * - 2 + - algorithmic + - Simo–Hughes consistent (algorithmic) operator — **default**; exact + Jacobian of the discrete return map for J2-type flows, Q-quadratic + global convergence (this was mode 1 before the 2.0 renumbering) + * - 3 + - closest-point + - Reserved for the closest-point-projection exact operator (future + release); currently raises an error + +.. note:: + **2.0 renumbering.** Pre-2.0, ``tangent_mode 0`` meant *continuum* and + ``1`` meant *algorithmic*; there was no "none" mode. The converged + response is identical in every mode (the tangent steers the global + Newton iteration, not the residual) — only iteration counts and run + time change. Scripts passing explicit values should shift them by +1; + scripts relying on the default silently upgrade from continuum to the + (faster) algorithmic operator. Corotational spin rate types ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/docs/simulation/umat_catalog.rst b/docs/simulation/umat_catalog.rst new file mode 100644 index 000000000..c6b570af4 --- /dev/null +++ b/docs/simulation/umat_catalog.rst @@ -0,0 +1,192 @@ +==================================== +Constitutive model (UMAT) catalog +==================================== + +Every constitutive law is selected by its 5-character ``umat_name``. Since the +modular UMAT framework, three kinds of implementation coexist behind those +names — **the calling convention is identical for all of them** (same +``umat_name``, same props, same solver/FEA usage): + +- **modular (native)**: the composable ``MODUL`` engine, configured from a + props stream (see :mod:`simcoon.modular` for the Python builder). +- **modular (adapter)**: a legacy name whose dedicated kernel was removed + after its equivalence with a ``MODUL`` configuration was proven + (bit-identical results, dedicated tests in ``test_modular.py``); a + translator maps the legacy props to the modular configuration at each call. +- **legacy (kept)**: a dedicated, self-contained implementation kept either + for pedagogy (readable single-file reference of the CCP return mapping) or + because no modular equivalent exists. + +Small-strain mechanical models +============================== + +.. list-table:: + :header-rows: 1 + :widths: 8 26 12 40 14 + + * - Name + - Physics + - Engine + - Props (in order) + - Notes + * - ELISO + - Isotropic elasticity + - modular (adapter) + - E, nu, alpha + - + * - ELIST + - Transversely isotropic elasticity + - modular (adapter) + - axis, EL, ET, nuTL, nuTT, GLT, alpha_L, alpha_T + - + * - ELORT + - Orthotropic elasticity + - modular (adapter) + - E1, E2, E3, nu12, nu13, nu23, G12, G13, G23, alpha1, alpha2, alpha3 + - + * - EPICP + - Von Mises + power-law isotropic hardening + - legacy (kept) + - E, nu, alpha, sigmaY, k, m + - Pedagogical reference of the CCP return mapping + * - EPKCP + - Von Mises + power-law isotropic + Prager kinematic + - modular (adapter) + - E, nu, alpha, sigmaY, k, m, kX + - Legacy Prager writes X = kX·a; the modular twin uses X = (2/3)C·a, + i.e. C = 1.5·kX (handled by the adapter) + * - EPCHA + - Von Mises + Voce + 2x Armstrong-Frederick + - legacy (kept) + - E, nu, alpha, sigmaY, Q, b, C1, D1, C2, D2 + - Pedagogical reference of kinematic hardening in CCP + * - EPHIL / EPTRI + - Hill yield + power-law isotropic hardening + - modular (adapter) + - E, nu, alpha, sigmaY, k, m, F, G, H, L, M, N + - Bit-identical to the modular twin (machine precision) + * - EPHAC + - Cubic elasticity + Hill + Voce + 2x AF + - modular (adapter) + - E, nu, G, alpha, sigmaY, Q, b, C1, D1, C2, D2, F, G, H, L, M, N + - statev columns beyond the modular layout are unused (see below) + * - EPANI + - Cubic elasticity + 9-parameter anisotropic yield + Voce + 2x AF + - modular (adapter) + - E, nu, G, alpha, sigmaY, Q, b, C1, D1, C2, D2, P11, P22, P33, P12, + P13, P23, P44, P55, P66 + - P must be an admissible (convex) quadratic form: symmetric with zero + row sums on the normal block; an indefinite P yields sqrt(<0) = NaN + * - EPDFA + - Cubic elasticity + Deshpande-Fleck-Ashby yield + Voce + 2x AF + - modular (adapter) + - E, nu, G, alpha, sigmaY, Q, b, C1, D1, C2, D2, F, G, H, L, M, N, K + - + * - EPCHG + - Cubic elasticity + selectable yield + N-term "Voce" + N-term Chaboche + - modular (adapter) + - E, nu, G, alpha, sigmaY, N_iso, N_kin, criteria(0=Mises, 1=Hill, + 2=DFA, 3=anisotropic), (Q_i, b_i) x N_iso, (C_i, D_i) x N_kin, + criterion parameters + - The legacy N-term isotropic hardening couples all terms through a + single Hp (dHp/dp = sum b_i (Q_i - Hp)): mathematically ONE effective + Voce with b_eff = sum(b_i), Q_eff = sum(b_i Q_i)/sum(b_i) — not the + standard combined-Voce sum. The adapter maps accordingly. + * - EPHIN + - N Hill yield surfaces, each with power-law isotropic hardening + - modular (adapter) + - E, nu, alpha, N, then per surface: sigmaY, k, m, F, G, H, L, M, N + - The removed legacy kernel was defective for N >= 2 (NaN even for + identical or inactive second surfaces); the modular engine handles + multiple surfaces correctly, so N >= 2 is now functional. + * - ZENER + - Generalized KELVIN chain, 1 branch (standard solid) + - legacy (kept) + - E0, nu0, alpha, E1, nu1, etaB1, etaS1 + - No modular equivalent (Kelvin branches in series; the modular + viscoelasticity is a generalized Maxwell/Prony model) + * - ZENNK + - Generalized KELVIN chain, N branches + - legacy (kept) + - E0, nu0, alpha, N, then per branch: E_i, nu_i, etaB_i, etaS_i + - Same rheology note as ZENER — NOT equivalent to PRONK despite the + identical props layout (measured 86% response difference) + * - PRONK + - Generalized Maxwell (Prony series), N branches + - legacy (kept) + - E0, nu0, alpha, N, then per branch: E_i, nu_i, etaB_i, etaS_i + - Pedagogical reference; the modular Viscoelasticity mechanism is its + proven twin (< 0.1%) + * - LLDM0 + - Ductile damage (Lemaitre-Ladeveze-Dufailly) + - legacy (kept) + - see header + - Modular equivalence not yet established (audit pending) + * - MODUL + - Composable modular UMAT (elasticity + N mechanisms) + - modular (native) + - self-describing stream — build it with + :class:`simcoon.modular.ModularMaterial` + - Also available under finite strain (NLGEOM control types 2-6), where + the composition is a Hencky hyperelastic law on the logarithmic + strain; requires ``corate_type = 3`` (log_R) — any other corate is + rejected with a ``RuntimeError`` (hyper/hypo consistency) + +Shape memory alloys, finite strain, multiscale, plugins +======================================================== + +Unchanged dedicated implementations (out of the modular scope): + +- **SMA**: SMAUT/SMANI/SMADI/SMADC/SMAAI/SMAAC (unified), SMRDI/SMRDC/SMRAI/ + SMRAC (unified with reorientation), SMAMO/SMAMC (monocrystal). +- **Finite strain**: HYPOO (hypoelastic orthotropic), SNTVE (Saint-Venant), + NEOHI/NEOHC (Neo-Hookean), MOORI, YEOHH, ISHAH, GETHH, SWANH + (invariant-based hyperelasticity). +- **Multiscale**: MIHEN, MIMTN, MISCN, MIPLN. +- **Plugins**: UMEXT (external dylib), UMABA (Abaqus wrapper). + +State variable (statev) layout for adapter-served names +======================================================== + +The modular engine claims the FIRST ``required_nstatev`` slots of the caller's +statev array — always within the legacy allocation, so array sizes never +change. For ELISO/ELIST/ELORT (``T_init``) and EPHIL/EPTRI +(``T_init, p, EP(6)``) the column meaning is identical to the removed kernels. +For the Chaboche-family names and EPKCP the columns re-mean: the layout is +``T_init | p, EP(6) | back-strains a_i(6) ...`` in mechanism registration +order; trailing legacy slots are left untouched. Code that read specific +legacy statev columns (e.g. the stored X_i of EPHAC) must be updated to the +modular layout. + +Tangent-operator mode +===================== + +All models receive the solver's ``tangent_mode`` (named constants in +``parameter.hpp`` / ``sim.tangent_*``): 0 = none (Lt = elastic L, explicit +integration), 1 = continuum, 2 = algorithmic/Simo-Hughes (**default**), +3 = closest-point (reserved). Pre-2.0 numbering was 0 = continuum, +1 = algorithmic — see :doc:`solver` for the migration note. The +finite-strain hyperelastic models ignore the mode (their tangent is always +the exact one of the hyperelastic law). + +Validation and performance +========================== + +Each adapter-served name is validated at two levels: + +- **Translator correctness**: a pytest equivalence test + (``simcoon-python-builder/test/test_core/test_modular.py``, the + ``*_matches_modul`` family) proves the legacy name and the explicit + ``MODUL`` configuration are bit-identical through the solver. +- **Independent physics**: the removed legacy kernels are retained VERBATIM + as test-only reference oracles under + ``test/Libraries/Umat/reference_kernels/`` (compiled only into the + ``Treference_umats`` gtest, never into ``libsimcoon``, not dispatchable by + name). Every adapter is driven side by side with its reference kernel on a + cyclic strain path each test run — machine precision for the + elastic/power-law families, < 2e-3 for the Voce/Chaboche family (legacy + incremental vs modular closed-form Voce integration). + +A benchmark row per family lives in ``bench/bench_legacy_vs_modular.py``: +results show no measurable adapter overhead, and the modular +engine runs at 0.8-1.2x the speed of the removed kernels on all families. diff --git a/docs/simulation/umat_tutorial.rst b/docs/simulation/umat_tutorial.rst new file mode 100644 index 000000000..78ac61f39 --- /dev/null +++ b/docs/simulation/umat_tutorial.rst @@ -0,0 +1,161 @@ +===================================== +Hands-on: writing a UMAT with simcoon +===================================== + +This tutorial builds a complete constitutive subroutine (UMAT) from scratch: +**J2 plasticity with linear isotropic hardening**, written with the typed +:doc:`Tensor2/Tensor4 API <../continuum_mechanics/functions/doc_tensor>` so +the code reads like the equations. The model is chosen because *everything* +has a closed form — the return mapping needs no local iteration and the +continuum tangent can be derived by hand, so every line of the implementation +can be checked analytically. + +The complete companion code lives in ``examples/umat_tutorial/`` +(``umat_tutorial_J2.hpp/.cpp``) and is **continuously validated** by the +``Ttutorial_umat`` test against the in-tree EPICP reference, the shared +tangent assembly, and a finite-difference Jacobian. + +The model +========= + +Additive small-strain decomposition, linear isotropic elasticity, von Mises +yield with a linear hardening law: + +.. math:: + + \boldsymbol{\sigma} = \mathbf{L} : (\boldsymbol{\varepsilon} + - \boldsymbol{\varepsilon}^{th} - \boldsymbol{\varepsilon}^p), + \qquad + f = \sigma_{eq} - (\sigma_Y + H\,p) \le 0, + \qquad + \sigma_{eq} = \sqrt{\tfrac{3}{2}\,\mathbf{s}:\mathbf{s}}, + +with associated flow +:math:`\dot{\boldsymbol{\varepsilon}}^p = \dot{p}\,\boldsymbol{\Lambda}`, +:math:`\boldsymbol{\Lambda} = \tfrac{3}{2}\,\mathbf{s}/\sigma_{eq}`. + +Props (5): ``E, nu, alpha, sigma_Y, H``. State (8): ``T_init, p, EP(6)`` — +deliberately the EPICP layout, so the two are directly comparable (EPICP with +``m = 1`` and ``k = H`` is the same model). + +Step 1 — anatomy of a UMAT +========================== + +Every simcoon UMAT has the same signature (see any kernel or the tutorial +header): strain state in (``Etot``, ``DEtot``, Voigt order +``[11, 22, 33, 12, 13, 23]``, MPa), stress and tangent out (``sigma``, +``Lt``), material properties (``props``), persistent state (``statev``), +the rotation increment ``DR`` for objectivity, cumulative work outputs +(``Wm, Wm_r, Wm_ir, Wm_d``) and the ``tangent_mode`` selector. + +Three contract points that every UMAT must honor: + +1. **start**: on the first increment, initialize the state and RESET the + cumulative work accumulators. +2. **objectivity**: stored tensorial state co-rotates with ``DR``. With the + typed API this is one line — ``EP.rotate(...)`` picks the strain rotation + kernel (factor-2 shear convention) from the tensor's own type. +3. **cumulative work**: ``Wm += increment`` — the solver reports path + integrals, never overwrite them. + +Step 2 — trial state, typed +=========================== + +.. literalinclude:: ../../examples/umat_tutorial/umat_tutorial_J2.cpp + :language: cpp + :start-at: // ------------------------------------------------------------------ 4. + :end-before: // ------------------------------------------------------------------ 5. + +Because ``L_el`` is a *stiffness-typed* ``tensor4`` and the operand is a +*strain-typed* ``tensor2``, the contraction produces a *stress-typed* result +— the shear-convention bookkeeping (engineering factor 2) is carried by the +types, not by the programmer. + +Step 3 — radial return, closed form +=================================== + +The trial direction is preserved by the return (the correction is radial in +deviatoric space), and with linear hardening the consistency condition is +linear in :math:`\Delta p`: + +.. math:: + + f(\Delta p) = f^{trial} - (3\mu + H)\,\Delta p = 0 + \quad\Longrightarrow\quad + \Delta p = \frac{f^{trial}}{3\mu + H}. + +.. literalinclude:: ../../examples/umat_tutorial/umat_tutorial_J2.cpp + :language: cpp + :start-at: if (f_trial > 0.) { + :end-at: sigma = sig.to_arma_voigt(); + +Step 4 — the continuum tangent, derived and built +================================================= + +Differentiating the converged stress w.r.t. the total strain with the flow +direction frozen gives the classical rank-one update + +.. math:: + + \mathbf{L}_t = \mathbf{L} + - \frac{(\mathbf{L}:\boldsymbol{\Lambda}) \otimes (\mathbf{L}:\boldsymbol{\Lambda})} + {\boldsymbol{\Lambda}:\mathbf{L}:\boldsymbol{\Lambda} + H}. + +For isotropic :math:`\mathbf{L}` and the deviatoric von Mises direction the +pieces are analytic — :math:`\mathbf{L}:\boldsymbol{\Lambda} = +2\mu\boldsymbol{\Lambda}` and :math:`\boldsymbol{\Lambda}:\mathbf{L}: +\boldsymbol{\Lambda} = 3\mu` — hence the closed form + +.. math:: + + \mathbf{L}_t = \mathbf{L} - \frac{4\mu^2}{3\mu + H}\, + \boldsymbol{\Lambda}\otimes\boldsymbol{\Lambda}. + +.. literalinclude:: ../../examples/umat_tutorial/umat_tutorial_J2.cpp + :language: cpp + :start-at: if (Dp <= simcoon::iota || tangent_mode == tangent_none) { + :end-before: // ------------------------------------------------------------------ 8. + +.. warning:: + **The classic Voigt trap.** The closed form above holds for the + *tensorial* :math:`\boldsymbol{\Lambda}`. In Voigt components the outer + product must be taken with the **stress-Voigt** normal (shear *not* + doubled): :math:`\boldsymbol{\kappa} = \mathbf{L}:\boldsymbol{\Lambda}` + lands in stress Voigt automatically, but ``eta_stress()`` returns the + *engineering* (doubled-shear) normal — using it directly in + :math:`\boldsymbol{\Lambda}\boldsymbol{\Lambda}^T` overweights the shear + block of the correction by up to a factor 4. The typed ``auto_dyadic`` + route sidesteps the trap (the type carries the convention); note also + that ``sym_dyadic`` is the :math:`(ik)(jl)`-symmetrized product — a + *different* operator from the plain dyadic needed here. + +For the **algorithmic** (Simo–Hughes) operator the tutorial does what the +production kernels do — hand the physical inputs to the shared dispatch +``compute_tangent_operator`` with a lazy flow-Hessian provider; for J2 the +resulting operator is the exact Jacobian of the discrete radial-return map. + +Step 5 — validation +=================== + +``test/Libraries/Umat/Ttutorial_umat.cpp`` asserts, on every test run: + +1. **Physics**: the tutorial matches the EPICP reference to the CCP + tolerance (< 1e-8 relative) over a cyclic tension/shear path. +2. **Tangent**: the hand-built continuum operator equals both the + independent closed form (with the stress-Voigt normal!) and + ``assemble_continuum_tangent`` to machine precision. +3. **Consistency**: the algorithmic operator equals the central + finite-difference Jacobian of the discrete stress update (< 1e-5). + +Where to go next +================ + +- Swap the yield criterion: replace ``flow_normal`` by a Hill or DFA + gradient (``criteria.hpp``) — the *generic* :math:`\kappa`-form of the + tangent in the code keeps working; only the closed-form shortcut is + J2-specific. +- Add kinematic hardening: shift the criterion to + :math:`\boldsymbol{\sigma} - \mathbf{X}` and consult the kept EPCHA kernel + for the classic Armstrong–Frederick treatment. +- Or skip hand-written kernels entirely: the same model is one line of + :class:`simcoon.modular.ModularMaterial` — see :doc:`umat_catalog`. diff --git a/examples/analysis/convergence_study.py b/examples/analysis/convergence_study.py index 2ecc56dba..57cbf884c 100644 --- a/examples/analysis/convergence_study.py +++ b/examples/analysis/convergence_study.py @@ -57,7 +57,7 @@ for inc in increments: pathfile = f"EPICP_path_{inc}.txt" outputfile = f"results_conv_{inc}.txt" - sim.solver( + sim._core.solver( umat_name, props, nstatev, diff --git a/examples/analysis/objective_rates.py b/examples/analysis/objective_rates.py index f4c6a1338..91138efc2 100644 --- a/examples/analysis/objective_rates.py +++ b/examples/analysis/objective_rates.py @@ -82,7 +82,7 @@ for i, rate_name in enumerate(rate): corate_type = i outputfile = f"results_ELISO_{i}.txt" - sim.solver( + sim._core.solver( umat_name, props, nstatev, diff --git a/examples/data/MODUL_finite_path.txt b/examples/data/MODUL_finite_path.txt new file mode 100644 index 000000000..82c5f24fb --- /dev/null +++ b/examples/data/MODUL_finite_path.txt @@ -0,0 +1,69 @@ +#Initial_temperature +293 +#Number_of_blocks +1 + +#Block +1 +#Loading_type +1 +#Control_type(NLGEOM) +3 +#Repeat +1 +#Steps +3 + +#Mode +1 +#Dn_init 1. +#Dn_mini 0.001 +#Dn_inc 0.01 +#time +1 +#prescribed_mechanical_state +E 0.15 +S 0 S 0 +S 0 S 0 S 0 +#spin +0. 0. 0. +0. 0. 0. +0. 0. 0. +#prescribed_temperature_state +T 293 + +#Mode +1 +#Dn_init 1. +#Dn_mini 0.001 +#Dn_inc 0.01 +#time +1 +#prescribed_mechanical_state +E -0.15 +S 0 S 0 +S 0 S 0 S 0 +#spin +0. 0. 0. +0. 0. 0. +0. 0. 0. +#prescribed_temperature_state +T 293 + +#Mode +1 +#Dn_init 1. +#Dn_mini 0.001 +#Dn_inc 0.01 +#time +1 +#prescribed_mechanical_state +E 0. +S 0 S 0 +S 0 S 0 S 0 +#spin +0. 0. 0. +0. 0. 0. +0. 0. 0. +#prescribed_temperature_state +T 293 diff --git a/examples/hyperelasticity/HYPER_umat.py b/examples/hyperelasticity/HYPER_umat.py index db87297cc..b5f8360bf 100644 --- a/examples/hyperelasticity/HYPER_umat.py +++ b/examples/hyperelasticity/HYPER_umat.py @@ -337,7 +337,7 @@ class loading_case(NamedTuple): outputfile = f"results_{umat.name}.txt" # Run simulation - sim.solver( + sim._core.solver( umat.name, params, nstatev, @@ -453,7 +453,7 @@ class loading_case(NamedTuple): outputfile = f"results_{umat.name}.txt" # Run simulation - sim.solver( + sim._core.solver( umat.name, params, nstatev, @@ -569,7 +569,7 @@ class loading_case(NamedTuple): outputfile = f"results_{umat.name}.txt" # Run simulation - sim.solver( + sim._core.solver( umat.name, params, nstatev, diff --git a/examples/hyperelasticity/hyperelastic_umat_identification.py b/examples/hyperelasticity/hyperelastic_umat_identification.py index 103af1e95..c190efa50 100644 --- a/examples/hyperelasticity/hyperelastic_umat_identification.py +++ b/examples/hyperelasticity/hyperelastic_umat_identification.py @@ -112,7 +112,7 @@ def build_props(x): def run_case(props, pathfile, outputfile, path_data, path_results): """Run one solver call and return its ``(lambda, P_11)`` trajectory.""" - sim.solver( + sim._core.solver( UMAT_NAME, props, NSTATEV, 0.0, 0.0, 0.0, # psi, theta, phi (no RVE rotation) SOLVER_TYPE, CORATE_TYPE, diff --git a/examples/identification/chaboche_cyclic_identification.py b/examples/identification/chaboche_cyclic_identification.py index 48d6a6e42..c472b655e 100644 --- a/examples/identification/chaboche_cyclic_identification.py +++ b/examples/identification/chaboche_cyclic_identification.py @@ -95,7 +95,7 @@ def build_props(x): def run_one_test(props, pathfile, outputfile, path_data, path_results): """Run one solver call and return the predicted σ11 trajectory.""" - sim.solver( + sim._core.solver( UMAT_NAME, props, NSTATEV, 0.0, 0.0, 0.0, # psi, theta, phi SOLVER_TYPE, CORATE_TYPE, diff --git a/examples/mechanical/ELISO.py b/examples/mechanical/ELISO.py index 02afb0ce7..9820a2535 100644 --- a/examples/mechanical/ELISO.py +++ b/examples/mechanical/ELISO.py @@ -111,7 +111,7 @@ pathfile = "ELISO_path.txt" outputfile = "results_ELISO.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/ELIST.py b/examples/mechanical/ELIST.py index 2eafa91a7..ff5870262 100644 --- a/examples/mechanical/ELIST.py +++ b/examples/mechanical/ELIST.py @@ -74,7 +74,7 @@ pathfile = "ELIST_path.txt" outputfile = "results_ELIST.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/ELORT.py b/examples/mechanical/ELORT.py index 7d186089e..448ad1952 100644 --- a/examples/mechanical/ELORT.py +++ b/examples/mechanical/ELORT.py @@ -81,7 +81,7 @@ pathfile = "ELORT_path.txt" outputfile = "results_ELORT.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/EPCHA.py b/examples/mechanical/EPCHA.py index 3f351947f..c903fd292 100644 --- a/examples/mechanical/EPCHA.py +++ b/examples/mechanical/EPCHA.py @@ -69,7 +69,7 @@ pathfile = "EPCHA_path.txt" outputfile = "results_EPCHA.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/EPICP.py b/examples/mechanical/EPICP.py index 3d478e3ce..2a06cebb3 100644 --- a/examples/mechanical/EPICP.py +++ b/examples/mechanical/EPICP.py @@ -74,7 +74,7 @@ # Run the simulation pathfile = "EPICP_path.txt" outputfile = "results_EPICP.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, @@ -147,7 +147,7 @@ for inc in increments: pathfile = f"EPICP_path_{inc}.txt" outputfile = f"results_EPICP_{inc}.txt" - sim.solver( + sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/EPKCP.py b/examples/mechanical/EPKCP.py index 948f2bf93..52db61bdd 100644 --- a/examples/mechanical/EPKCP.py +++ b/examples/mechanical/EPKCP.py @@ -62,7 +62,7 @@ pathfile = "EPKCP_path.txt" outputfile = "results_EPKCP.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/MODUL.py b/examples/mechanical/MODUL.py index e59007b02..4c372e29d 100644 --- a/examples/mechanical/MODUL.py +++ b/examples/mechanical/MODUL.py @@ -71,7 +71,7 @@ os.makedirs(path_results, exist_ok=True) -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/MODUL_finite.py b/examples/mechanical/MODUL_finite.py new file mode 100644 index 000000000..1350fdb66 --- /dev/null +++ b/examples/mechanical/MODUL_finite.py @@ -0,0 +1,130 @@ +""" +Modular UMAT under Finite Strain — Hencky Hyperelasto-Plasticity +================================================================= + +Runs the same composable ``"MODUL"`` material as ``MODUL.py``, but under +finite strain (NLGEOM): control type 3 drives the logarithmic strain / +Kirchhoff stress conjugate pair, and the solver kinematics hand the model the +log strain of the actual deformation gradient. The elasticity block then acts +as a Hencky stored-energy function of ln V and the plasticity mechanism rides +additively on that measure — a genuine hyperelasto-plastic model. + +This holds only when the accumulated corotational strain is exactly ln V, +which is the log_R corate: ``corate_type = 3`` is REQUIRED for MODUL under +NLGEOM and any other corate raises a ``RuntimeError`` (a Jaumann- or +Green-Naghdi-integrated model would be hypoelastic and dissipate spuriously +in closed cycles). + +The path file drives a log-strain cycle +15% / -15% / 0 — genuinely finite +stretches (lambda from 0.86 to 1.16) — exposing the elasto-plastic +hysteresis loop in the (ln V, tau) work-conjugate plane. +""" + +import os +import numpy as np +import matplotlib.pyplot as plt +import simcoon as sim +from simcoon.modular import ( + ModularMaterial, + IsotropicElasticity, + Plasticity, + VonMisesYield, + VoceHardening, +) + +plt.rcParams["figure.figsize"] = (14, 6) + +################################################################################### +# 1. Compose the constitutive model +# ---------------------------------- +# Same composition as MODUL.py: isotropic elasticity ("Enu": C1 = E, C2 = nu) +# + von Mises yield + Voce isotropic hardening. + +mat = ModularMaterial( + elasticity=IsotropicElasticity( + C1=210000.0, C2=0.3, alpha=1.2e-5, convention="Enu" + ), + mechanisms=[ + Plasticity( + sigma_Y=300.0, + yield_criterion=VonMisesYield(), + isotropic_hardening=VoceHardening(Q=200.0, b=10.0), + ), + ], +) + +print(mat.summary()) + +################################################################################### +# 2. Run the solver under NLGEOM +# ------------------------------- +# The path file sets Control_type(NLGEOM) = 3 (log strain / Kirchhoff stress). +# corate_type = 3 (log_R) is mandatory for MODUL under finite strain. + +corate_type = 3 # log_R — the only hyper/hypo-consistent corate for MODUL + +os.makedirs("results", exist_ok=True) + +sim._core.solver( + mat.umat_name, + mat.props, + mat.nstatev, + 0.0, # psi_rve + 0.0, # theta_rve + 0.0, # phi_rve + 0, # solver_type + corate_type, + "../data", + "results", + "MODUL_finite_path.txt", + "results_MODUL_finite.txt", +) + +################################################################################### +# 3. Plot the response +# --------------------- +# The default output (no output.dat) reports Green-Lagrange strain and Cauchy +# stress. This path is rotation-free with fixed principal axes, so the +# conversion to the work-conjugate (ln V, Kirchhoff) pair of the model is +# exact: per normal component lambda_i^2 = 1 + 2 E_ii, (ln V)_ii = +# ln(lambda_i), and tau = J * sigma with J = lambda_1 lambda_2 lambda_3. + +outputfile_macro = os.path.join("results", "results_MODUL_finite_global-0.txt") + +time, e11_GL, e22_GL, e33_GL, s11_cauchy, Wm, Wm_r, Wm_d = np.loadtxt( + outputfile_macro, usecols=(4, 8, 9, 10, 14, 20, 21, 23), unpack=True +) + +e11 = 0.5 * np.log(1.0 + 2.0 * e11_GL) # log strain (ln V)_11 +J = np.sqrt((1 + 2 * e11_GL) * (1 + 2 * e22_GL) * (1 + 2 * e33_GL)) +s11 = J * s11_cauchy # Kirchhoff stress tau_11 + +fig = plt.figure() + +ax1 = fig.add_subplot(1, 2, 1) +plt.grid(True) +plt.tick_params(axis="both", which="major", labelsize=13) +plt.xlabel(r"Log strain $(\ln \mathbf{V})_{11}$", size=14) +plt.ylabel(r"Kirchhoff stress $\tau_{11}$ (MPa)", size=14) +plt.plot(e11, s11, c="royalblue", lw=1.5, + label="MODUL, NLGEOM ct3, corate log_R") +plt.axhline(y=300.0, color="0.6", linestyle="--", lw=0.8, + label=r"initial $\sigma_Y$") +plt.axhline(y=-300.0, color="0.6", linestyle="--", lw=0.8) +plt.legend(loc="best") +plt.title("Finite-strain hysteresis loop") + +ax2 = fig.add_subplot(1, 2, 2) +plt.grid(True) +plt.tick_params(axis="both", which="major", labelsize=13) +plt.xlabel("time (s)", size=14) +plt.ylabel("Work (MPa)", size=14) +plt.plot(time, Wm, c="black", label=r"$W_m$ (total)") +plt.plot(time, Wm_r, c="green", label=r"$W_m^r$ (recoverable)") +plt.plot(time, Wm_d, c="red", label=r"$W_m^d$ (dissipated)") +plt.legend(loc="best") +plt.title("Energy decomposition") + +plt.tight_layout() +plt.savefig("MODUL_finite_stress_strain.png", dpi=120) +plt.show() diff --git a/examples/mechanical/PRONY_N.py b/examples/mechanical/PRONY_N.py index b62ec6bbe..f5adef9a4 100644 --- a/examples/mechanical/PRONY_N.py +++ b/examples/mechanical/PRONY_N.py @@ -71,7 +71,7 @@ pathfile = "PRONK_path.txt" outputfile = "results_PRONK.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/SMA_TR.py b/examples/mechanical/SMA_TR.py index aa2f6dcda..7f35b1d71 100644 --- a/examples/mechanical/SMA_TR.py +++ b/examples/mechanical/SMA_TR.py @@ -104,7 +104,7 @@ pathfile = "SMAUT_path.txt" outputfile = "results_SMAUT.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/ZENER.py b/examples/mechanical/ZENER.py index d579128de..00f0fd20f 100644 --- a/examples/mechanical/ZENER.py +++ b/examples/mechanical/ZENER.py @@ -54,7 +54,7 @@ pathfile = "ZENER_path.txt" outputfile = "results_ZENER.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/mechanical/ZENER_N.py b/examples/mechanical/ZENER_N.py index 3f858a0cd..158ba97b1 100644 --- a/examples/mechanical/ZENER_N.py +++ b/examples/mechanical/ZENER_N.py @@ -64,7 +64,7 @@ pathfile = "ZENNK_path.txt" outputfile = "results_ZENNK.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/solver/python_solver.py b/examples/solver/python_solver.py new file mode 100644 index 000000000..b64ee726c --- /dev/null +++ b/examples/solver/python_solver.py @@ -0,0 +1,82 @@ +""" +In-memory Python solver +======================= + +Drive the simcoon material-point solver directly from Python: loading blocks +are built as objects, results come back as numpy arrays (fedoo-style layout), +and no path.txt / result files are involved. + +Two demonstrations: + +1. cyclic elastoplasticity (EPICP), stress-controlled; +2. superelastic SMA cycled under adiabatic conditions (coupled + thermomechanical block): the transformation latent heat self-heats the + material, which hardens the stress plateau. +""" + +import matplotlib.pyplot as plt +import numpy as np + +from simcoon import solver + +############################################################################### +# Cyclic elastoplasticity (mechanical block) +# ------------------------------------------ + +props_epicp = np.array([70000.0, 0.3, 1.0e-5, 300.0, 1000.0, 0.3]) +load = solver.StepMeca(control="stress", value=[450.0, 0, 0, 0, 0, 0], ninc=100) +unload = solver.StepMeca(control="stress", value=[0.0, 0, 0, 0, 0, 0], ninc=100) + +res = solver.solve( + solver.Block(steps=[load, unload], ncycle=3), + "EPICP", props_epicp, nstatev=8, +) + +fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(11, 4)) +ax1.plot(100 * res["Strain"][0], res["Stress"][0], "-") +ax1.set_xlabel("strain $E_{11}$ (%)") +ax1.set_ylabel("stress $\\sigma_{11}$ (MPa)") +ax1.set_title("EPICP, 3 stress cycles") + +############################################################################### +# Adiabatic superelastic SMA (thermomechanical block) +# --------------------------------------------------- +# Same material as examples/thermomechanical/SMA_T.py. The heat-flux control +# with Q = 0 makes the loading adiabatic: the exothermic forward +# transformation heats the sample, the reverse transformation cools it. + +props_sma = np.array([ + 5.5, 0.5, 0.5, 0, # rho, c_pA, c_pM, flagT + 67538.0, 67538.0, 0.349, 0.349, # E_A, E_M, nu_A, nu_M + 1.0e-6, 1.0e-6, # alpha_A, alpha_M + 0.0, 0.0418, 0.021, 0.0, # Hmin, Hmax, k1, sigmacrit + 10.0, 10.0, # C_A, C_M + 300.0, 290.0, 295.0, 305.0, # Ms0, Mf0, As0, Af0 + 0.2, 0.2, 0.2, 0.2, # n1..n4 + 300.0, 0.2, 2.0, # sigmacaliber, b_prager, n_prager + 1.0e-6, 1.0e-5, 1.0, 0.0, # c_lambda, p0_lambda, n_lambda, alpha_lambda +]) + +loading = solver.StepThermomeca( + control=["strain"] + ["stress"] * 5, value=[0.06, 0, 0, 0, 0, 0], + ninc=300, time=30.0, thermal_control="heat_flux", Q=0.0, +) +unloading = solver.StepThermomeca( + control=["strain"] + ["stress"] * 5, value=[0.0, 0, 0, 0, 0, 0], + ninc=300, time=30.0, thermal_control="heat_flux", Q=0.0, +) + +res_sma = solver.solve( + solver.Block(steps=[loading, unloading]), + "SMAUT", props_sma, nstatev=17, T_init=323.15, +) + +e11 = 100 * res_sma["Strain"][0] +line = ax2.scatter(e11, res_sma["Stress"][0], c=res_sma["Temp"], s=4, cmap="coolwarm") +ax2.set_xlabel("strain $E_{11}$ (%)") +ax2.set_ylabel("stress $\\sigma_{11}$ (MPa)") +ax2.set_title("SMAUT, adiabatic superelastic cycle") +fig.colorbar(line, ax=ax2, label="temperature (K)") + +fig.tight_layout() +plt.show() diff --git a/examples/thermomechanical/ELISO.py b/examples/thermomechanical/ELISO.py index e9bf9dcbb..b7a380c4f 100644 --- a/examples/thermomechanical/ELISO.py +++ b/examples/thermomechanical/ELISO.py @@ -73,7 +73,7 @@ pathfile = "THERM_ELISO_path.txt" outputfile = "results_THERM_ELISO.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/thermomechanical/ELIST.py b/examples/thermomechanical/ELIST.py index bd9d4c78a..45659b8a3 100644 --- a/examples/thermomechanical/ELIST.py +++ b/examples/thermomechanical/ELIST.py @@ -84,7 +84,7 @@ pathfile = "THERM_ELISO_path_1.txt" outputfile_1 = "results_THERM_ELIST_1.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, @@ -110,7 +110,7 @@ pathfile = "THERM_ELISO_path_2.txt" outputfile_2 = "results_THERM_ELIST_2.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/thermomechanical/ELORT.py b/examples/thermomechanical/ELORT.py index bbf6125e5..5d8fab1c5 100644 --- a/examples/thermomechanical/ELORT.py +++ b/examples/thermomechanical/ELORT.py @@ -92,7 +92,7 @@ pathfile = "THERM_ELISO_path_1.txt" outputfile_1 = "results_THERM_ELORT_1.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, @@ -116,7 +116,7 @@ pathfile = "THERM_ELISO_path_2.txt" outputfile_2 = "results_THERM_ELORT_2.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, @@ -140,7 +140,7 @@ pathfile = "THERM_ELISO_path_3.txt" outputfile_3 = "results_THERM_ELORT_3.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, diff --git a/examples/thermomechanical/EPICP.py b/examples/thermomechanical/EPICP.py index 6795cf117..3c032e981 100644 --- a/examples/thermomechanical/EPICP.py +++ b/examples/thermomechanical/EPICP.py @@ -64,7 +64,7 @@ pathfile = "THERM_EPICP_path.txt" outputfile = "results_THERM_EPICP.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, @@ -157,7 +157,7 @@ for inc in increments: pathfile = f"THERM_EPICP_path_{inc}.txt" outputfile = f"results_THERM_EPICP_{inc}.txt" - sim.solver( + sim._core.solver( umat_name, props, nstatev, diff --git a/examples/thermomechanical/EPKCP.py b/examples/thermomechanical/EPKCP.py index 2c82d8cdd..7e5c34627 100644 --- a/examples/thermomechanical/EPKCP.py +++ b/examples/thermomechanical/EPKCP.py @@ -65,7 +65,7 @@ pathfile = "THERM_EPKCP_path.txt" outputfile = "results_THERM_EPKCP.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, @@ -156,7 +156,7 @@ for inc in increments: pathfile = f"THERM_EPKCP_path_{inc}.txt" outputfile = f"results_THERM_EPKCP_{inc}.txt" - sim.solver( + sim._core.solver( umat_name, props, nstatev, diff --git a/examples/thermomechanical/SMA_T.py b/examples/thermomechanical/SMA_T.py index 16b60a865..4f4734c6a 100644 --- a/examples/thermomechanical/SMA_T.py +++ b/examples/thermomechanical/SMA_T.py @@ -107,7 +107,7 @@ pathfile = "THERM_SMAUT_path.txt" outputfile = "results_THERM_SMAUT.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, @@ -198,7 +198,7 @@ for inc in increments: pathfile = f"THERM_SMAUT_path_{inc}.txt" outputfile = f"results_THERM_SMAUT_{inc}.txt" - sim.solver( + sim._core.solver( umat_name, props, nstatev, diff --git a/examples/thermomechanical/ZENER.py b/examples/thermomechanical/ZENER.py index 34fd911aa..e202cef92 100644 --- a/examples/thermomechanical/ZENER.py +++ b/examples/thermomechanical/ZENER.py @@ -63,7 +63,7 @@ pathfile = "THERM_ZENER_path.txt" outputfile = "results_THERM_ZENER.txt" -sim.solver( +sim._core.solver( umat_name, props, nstatev, @@ -154,7 +154,7 @@ for inc in increments: pathfile = f"THERM_ZENER_path_{inc}.txt" outputfile = f"results_THERM_ZENER_{inc}.txt" - sim.solver( + sim._core.solver( umat_name, props, nstatev, diff --git a/examples/umat_tutorial/umat_tutorial_J2.cpp b/examples/umat_tutorial/umat_tutorial_J2.cpp new file mode 100644 index 000000000..d3a0fc18f --- /dev/null +++ b/examples/umat_tutorial/umat_tutorial_J2.cpp @@ -0,0 +1,178 @@ +/* This file is part of simcoon. + +simcoon is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +simcoon is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with simcoon. If not, see . + +*/ + +/** + * @file umat_tutorial_J2.cpp + * @brief TUTORIAL UMAT — J2 plasticity, linear isotropic hardening, typed + * tensors. Read alongside docs/simulation/umat_tutorial.rst. + */ + +#include "umat_tutorial_J2.hpp" + +#include +#include +#include +#include +#include +#include +#include + +using namespace arma; + +namespace simcoon { + +void umat_tutorial_J2(const std::string & /*umat_name*/, const vec &Etot, + const vec &DEtot, vec &sigma, mat &Lt, mat &L, + const mat &DR, const int & /*nprops*/, const vec &props, + const int & /*nstatev*/, vec &statev, const double &T, + const double &DT, const double & /*Time*/, + const double & /*DTime*/, double &Wm, double &Wm_r, + double &Wm_ir, double &Wm_d, const int & /*ndi*/, + const int & /*nshr*/, const bool &start, + double & /*tnew_dt*/, const int &tangent_mode) { + + // ------------------------------------------------------------------ 1. + // Material properties. Units: MPa; Voigt order [11, 22, 33, 12, 13, 23]. + const double E = props(0); + const double nu = props(1); + const double alpha = props(2); // CTE (isotropic) + const double sigma_Y = props(3); + const double H = props(4); // linear hardening modulus: R(p) = H p + + const double mu = E / (2. * (1. + nu)); + + // ------------------------------------------------------------------ 2. + // Elasticity as a TYPED fourth-order tensor: the Tensor4Type carries the + // stiffness convention, so contractions below produce stress-typed + // results automatically. + const tensor4 L_el(L_iso(E, nu, "Enu"), Tensor4Type::stiffness); + L = L_iso(E, nu, "Enu"); + + // ------------------------------------------------------------------ 3. + // State variables: statev = [T_init, p, EP(6, strain Voigt)] — the EPICP + // layout. On the start increment the state is virgin. + double T_init = statev(0); + double p = statev(1); + tensor2 EP = strain(vec(statev.subvec(2, 7))); + + if (start) { + T_init = T; + p = 0.; + EP = tensor2::zeros(VoigtType::strain); + sigma = zeros(6); + Wm = 0.; Wm_r = 0.; Wm_ir = 0.; Wm_d = 0.; + } + + // Objectivity: the stored plastic strain co-rotates with the material + // frame. The typed rotate() picks the strain rotation kernel (factor-2 + // shear convention) from the tensor's own VoigtType. + EP = EP.rotate(Rotation::from_matrix(DR)); + + const vec sigma_start = sigma; + + // ------------------------------------------------------------------ 4. + // Elastic prediction (total form): the trial state freezes plastic flow. + // eps_el^trial = Etot + DEtot - eps_th - EP + // sigma^trial = L : eps_el^trial + const tensor2 eps_th = + strain(vec(alpha * (T + DT - T_init) * Ith())); + const tensor2 eps_el_trial = + strain(vec(Etot + DEtot)) - eps_th - EP; + const tensor2 sig_trial = L_el.contract(eps_el_trial); // stress-typed + + // ------------------------------------------------------------------ 5. + // Yield check: f^trial = sigma_eq(sigma^trial) - (sigma_Y + H p). + // Mises() dispatches on the type tag (sqrt(3/2 s:s) for a stress). + const double f_trial = Mises(sig_trial) - (sigma_Y + H * p); + + double Dp = 0.; + tensor2 Lam = tensor2::zeros(VoigtType::strain); + + if (f_trial > 0.) { + // -------------------------------------------------------------- 6. + // RADIAL RETURN, closed form. The flow direction + // Lambda = (3/2) dev(sigma)/sigma_eq + // is preserved by the return (the correction is radial in deviatoric + // space), and with LINEAR hardening the consistency condition + // f(Dp) = f^trial - (3 mu + H) Dp = 0 + // is linear in Dp — no local Newton iteration is needed: + Lam = flow_normal(sig_trial); // strain-typed + Dp = f_trial / (3. * mu + H); + + p += Dp; + EP += Dp * Lam; + } + + // Converged stress from the total form (elastic when Dp = 0). + const tensor2 sig = L_el.contract(eps_el_trial - Dp * Lam); + sigma = sig.to_arma_voigt(); + + // ------------------------------------------------------------------ 7. + // TANGENT MODULUS. For the continuum operator everything is analytic: + // + // L_t = L - (L:Lambda) o (L:Lambda) / (Lambda:L:Lambda + H) + // + // and for isotropic L with a deviatoric Lambda: + // L:Lambda = 2 mu Lambda (kappa) + // Lambda:L:Lambda = 3 mu + // => L_t = L - 4 mu^2 / (3 mu + H) * Lambda o Lambda. + // + // The code keeps the GENERIC kappa-form so it survives a change of yield + // criterion; the specialization above is what the docs derive by hand. + // NB: auto_dyadic is the FULL outer product kappa (x) kappa — sym_dyadic + // is the (ik)(jl)-symmetrized product, a different operator. + if (Dp <= simcoon::iota || tangent_mode == tangent_none) { + Lt = L; // elastic step, or explicit integration + } else if (tangent_mode == tangent_continuum) { + const tensor2 kappa = L_el.contract(Lam); // stress-typed + const double Lam_L_Lam = accu(Lam.mat() % kappa.mat()); // = 3 mu + const tensor4 Lt_t = + L_el - auto_dyadic(kappa) * (1. / (Lam_L_Lam + H)); + Lt = mat(Lt_t.mat()); + } else { + // Algorithmic (Simo-Hughes) and beyond: hand the physical inputs to + // the shared dispatch — Bhat = Lambda:kappa + H, the flow Hessian is + // dLambda/dsigma = deta_stress. This is what the production kernels do. + const tensor2 kappa = L_el.contract(Lam); + const double Bhat = accu(Lam.mat() % kappa.mat()) + H; + const vec sig_v = sigma; + const ContinuumTangent ct = compute_tangent_operator( + tangent_mode, Bhat, kappa.to_arma_voigt(), Lam.to_arma_voigt(), + Dp, L, [&sig_v]() { return deta_stress(sig_v); }); + Lt = ct.Lt; + } + + // ------------------------------------------------------------------ 8. + // Work quantities — CUMULATIVE (the solver reports path integrals): + // trapezoidal total work, plastic dissipation sigma:Dp*Lambda, the + // recoverable part closes the balance. + const double Wm_inc = 0.5 * dot(sigma_start + sigma, DEtot); + const double Wm_d_inc = + 0.5 * accu((stress(vec(sigma_start)).mat() + sig.mat()) % (Dp * Lam).mat()); + Wm += Wm_inc; + Wm_d += Wm_d_inc; + Wm_r += Wm_inc - Wm_d_inc; + Wm_ir += 0.; + + // ------------------------------------------------------------------ 9. + // Pack the state back. + statev(0) = T_init; + statev(1) = p; + statev.subvec(2, 7) = EP.to_arma_voigt(); +} + +} // namespace simcoon diff --git a/examples/umat_tutorial/umat_tutorial_J2.hpp b/examples/umat_tutorial/umat_tutorial_J2.hpp new file mode 100644 index 000000000..363ad1139 --- /dev/null +++ b/examples/umat_tutorial/umat_tutorial_J2.hpp @@ -0,0 +1,69 @@ +/* This file is part of simcoon. + +simcoon is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +simcoon is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with simcoon. If not, see . + +*/ + +/** + * @file umat_tutorial_J2.hpp + * @brief TUTORIAL UMAT — J2 plasticity with linear isotropic hardening, + * written with the typed Tensor2/Tensor4 API. + * + * This is the companion code of the "writing a UMAT" tutorial + * (docs/simulation/umat_tutorial.rst). The model is chosen so that EVERY + * quantity has a closed form: + * + * - Yield: \f$ f = \sigma_{eq} - (\sigma_Y + H\,p) \f$ with the von Mises + * equivalent stress \f$ \sigma_{eq} = \sqrt{\tfrac{3}{2}\,\mathbf{s}:\mathbf{s}} \f$. + * - Radial return (associated flow, linear hardening): + * \f$ \Delta p = f^{trial} / (3\mu + H) \f$ — no local iteration needed. + * - Continuum tangent, derived analytically: + * \f[ \mathbf{L}_t = \mathbf{L} + * - \frac{(\mathbf{L}:\boldsymbol{\Lambda}) \otimes (\mathbf{L}:\boldsymbol{\Lambda})} + * {\boldsymbol{\Lambda}:\mathbf{L}:\boldsymbol{\Lambda} + H} + * \;=\; \mathbf{L} - \frac{4\mu^2}{3\mu + H}\, + * \boldsymbol{\Lambda}\otimes\boldsymbol{\Lambda} \f] + * since \f$ \mathbf{L}:\boldsymbol{\Lambda} = 2\mu\boldsymbol{\Lambda} \f$ + * (deviatoric direction) and + * \f$ \boldsymbol{\Lambda}:\mathbf{L}:\boldsymbol{\Lambda} = 3\mu \f$. + * + * Props (5): E, nu, alpha, sigma_Y, H. + * statev (8): T_init, p, EP (6, strain Voigt) — identical layout to EPICP, so + * the two are directly comparable (EPICP with m = 1, k = H is the same model). + * + * The tutorial gtest (Ttutorial_umat) validates this implementation three + * ways: against the EPICP reference, against the shared + * assemble_continuum_tangent operator, and against a finite-difference + * Jacobian of the discrete map. + */ + +#pragma once + +#include +#include +#include + +namespace simcoon { + +void umat_tutorial_J2(const std::string &umat_name, const arma::vec &Etot, + const arma::vec &DEtot, arma::vec &sigma, arma::mat &Lt, + arma::mat &L, const arma::mat &DR, const int &nprops, + const arma::vec &props, const int &nstatev, + arma::vec &statev, const double &T, const double &DT, + const double &Time, const double &DTime, double &Wm, + double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, + const int &nshr, const bool &start, double &tnew_dt, + const int &tangent_mode = tangent_default); + +} // namespace simcoon diff --git a/include/simcoon/Continuum_mechanics/Umat/Finite/generic_hyper_invariants.hpp b/include/simcoon/Continuum_mechanics/Umat/Finite/generic_hyper_invariants.hpp index 6ffc33cdd..c69a8b3a6 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Finite/generic_hyper_invariants.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Finite/generic_hyper_invariants.hpp @@ -22,6 +22,7 @@ #pragma once #include +#include namespace simcoon{ @@ -42,7 +43,7 @@ namespace simcoon{ ///@brief No statev is required for thermoelastic constitutive law -void umat_generic_hyper_invariants(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT,const double &Time,const double &DTime, double &Wm_0, double &Wm_1, double &Wm_2, double &Wm_3, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_generic_hyper_invariants(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT,const double &Time,const double &DTime, double &Wm_0, double &Wm_1, double &Wm_2, double &Wm_3, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_finite group diff --git a/include/simcoon/Continuum_mechanics/Umat/Finite/generic_hyper_pstretch.hpp b/include/simcoon/Continuum_mechanics/Umat/Finite/generic_hyper_pstretch.hpp index 2df32e61e..f966c6d5a 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Finite/generic_hyper_pstretch.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Finite/generic_hyper_pstretch.hpp @@ -22,6 +22,7 @@ #pragma once #include +#include namespace simcoon{ @@ -42,7 +43,7 @@ namespace simcoon{ ///@brief No statev is required for thermoelastic constitutive law -void umat_generic_hyper_pstretch(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT,const double &Time,const double &DTime, double &Wm_0, double &Wm_1, double &Wm_2, double &Wm_3, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_generic_hyper_pstretch(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT,const double &Time,const double &DTime, double &Wm_0, double &Wm_1, double &Wm_2, double &Wm_3, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_finite group diff --git a/include/simcoon/Continuum_mechanics/Umat/Finite/hypoelastic_orthotropic.hpp b/include/simcoon/Continuum_mechanics/Umat/Finite/hypoelastic_orthotropic.hpp index 3cbdbb302..ddd0a8840 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Finite/hypoelastic_orthotropic.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Finite/hypoelastic_orthotropic.hpp @@ -23,6 +23,7 @@ #include #include +#include namespace simcoon{ @@ -43,7 +44,7 @@ namespace simcoon{ ///@brief No statev is required for thermoelastic constitutive law -void umat_hypoelasticity_ortho(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_hypoelasticity_ortho(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_finite group diff --git a/include/simcoon/Continuum_mechanics/Umat/Finite/neo_hookean_comp.hpp b/include/simcoon/Continuum_mechanics/Umat/Finite/neo_hookean_comp.hpp index c84d92d4a..211a84145 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Finite/neo_hookean_comp.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Finite/neo_hookean_comp.hpp @@ -23,6 +23,7 @@ #include #include +#include namespace simcoon{ @@ -169,7 +170,7 @@ namespace simcoon{ * - Holzapfel, G. A. (2000). *Nonlinear Solid Mechanics: A Continuum Approach for Engineering*. Wiley. * - Connolly, S. J., et al. (2019). "Automatic differentiation based formulation of computational models." *Computational Mechanics*, 64, 1273-1288. */ -void umat_neo_hookean_comp(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_neo_hookean_comp(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_finite group diff --git a/include/simcoon/Continuum_mechanics/Umat/Finite/neo_hookean_incomp.hpp b/include/simcoon/Continuum_mechanics/Umat/Finite/neo_hookean_incomp.hpp index d5b3d33f3..bc1830417 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Finite/neo_hookean_incomp.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Finite/neo_hookean_incomp.hpp @@ -23,6 +23,7 @@ #include #include +#include namespace simcoon{ @@ -43,7 +44,7 @@ namespace simcoon{ ///@brief No statev is required for thermoelastic constitutive law -void umat_neo_hookean_incomp(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_neo_hookean_incomp(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_finite group diff --git a/include/simcoon/Continuum_mechanics/Umat/Finite/saint_venant.hpp b/include/simcoon/Continuum_mechanics/Umat/Finite/saint_venant.hpp index 5f7122941..054f42056 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Finite/saint_venant.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Finite/saint_venant.hpp @@ -23,6 +23,7 @@ #include #include +#include namespace simcoon{ @@ -43,7 +44,7 @@ namespace simcoon{ ///@brief No statev is required for thermoelastic constitutive law -void umat_saint_venant(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_saint_venant(const std::string &umat_name, const arma::vec &etot, const arma::vec &Detot, const arma::mat &F0, const arma::mat &F1, arma::vec &sigma, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_finite group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Damage/damage_LLD_0.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Damage/damage_LLD_0.hpp index 2a9d2d00c..1481f0673 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Damage/damage_LLD_0.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Damage/damage_LLD_0.hpp @@ -27,6 +27,7 @@ #include #include #include +#include namespace simcoon{ @@ -282,7 +283,7 @@ namespace simcoon{ * - Matzenmiller, A., Lubliner, J., & Taylor, R. L. (1995). "A constitutive model for anisotropic damage in fiber-composites." *Mechanics of Materials*, 20(2), 125-152. * - Pinho, S. T., et al. (2012). "Material and structural response of polymer-matrix fibre-reinforced composites." *Journal of Composite Materials*, 46(19-20), 2313-2341. */ -void umat_damage_LLD_0(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_damage_LLD_0(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Damage/damage_weibull.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Damage/damage_weibull.hpp index 63e3bbb9c..f6569cd7e 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Damage/damage_weibull.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Damage/damage_weibull.hpp @@ -24,6 +24,7 @@ #include #include #include +#include namespace simcoon{ @@ -37,7 +38,7 @@ namespace simcoon{ */ -void umat_damage_weibull(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_damage_weibull(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.hpp index ede5bb949..2150d6635 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.hpp @@ -25,6 +25,7 @@ #pragma once #include #include +#include namespace simcoon{ @@ -262,7 +263,7 @@ namespace simcoon{ * - Lemaitre, J., & Chaboche, J. L. (1990). *Mechanics of Solid Materials*. Cambridge University Press. * - Ortiz, M., & Simo, J. C. (1986). "An analysis of a new class of integration algorithms for elastoplastic constitutive relations." *International Journal for Numerical Methods in Engineering*, 23(3), 353-366. */ -void umat_plasticity_chaboche_CCP(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_plasticity_chaboche_CCP(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.hpp index ff5bb6838..4d6688374 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.hpp @@ -24,6 +24,7 @@ #pragma once #include #include +#include namespace simcoon{ @@ -162,7 +163,7 @@ namespace simcoon{ * 3, 3, true, tnew_dt); * @endcode */ -void umat_plasticity_iso_CCP(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_plasticity_iso_CCP(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/SMA_mono.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/SMA_mono.hpp index 5bb7104d1..dffbc6ec5 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/SMA_mono.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/SMA_mono.hpp @@ -25,6 +25,7 @@ #pragma once #include #include +#include namespace simcoon{ @@ -234,7 +235,7 @@ namespace simcoon{ * - Gall, K., & Sehitoglu, H. (1999). "The role of texture in tension-compression * asymmetry in polycrystalline NiTi." *International Journal of Plasticity*, 15(1), 69-92. */ -void umat_sma_mono(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_sma_mono(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/sma_flow.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/sma_flow.hpp new file mode 100644 index 000000000..e7a8685e3 --- /dev/null +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/sma_flow.hpp @@ -0,0 +1,55 @@ +/* This file is part of simcoon. + +simcoon is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +simcoon is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with simcoon. If not, see . + +*/ + +/** + * @file sma_flow.hpp + * @brief Shared transformation-flow direction of the unified SMA models. + */ + +#pragma once + +#include +#include +#include + +namespace simcoon { + +/** + * @brief Forward-transformation strain-flow direction of the unified SMA + * models: \f$ \boldsymbol{\Lambda}^{TF}(\boldsymbol{\sigma}) = + * H_{cur}(\boldsymbol{\sigma})\, \partial_\sigma \sigma^{Drucker} \f$ with the + * exponential \f$ H_{cur} \f$ envelope. + * + * Single definition shared by unified_T (mechanical and thermomechanical) and + * unified_TR — in particular their finite-difference flow Hessians + * differentiate exactly this function, so the three kernels stay consistent. + */ +inline arma::vec sma_transformation_flow(const arma::vec& s, double sigmacrit, + double Hmin, double Hmax, double k1, + bool aniso_criteria, + const arma::vec& DFA_params, + double prager_b, double prager_n) { + double sstar = Mises_stress(s) - sigmacrit; + if (sstar < 0.) { + sstar = 0.; + } + const double Hc = Hmin + (Hmax - Hmin) * (1. - std::exp(-1. * k1 * sstar)); + return aniso_criteria ? Hc * dDrucker_ani_stress(s, DFA_params, prager_b, prager_n) + : Hc * dDrucker_stress(s, prager_b, prager_n); +} + +} // namespace simcoon diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/unified_T.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/unified_T.hpp index 9c81a343f..d73eaaf1d 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/unified_T.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/unified_T.hpp @@ -28,6 +28,7 @@ #pragma once #include #include +#include namespace simcoon{ @@ -196,7 +197,7 @@ namespace simcoon{ * "A constitutive model for cyclic actuation of high-temperature shape memory alloys." * *Mechanics of Materials*, 68, 120-136. */ -void umat_sma_unified_T(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_sma_unified_T(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/unified_TR.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/unified_TR.hpp index 9566952ff..c5f72952e 100644 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/unified_TR.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/SMA/unified_TR.hpp @@ -27,6 +27,7 @@ #pragma once #include #include +#include namespace simcoon { @@ -120,7 +121,7 @@ namespace simcoon { * - Chatziathanasiou, Chemisky, Meraghni, Echchorfi, Patoor (2015). * *Smart Materials and Structures*. */ -void umat_sma_unified_TR(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_sma_unified_TR(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Prony_Nfast.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Prony_Nfast.hpp index dcb70b9f1..5fbcd5ee8 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Prony_Nfast.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Prony_Nfast.hpp @@ -27,6 +27,7 @@ #include #include #include +#include namespace simcoon { @@ -177,7 +178,7 @@ namespace simcoon { * - Simo, J. C., & Hughes, T. J. R. (1998). *Computational Inelasticity*. Springer. * - Park, S. W., & Schapery, R. A. (1999). "Methods of interconversion between linear viscoelastic material functions. Part I—A numerical method based on Prony series." *International Journal of Solids and Structures*, 36(11), 1653-1675. */ -void umat_prony_Nfast(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_prony_Nfast(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Zener_Nfast.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Zener_Nfast.hpp index 5e5b1bdc3..b4f5d77b9 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Zener_Nfast.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Zener_Nfast.hpp @@ -27,6 +27,7 @@ #include #include #include +#include namespace simcoon { @@ -181,7 +182,7 @@ namespace simcoon { * - Simo, J. C., & Hughes, T. J. R. (1998). *Computational Inelasticity*. Springer. * - Park, S. W., & Schapery, R. A. (1999). "Methods of interconversion between linear viscoelastic material functions." *Int. J. Solids Struct.*, 36(11), 1653-1675. */ -void umat_zener_Nfast(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_zener_Nfast(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Zener_fast.hpp b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Zener_fast.hpp index 3baab128c..312ec0c3b 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Zener_fast.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Mechanical/Viscoelasticity/Zener_fast.hpp @@ -27,6 +27,7 @@ #include #include #include +#include namespace simcoon { @@ -157,7 +158,7 @@ namespace simcoon { * - Ferry, J. D. (1980). *Viscoelastic Properties of Polymers* (3rd ed.). Wiley. * - Simo, J. C., & Hughes, T. J. R. (1998). *Computational Inelasticity*. Springer. */ -void umat_zener_fast(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_zener_fast(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &stress, arma::mat &Lt, arma::mat &L, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_mechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/Modular/hardening.hpp b/include/simcoon/Continuum_mechanics/Umat/Modular/hardening.hpp index d9a765709..ee70f7d0b 100644 --- a/include/simcoon/Continuum_mechanics/Umat/Modular/hardening.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Modular/hardening.hpp @@ -139,14 +139,24 @@ class LinearHardening final : public IsotropicHardening { }; /** - * @brief Power-law isotropic hardening: R = k * p^m + * @brief Power-law isotropic hardening: \f$ R = k\,p^m \f$ + * + * For \f$ m < 1 \f$ the exact modulus \f$ dR/dp = k\,m\,p^{m-1} \f$ diverges + * at the onset \f$ p \to 0^+ \f$, which destabilizes the return-map Newton. + * The law is therefore regularized below a small cutoff \f$ p_{reg} = 10^{-6} \f$ + * by a C\f$^1\f$ quadratic blend anchored at \f$ R(0)=0 \f$ and matched in + * value and slope at \f$ p_{reg} \f$ — the same tangent-continuation idiom as + * the SMA volume-fraction barriers (lagrange_pow_0/1). The law is exact for + * \f$ p \ge p_{reg} \f$ and unmodified when \f$ m \ge 1 \f$. */ class PowerLawHardening final : public IsotropicHardening { private: double k_; ///< Hardening coefficient double m_; ///< Hardening exponent + double a_reg_; ///< Onset-blend linear coefficient (precomputed, m < 1 only) + double b_reg_; ///< Onset-blend quadratic coefficient (precomputed, m < 1 only) public: - PowerLawHardening() : k_(0.0), m_(1.0) {} + PowerLawHardening() : k_(0.0), m_(1.0), a_reg_(0.0), b_reg_(0.0) {} void configure(const arma::vec& props, int& offset) override; double R(double p) const override; double dR_dp(double p) const override; @@ -286,7 +296,7 @@ class KinematicHardening { /** * @brief Backward-Euler refresh of the back-strains FROM THE START VALUES - * (closest-point / tangent_mode == 2 contract). + * (closest-point / tangent_mode == tangent_closest_point contract). * * Unlike update() (incremental, frozen flow), this solves the implicit * update \f$ \boldsymbol{\alpha} = \boldsymbol{\alpha}_n + \Delta p\, diff --git a/include/simcoon/Continuum_mechanics/Umat/Modular/legacy_adapters.hpp b/include/simcoon/Continuum_mechanics/Umat/Modular/legacy_adapters.hpp new file mode 100644 index 000000000..ea126a1fa --- /dev/null +++ b/include/simcoon/Continuum_mechanics/Umat/Modular/legacy_adapters.hpp @@ -0,0 +1,85 @@ +/* This file is part of simcoon. + +simcoon is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +simcoon is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with simcoon. If not, see . + +*/ + +/** + * @file legacy_adapters.hpp + * @brief Legacy UMAT names served by the modular engine. + * + * The legacy UMATs whose physics ModularUMAT replicates exactly (proven by + * the equivalence tests in test_modular.py and gated by + * bench/bench_legacy_vs_modular.py) keep their NAME and PROPS ABI: a + * per-name translator turns the legacy props vector into the MODUL props + * stream and the call is forwarded to umat_modular. statev: the modular + * engine claims the FIRST required slots of the caller's array (legacy + * allocations are always large enough); trailing legacy slots are left + * untouched — column MEANING may differ from the deleted implementation + * (see the migration table in the docs). + * + * @version 1.0 + */ + +#pragma once + +#include +#include +#include + +namespace simcoon { + +/// Translate a legacy props vector into the MODUL props stream. +using LegacyPropsTranslator = arma::vec (*)(const arma::vec& legacy_props); + +/// True if @p umat_name is served by the modular engine via an adapter. +bool has_legacy_adapter(const std::string& umat_name); + +/** + * @brief UMAT-shaped entry for adapter-served legacy names: translate the + * props for @p umat_name, then run umat_modular. All other arguments are + * forwarded untouched (signature identical to umat_modular). + * + * @throws std::runtime_error (with the legacy name prefixed) if the name has + * no registered translator or if the caller's nstatev is smaller than the + * modular configuration requires. + */ +void umat_legacy_modular( + const std::string& umat_name, + const arma::vec& Etot, + const arma::vec& DEtot, + arma::vec& sigma, + arma::mat& Lt, + arma::mat& L, + const arma::mat& DR, + const int& nprops, + const arma::vec& props, + const int& nstatev, + arma::vec& statev, + const double& T, + const double& DT, + const double& Time, + const double& DTime, + double& Wm, + double& Wm_r, + double& Wm_ir, + double& Wm_d, + const int& ndi, + const int& nshr, + const bool& start, + double& tnew_dt, + const int& tangent_mode = tangent_default +); + +} // namespace simcoon diff --git a/include/simcoon/Continuum_mechanics/Umat/Modular/modular_umat.hpp b/include/simcoon/Continuum_mechanics/Umat/Modular/modular_umat.hpp index 012cfa3cc..755e3638e 100644 --- a/include/simcoon/Continuum_mechanics/Umat/Modular/modular_umat.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Modular/modular_umat.hpp @@ -49,6 +49,7 @@ along with simcoon. If not, see . #include #include #include +#include #include #include @@ -142,7 +143,8 @@ class ModularUMAT { /** * @brief Add a viscoelastic mechanism (Prony series) * @param N_prony Number of Prony terms - * @param props Material properties (g_i, tau_i pairs for each term) + * @param props Material properties: per Prony branch a quadruple + * (E_i, nu_i, etaB_i, etaS_i) — same layout as the legacy PRONK/ZENNK * @param offset Current offset in props (will be updated) * @return Reference to the added mechanism */ @@ -180,7 +182,7 @@ class ModularUMAT { * - For plasticity (type 0): * - yield_type, iso_type, kin_type, N_iso, N_kin, sigma_Y, [yield params], [iso params], [kin params] * - For viscoelasticity (type 1): - * - N_prony, then N_prony pairs of (g_i, tau_i) + * - N_prony, then N_prony quadruples of (E_i, nu_i, etaB_i, etaS_i) * - For damage (type 2): * - damage_type (0=linear, 1=exp, 2=power, 3=weibull), Y_0, Y_c, [type-specific params] * @@ -301,7 +303,7 @@ class ModularUMAT { int nshr, bool start, double& tnew_dt, - int tangent_mode = 0 + int tangent_mode = tangent_default ); private: @@ -344,28 +346,33 @@ class ModularUMAT { /** * @brief Compute the tangent modulus. * - * tangent_mode == 0: each mechanism applies its continuum - * tangent_contribution() in composition order (legacy behaviour). + * tangent_none (0): no assembly — Lt stays the elastic operator + * (explicit integration). * - * tangent_mode == 1: mechanisms exposing a flow Hessian + * tangent_continuum (1): each mechanism applies its continuum + * tangent_contribution() in composition order (pre-2.0 mode 0). + * + * tangent_algorithmic (2): mechanisms exposing a flow Hessian * (dLambda_dsigma() != nullptr, stress-dependent Phi) are assembled * together through assemble_algorithmic_tangent() — the Simo–Hughes * consistent operator of the coupled sub-system, built from the converged * local Jacobian \f$ \hat{B} = -B \f$ and the mechanism caches. The * remaining mechanisms (Prony viscoelasticity, scalar damage — flows * independent of stress) keep their continuum contribution, applied on - * top in composition order, exactly as in mode 0. + * top in composition order, exactly as in the continuum mode. * * @param sigma Current (converged) stress * @param Ds_total Total multiplier increments * @param Lt Output: tangent modulus - * @param tangent_mode 0 = continuum, 1 = algorithmic (Simo–Hughes) + * @param tangent_mode tangent_* constant (parameter.hpp): 0 = none + * (Lt = elastic L), 1 = continuum, 2 = algorithmic (Simo–Hughes), + * 3 = closest-point (reserved, throws) */ void compute_tangent( const arma::vec& sigma, const arma::vec& Ds_total, arma::mat& Lt, - int tangent_mode = 0 + int tangent_mode = tangent_default ); /** @@ -417,7 +424,7 @@ void umat_modular( const int& nshr, const bool& start, double& tnew_dt, - const int& tangent_mode = 0 + const int& tangent_mode = tangent_default ); } // namespace simcoon diff --git a/include/simcoon/Continuum_mechanics/Umat/Modular/strain_mechanism.hpp b/include/simcoon/Continuum_mechanics/Umat/Modular/strain_mechanism.hpp index 3da672ab2..4c4829f34 100644 --- a/include/simcoon/Continuum_mechanics/Umat/Modular/strain_mechanism.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Modular/strain_mechanism.hpp @@ -270,11 +270,11 @@ class StrainMechanism { return 0.0; } - // ========== tangent_mode >= 1 hooks (algorithmic tangent / CPP) ========== + // ========== tangent_mode >= tangent_algorithmic hooks (algorithmic tangent / CPP) ========== /** * @brief Flow-direction Hessians \f$ \mathrm{d}\boldsymbol{\Lambda}_\varepsilon^j/ - * \mathrm{d}\boldsymbol{\sigma} \f$ per constraint, for tangent_mode >= 1. + * \mathrm{d}\boldsymbol{\sigma} \f$ per constraint, for tangent_mode >= tangent_algorithmic. * * Compliance-typed tensor4 (a stress → strain map, so the engineering↔Mandel * congruence carries the correct shear factors by construction — the Hessian @@ -293,7 +293,7 @@ class StrainMechanism { /** * @brief Backward-Euler state refresh from the IVC start values, for the - * closest-point (tangent_mode == 2) integrator. + * closest-point (tangent_mode == tangent_closest_point) integrator. * * Contract (matches ReturnStateHooks::update_state of return_mapping.hpp): * rebuild the mechanism's internal variables as diff --git a/include/simcoon/Continuum_mechanics/Umat/Modular/yield_criterion.hpp b/include/simcoon/Continuum_mechanics/Umat/Modular/yield_criterion.hpp index dc538196e..2da47d2be 100644 --- a/include/simcoon/Continuum_mechanics/Umat/Modular/yield_criterion.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Modular/yield_criterion.hpp @@ -182,7 +182,7 @@ class YieldCriterion { /** * @brief Whether an analytic flow Hessian is available for this criterion - * (required by tangent_mode >= 1; Tresca and Drucker J2-J3 have none). + * (required by tangent_mode >= tangent_algorithmic; Tresca and Drucker J2-J3 have none). */ [[nodiscard]] bool has_flow_hessian() const noexcept; diff --git a/include/simcoon/Continuum_mechanics/Umat/Thermomechanical/SMA/unified_T.hpp b/include/simcoon/Continuum_mechanics/Umat/Thermomechanical/SMA/unified_T.hpp index 86fb76cf8..e19964a0b 100755 --- a/include/simcoon/Continuum_mechanics/Umat/Thermomechanical/SMA/unified_T.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/Thermomechanical/SMA/unified_T.hpp @@ -29,6 +29,7 @@ #pragma once #include #include +#include namespace simcoon{ @@ -194,7 +195,7 @@ namespace simcoon{ * "A constitutive model for cyclic actuation of high-temperature shape memory alloys." * *Mechanics of Materials*, 68, 120-136. */ -void umat_sma_unified_T_T(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &sigma, double &r, arma::mat &dSdE, arma::mat &dSdT, arma::mat &drdE, arma::mat &drdT, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, double &Wt, double &Wt_r, double &Wt_ir, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = 0); +void umat_sma_unified_T_T(const std::string &umat_name, const arma::vec &Etot, const arma::vec &DEtot, arma::vec &sigma, double &r, arma::mat &dSdE, arma::mat &dSdT, arma::mat &drdE, arma::mat &drdT, const arma::mat &DR, const int &nprops, const arma::vec &props, const int &nstatev, arma::vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, double &Wt, double &Wt_r, double &Wt_ir, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode = tangent_default); /** @} */ // end of umat_thermomechanical group diff --git a/include/simcoon/Continuum_mechanics/Umat/tangent_assembly.hpp b/include/simcoon/Continuum_mechanics/Umat/tangent_assembly.hpp index d35220c98..0d44f0668 100644 --- a/include/simcoon/Continuum_mechanics/Umat/tangent_assembly.hpp +++ b/include/simcoon/Continuum_mechanics/Umat/tangent_assembly.hpp @@ -23,6 +23,7 @@ #include #include +#include namespace simcoon { @@ -179,4 +180,63 @@ ContinuumTangent assemble_algorithmic_tangent( const arma::mat& L, const arma::mat& dLambda_dsigma); +/** + * @brief Lazy per-mechanism Hessian provider for compute_tangent_operator(). + * + * Invoked ONLY when the algorithmic operator is requested — expensive Hessians + * (e.g. the SMA finite-difference $ \partial oldsymbol{\Lambda}/\partial + * oldsymbol{\sigma} $) must not be evaluated in the other modes. + */ +using HessianProvider = std::function()>; + +// NOTE: only the iterative (plasticity/SMA/thermomechanical) kernels dispatch +// on tangent_mode. The finite-strain hyperelastic, viscoelastic, damage and +// elastic kernels always return their exact tangent and accept-but-ignore the +// mode (documented in docs/simulation/umat_catalog.rst). + +/** + * @brief Mode dispatch over the shared tangent assemblies — the single entry + * point UMATs call after their return mapping, keeping only the physical + * inputs at the call site. + * + * - @c tangent_none: no assembly; returns { Lt = L, per-mechanism zero + * P_epsilon, zero invBhat } so downstream thermomechanical algebra + * (P_theta from P_epsilon/invBhat) degrades consistently to the elastic + * operator (explicit integration). + * - @c tangent_continuum: assemble_continuum_tangent(). + * - @c tangent_algorithmic: assemble_algorithmic_tangent() with + * @p dLambda_dsigma(); falls back to the continuum operator when no + * provider is given (flow independent of stress). + * - @c tangent_closest_point: reserved — throws std::invalid_argument. + * + * @param tangent_mode One of the tangent_* constants (parameter.hpp) + * @param Bhat Local Jacobian (N x N), as in assemble_continuum_tangent + * @param kappa_j Flux directions (N x 6-vector) + * @param dPhidsigma_l Criterion gradients (N x 6-vector) + * @param Ds_j Multiplier increments (active-set mask, N) + * @param L Elastic stiffness (6 x 6) + * @param dLambda_dsigma Lazy provider of the per-mechanism flow Hessians + */ +ContinuumTangent compute_tangent_operator( + int tangent_mode, + const arma::mat& Bhat, + const std::vector& kappa_j, + const std::vector& dPhidsigma_l, + const arma::vec& Ds_j, + const arma::mat& L, + const HessianProvider& dLambda_dsigma = nullptr); + +/** + * @brief Single-mechanism convenience overload of compute_tangent_operator(). + * @param dLambda_dsigma Lazy provider of the single flow Hessian (6 x 6) + */ +ContinuumTangent compute_tangent_operator( + int tangent_mode, + double Bhat_scalar, + const arma::vec& kappa, + const arma::vec& dPhidsigma, + double Ds, + const arma::mat& L, + const std::function& dLambda_dsigma = nullptr); + } // namespace simcoon diff --git a/include/simcoon/Simulation/Phase/state_variables.hpp b/include/simcoon/Simulation/Phase/state_variables.hpp index fedb60287..98cdaa202 100755 --- a/include/simcoon/Simulation/Phase/state_variables.hpp +++ b/include/simcoon/Simulation/Phase/state_variables.hpp @@ -23,6 +23,7 @@ #include #include +#include #include namespace simcoon{ @@ -83,7 +84,7 @@ class state_variables arma::vec statev; ///< Internal state variables vector arma::vec statev_start; ///< Internal state variables at start of increment - int tangent_mode = 0; // Tangent-mode selector 0 = continuum (current behaviour, default in simcoon 1.x), 1 = algorithmic / Simo–Hughes consistent tangent (planned 2.0 default). + int tangent_mode = tangent_default; // tangent_* constants (parameter.hpp): 0 = none/explicit, 1 = continuum, 2 = algorithmic/Simo-Hughes (default), 3 = closest-point (reserved). natural_basis nb; ///< Natural basis for covariant/contravariant operations diff --git a/include/simcoon/Simulation/Solver/solver.hpp b/include/simcoon/Simulation/Solver/solver.hpp index 82b8a0701..1585b2ae8 100755 --- a/include/simcoon/Simulation/Solver/solver.hpp +++ b/include/simcoon/Simulation/Solver/solver.hpp @@ -21,6 +21,7 @@ #pragma once #include +#include #include namespace simcoon{ @@ -45,7 +46,7 @@ namespace simcoon{ * @param psi_rve First Euler angle of RVE orientation (rad) * @param theta_rve Second Euler angle of RVE orientation (rad) * @param phi_rve Third Euler angle of RVE orientation (rad) - * @param solver_type Type of solver (0: small strain, 1: finite strain) + * @param solver_type Global resolution scheme (0: classic Newton-Raphson, 1: RNL — control_type 1 only) * @param corate_type Type of corotational formulation * @param div Divisor for time stepping (default: 0.5) * @param mul Multiplier for time stepping (default: 2.0) @@ -58,6 +59,7 @@ namespace simcoon{ * @param path_results Path to results directory (default: "results") * @param pathfile Name of loading path file (default: "path.txt") * @param outputfile Name of output file (default: "result_job.txt") + * @param tangent_mode Tangent operator mode (tangent_* constants of parameter.hpp; default: tangent_default) * * @details This function drives the simulation by: * - Reading the loading path from input files @@ -66,7 +68,7 @@ namespace simcoon{ * - Writing results to output files * */ -void solver(const std::string &umat_name, const arma::vec &props, const unsigned int &nstatev, const double &psi_rve, const double &theta_rve, const double &phi_rve, const int &solver_type, const int &corate_type, const double &div = 0.5, const double &mul = 2., const int &miniter = 10, const int &maxiter = 100, const int &inforce_solver = 1, const double &precision = 1.E-6, const double &lambda_eff = 10000., const std::string &path_data = "data", const std::string &path_results = "results", const std::string &pathfile = "path.txt", const std::string &outputfile = "result_job.txt", const int &tangent_mode = 0); +void solver(const std::string &umat_name, const arma::vec &props, const unsigned int &nstatev, const double &psi_rve, const double &theta_rve, const double &phi_rve, const int &solver_type, const int &corate_type, const double &div = 0.5, const double &mul = 2., const int &miniter = 10, const int &maxiter = 100, const int &inforce_solver = 1, const double &precision = 1.E-6, const double &lambda_eff = 10000., const std::string &path_data = "data", const std::string &path_results = "results", const std::string &pathfile = "path.txt", const std::string &outputfile = "result_job.txt", const int &tangent_mode = tangent_default); /** @} */ // end of solver group diff --git a/include/simcoon/Simulation/Solver/solver_sink.hpp b/include/simcoon/Simulation/Solver/solver_sink.hpp new file mode 100644 index 000000000..429f07d73 --- /dev/null +++ b/include/simcoon/Simulation/Solver/solver_sink.hpp @@ -0,0 +1,157 @@ +/* This file is part of simcoon. + + simcoon is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + simcoon is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with simcoon. If not, see . + + */ + +///@file solver_sink.hpp +///@brief In-memory drivable solver core: numeric controls, results sinks and solver_run() +///@version 1.0 + +#pragma once + +#include +#include +#include +#include +#include +#include +#include + +namespace simcoon{ + +/** @addtogroup solver + * @{ + */ + +/** + * @brief Numeric controls of the global Newton-Raphson / adaptive time-stepping loop. + * + * Defaults mirror the historical defaults of solver() (see solver.hpp). + * Named solver_params because read.hpp already declares a solver_control() function. + */ +struct solver_params { + double div_tnew_dt = 0.5; ///< time-step division factor on non-convergence + double mul_tnew_dt = 2.; ///< time-step multiplication factor on fast convergence + int miniter = 10; ///< iteration count below which the step may grow + int maxiter = 100; ///< maximum Newton-Raphson iterations per increment + int inforce = 1; ///< 0: stop at Dn_mini, 1: enforce & carry residual, 2: enforce silently + double precision = 1.E-6; ///< convergence tolerance on the residual norm + double lambda = 10000.; ///< penalty stiffness for strain-controlled components + int tangent_mode = tangent_default; ///< tangent_* constants (parameter.hpp) +}; + +/** + * @brief Observer that receives the solver state at output points. + * + * solver_run() drives the cadence (solver_output frequency logic) and calls + * record() once per output point; implementations decide what to do with the + * converged state carried by the phase_characteristics. + */ +class solver_results_sink { +public: + virtual ~solver_results_sink() = default; + /// Called once at the very start of the simulation (start == true), after the + /// first UMAT call, before the first increment. + virtual void init(phase_characteristics &rve) { (void)rve; } + /// Called at each output point. kblock/kcycle/kstep/kinc follow the same + /// convention as phase_characteristics::output (0-based, written +1). + virtual void record(phase_characteristics &rve, const solver_output &so, + const int &kblock, const int &kcycle, const int &kstep, + const int &kinc, const double &Time) = 0; +}; + +/** + * @brief File sink reproducing the historical solver() output behaviour: + * define_output() + phase_characteristics::output() on "global" and "local" streams. + */ +class solver_file_sink : public solver_results_sink { +public: + solver_file_sink(const std::string &path_results, const std::string &outputfile_global, + const std::string &outputfile_local); + void init(phase_characteristics &rve) override; + void record(phase_characteristics &rve, const solver_output &so, + const int &kblock, const int &kcycle, const int &kstep, + const int &kinc, const double &Time) override; +private: + std::string path_results; + std::string outputfile_global; + std::string outputfile_local; +}; + +/** + * @brief Memory sink capturing the canonical converged state per output point. + * + * Stores raw state (all stress/strain measures carried by state_variables) so + * consumers derive whatever output measure they need; Cauchy stress is formed + * as tau/det(F1), consistent with phase_characteristics::output (o_stress_type 4). + * Thermomechanical quantities (Wt, Q, r, dSdE/dSdT/drdE/drdT) are captured when + * the global state variables are of type state_variables_T (sv_type == 2). + */ +class solver_memory_sink : public solver_results_sink { +public: + bool record_tangent = true; ///< capture Lt (mechanical) or dSdE/dSdT/drdE/drdT (thermomechanical) + int sv_type = 0; ///< 1: mechanical, 2: thermomechanical (set by init()) + + std::vector blocks_i, cycles_i, steps_i, incs_i; ///< 0-based indices per record + std::vector time; + std::vector Etot, etot, PKII, tau, sigma; ///< 6-component Voigt vectors + std::vector F1, R, DR; ///< 3x3 tensors + std::vector T, Q, r; ///< Q, r: thermomechanical only + std::vector Wm; ///< [Wm, Wm_r, Wm_ir, Wm_d] + std::vector Wt; ///< [Wt, Wt_r, Wt_ir], thermomechanical only + std::vector statev; + std::vector Lt; ///< 6x6, mechanical only + std::vector dSdE, dSdT, drdE, drdT; ///< thermomechanical only + + void init(phase_characteristics &rve) override; + void record(phase_characteristics &rve, const solver_output &so, + const int &kblock, const int &kcycle, const int &kstep, + const int &kinc, const double &Time) override; + /// number of records captured so far + unsigned int n_records() const { return static_cast(time.size()); } +}; + +/** + * @brief In-memory core of the solver: runs the block/cycle/step/increment loops + * on already-built loading blocks and streams results to a sink. + * + * This is the single numerical engine; solver() (solver.hpp) is its file-driven + * wrapper (read_path/read_output in, solver_file_sink out). + * + * @param blocks Loading blocks with fully-defined steps (mutated during the run: + * step generation and the inforce residual carry-over write into the steps) + * @param T_init Initial temperature + * @param so Output configuration (only the per-block frequency logic and the + * statev/tangent selection are used by sinks) + * @param umat_name Constitutive model name (5 characters) + * @param props Material properties + * @param nstatev Number of internal state variables + * @param psi_rve,theta_rve,phi_rve Euler angles of the RVE orientation (rad) + * @param solver_type 0: classic Newton-Raphson, 1: RNL (control_type 1 only) + * @param corate_type Objective rate choice (see corate_kinematics, objective_rates.hpp) + * @param ctrl Numeric solver controls + * @param sink Results observer + * @return 0 on completion, 1 on early abort (invalid solver type / unrecognized + * thermal BC / non-convergence with inforce == 0) + */ +int solver_run(std::vector &blocks, const double &T_init, const solver_output &so, + const std::string &umat_name, const arma::vec &props, const unsigned int &nstatev, + const double &psi_rve, const double &theta_rve, const double &phi_rve, + const int &solver_type, const int &corate_type, + const solver_params &ctrl, solver_results_sink &sink); + +/** @} */ // end of solver group + +} //namespace simcoon diff --git a/include/simcoon/Simulation/Solver/step.hpp b/include/simcoon/Simulation/Solver/step.hpp index beaa783c7..a3feada3a 100755 --- a/include/simcoon/Simulation/Solver/step.hpp +++ b/include/simcoon/Simulation/Solver/step.hpp @@ -68,8 +68,20 @@ class step arma::vec times; ///< Vector of time values for the step double BC_Time; ///< Boundary condition application time - + std::string file; ///< Input/output file for loading path values + + /** + * @brief In-memory tabular loading data (alternative to \ref file for mode 3). + * + * When non-empty, mode-3 generation reads increments from this matrix instead + * of opening \ref file. One row per increment; columns follow the exact layout + * of a mode-3 path file without the leading label token: + * [time, (T if cBC_T==0, or Q if cBC_T==1 for thermomechanical steps), + * controlled mechanical components with cBC_meca(k) < 2, in internal Voigt + * order (6 components for control_type <= 4, 9 for 5/6)]. + */ + arma::mat tab_data; /** * @brief Default constructor. @@ -102,7 +114,21 @@ class step * @brief Generate the time discretization for the step. */ virtual void generate(); - + + /** + * @brief Number of increments of a tabular (mode 3) step: tab_data rows if set, + * otherwise the number of non-empty lines of \ref file. + */ + int mode3_ninc() const; + + /** + * @brief Full tabular (mode 3) loading table, one row per increment. + * Returns \ref tab_data (validated against size_BC) when set, otherwise parses + * \ref file, skipping the leading label token of each line. + * @param size_BC Expected number of columns (see \ref tab_data for the layout) + */ + arma::mat mode3_rows(const unsigned int &size_BC) const; + /** * @brief Compute the next increment parameters. * @param tnew_dt Suggested new time increment ratio (output) diff --git a/include/simcoon/parameter.hpp b/include/simcoon/parameter.hpp index ccfaec909..e118cdf54 100755 --- a/include/simcoon/parameter.hpp +++ b/include/simcoon/parameter.hpp @@ -57,6 +57,14 @@ constexpr int miniter_umat = 10; constexpr int maxiter_umat = 100; constexpr double precision_umat = 1E-9; +// Tangent-operator mode (state_variables::tangent_mode, solver(), every UMAT). +// Renumbered for 2.0 — pre-2.0 values: 0 = continuum, 1 = algorithmic. +constexpr int tangent_none = 0; ///< skip tangent assembly, Lt = elastic L (explicit integration) +constexpr int tangent_continuum = 1; ///< continuum operator (pre-2.0 mode 0) +constexpr int tangent_algorithmic = 2; ///< Simo-Hughes consistent operator (pre-2.0 mode 1) +constexpr int tangent_closest_point = 3; ///< closest-point-projection exact operator (reserved) +constexpr int tangent_default = tangent_algorithmic; + constexpr double div_tnew_dt_umat = 0.2; constexpr double mul_tnew_dt_umat = 2.0; constexpr int maxiter_micro = 100; diff --git a/python-setup/simcoon/__init__.py b/python-setup/simcoon/__init__.py index 0fbba91d2..3deb046da 100755 --- a/python-setup/simcoon/__init__.py +++ b/python-setup/simcoon/__init__.py @@ -9,6 +9,12 @@ from simcoon._core import * from simcoon import modular +# In-memory solver API (2.0): the subpackage replaces the pre-2.0 file-driven +# `solver` function from the star-import above (still reachable as +# simcoon._core.solver; parse legacy files with simcoon.solver.from_file). +# `import` (not `from ... import`) is required: the latter would return the +# existing function attribute without importing the subpackage. +import simcoon.solver from simcoon.__version__ import __version__ from simcoon.rotation import Rotation # override _CppRotation from star-import from simcoon.tensor import Tensor2, Tensor4, dyadic, auto_dyadic, sym_dyadic, auto_sym_dyadic, double_contract # unified tensor classes diff --git a/python-setup/simcoon/block.py b/python-setup/simcoon/block.py deleted file mode 100644 index 22fa19ae9..000000000 --- a/python-setup/simcoon/block.py +++ /dev/null @@ -1,88 +0,0 @@ -from typing import List, Optional - - -class Step: - def __init__(self, control_type: int): - self.control_type = control_type - - def __str__(self): - return f"Step with control type {self.control_type}" - - -class StepMeca(Step): - def __init__(self, control_type: int): - super().__init__(control_type) - - def __str__(self): - return f"Mechanical Step with control type {self.control_type}" - - -class StepThermoMeca(Step): - def __init__(self, control_type: int): - super().__init__(control_type) - - def __str__(self): - return f"Thermo-Mechanical Step with control type {self.control_type}" - - -class Block: - def __init__( - self, - number: int = 0, - nstep: int = 0, - ncycle: int = 0, - type_: str = "mechanical", - control_type: str = "linear", - steps: Optional[List[Step]] = None, - ): - assert nstep >= 0 and ncycle >= 0, "Steps and cycles must be non-negative." - self.number = number - self.nstep = nstep - self.ncycle = ncycle - self.type = type_ - self.control_type = control_type - self.steps = steps if steps is not None else [] - - def generate(self): - assert ( - self.number >= 0 - and self.nstep > 0 - and self.ncycle > 0 - and self.type in ["mechanical", "thermo-mechanical", "thermal"] - and self.control_type in ["linear", "sinusoidal"] - ), "Invalid block parameters." - - if self.type == "mechanical": - self.steps = [StepMeca(self.control_type) for _ in range(self.nstep)] - elif self.type == "thermo-mechanical": - self.steps = [StepThermoMeca(self.control_type) for _ in range(self.nstep)] - else: - print( - f"Please provide a consistent loading type for the block {self.number}" - ) - - def __str__(self): - output = [ - f"Display info on the block {self.number}", - f"Number of steps: {self.nstep}", - f"Number of cycles: {self.ncycle}", - f"Type of block: {self.type}", - f"Control type of block: {self.control_type}", - ] - - for step in self.steps: - output.append(str(step)) - - return "\n".join(output) - - def __eq__(self, other): - if not isinstance(other, Block): - return False - return ( - self.number == other.number - and self.nstep == other.nstep - and self.ncycle == other.ncycle - and self.type == other.type - and self.control_type == other.control_type - and self.steps == other.steps - ) diff --git a/python-setup/simcoon/modular.py b/python-setup/simcoon/modular.py index 247e50daa..1f35fdb45 100644 --- a/python-setup/simcoon/modular.py +++ b/python-setup/simcoon/modular.py @@ -1082,6 +1082,18 @@ class ModularMaterial: ... )), ... ] ... ) + + Notes + ----- + Under finite strain (NLGEOM control types 2-6), the composition becomes a + Hencky hyperelastic law: the solver kinematics feed the model the + logarithmic strain, so the elasticity block acts as a stored-energy + function of ln V and the mechanisms ride additively on that measure. + This holds only when the accumulated corotational strain is exactly the + logarithmic strain, so the solver requires ``corate_type=3`` (log_R) for + ``"MODUL"`` under NLGEOM and raises a ``RuntimeError`` for any other + corate (which would degrade the model to a non-integrable hypoelastic + rate with spurious dissipation in closed cycles). """ def __init__( diff --git a/python-setup/simcoon/solver.py b/python-setup/simcoon/solver.py deleted file mode 100644 index 0c40c9174..000000000 --- a/python-setup/simcoon/solver.py +++ /dev/null @@ -1,33 +0,0 @@ -from typing import List, Optional - -class Problem(ProblemBase): - """Base class to define a problem that generate a linear system and to solve - the linear system with some defined boundary conditions. - - The linear problem is written under the form: - A*X = B+D - where: - * A is a square matrix build with the associated assembly object calling - assembly.get_global_matrix() - * X is the column vector containing the degrees of freedom (solution after solving) - * B is a column vector used to set Neumann boundary conditions - * D is a column vector build with the associated assembly object calling - assembly.get_global_vector() - - Parameters - ---------- - A: scipy sparse matrix - Matrix that define the discretized linear system to solve. - B: np.ndarray or 0 - if 0, B is initialized to a zeros array with de adequat shape. - D: np.ndarray or 0 - if 0, D is ignored. - mesh: fedoo Mesh - mesh associated to the problem. - name: str (default = "MainProblem") - name of the problem. - space: ModelingSpace(Optional) - ModelingSpace on which the problem is defined. - name: str - name of the problem. - """ \ No newline at end of file diff --git a/python-setup/simcoon/solver/__init__.py b/python-setup/simcoon/solver/__init__.py new file mode 100644 index 000000000..3db11025a --- /dev/null +++ b/python-setup/simcoon/solver/__init__.py @@ -0,0 +1,57 @@ +"""In-memory material-point solver API. + +Example +------- +>>> from simcoon import solver +>>> import numpy as np +>>> step = solver.StepMeca(control=['strain'] + ['stress']*5, +... value=np.array([0.01, 0, 0, 0, 0, 0]), ninc=100) +>>> res = solver.solve(step, "ELISO", [70000., 0.3, 1.E-5], 1) +>>> res["Stress"][0] # sigma_11 history, fedoo-style (6, N) layout + +Legacy text files (path.txt / material.dat) are parsed into loading objects +with :func:`from_file` and :func:`material_from_file`: + +>>> blocks, T_init = solver.from_file("data", "path.txt") +>>> res = solver.solve(blocks, T_init=T_init, +... **solver.material_from_file("data", "material.dat")) + +(The pre-2.0 file-driven runner remains available as the low-level binding +``simcoon._core.solver`` -- it reads/writes files and returns nothing.) +""" + +from .maps import ( + BLOCK_TYPES, + CONTROL_TYPES, + CORATE_TYPES, + STEP_MODES, + TANGENT_MODES, + THERMAL_CONTROL, + tangent_algorithmic, + tangent_closest_point, + tangent_continuum, + tangent_default, + tangent_none, +) +from .blocks import Block, StepMeca, StepThermomeca +from .results import SolverResults +from .core import solve +from .files import from_file, material_from_file +from .io import ( + load_material_json, + load_path_json, + load_simulation_json, + save_material_json, + save_path_json, +) + +__all__ = [ + "Block", "StepMeca", "StepThermomeca", "SolverResults", "solve", + "from_file", "material_from_file", + "BLOCK_TYPES", "CONTROL_TYPES", "CORATE_TYPES", "STEP_MODES", + "TANGENT_MODES", "THERMAL_CONTROL", + "tangent_none", "tangent_continuum", "tangent_algorithmic", + "tangent_closest_point", "tangent_default", + "load_material_json", "load_path_json", "load_simulation_json", + "save_material_json", "save_path_json", +] diff --git a/python-setup/simcoon/solver/blocks.py b/python-setup/simcoon/solver/blocks.py new file mode 100644 index 000000000..1f5a82882 --- /dev/null +++ b/python-setup/simcoon/solver/blocks.py @@ -0,0 +1,272 @@ +"""Loading definition (blocks and steps) for the in-memory simcoon solver. + +Components of strain/stress vectors follow the simcoon Voigt convention +[11, 22, 33, 12, 13, 23] (engineering shear strains). For the kinematic +control types ('F', 'gradU'), the 9 components are the row-major entries of +the deformation gradient (resp. displacement gradient) tensor. +""" + +from __future__ import annotations + +from dataclasses import dataclass, field +from typing import List, Optional, Sequence, Union + +import numpy as np + +from .maps import BLOCK_TYPES, CONTROL_TYPES, STEP_MODES, THERMAL_CONTROL, as_code + +#: Aliases accepted in the per-component `control` list +_MECA_FLAGS = { + "strain": 0, "E": 0, "e": 0, + "stress": 1, "S": 1, "s": 1, + "zero": 2, "0": 2, + "F": 0, "L": 0, # kinematic components (control types 'F' / 'gradU') +} + + +def _control_flags(control, size_meca): + """Convert the per-component control specification to cBC_meca integer flags.""" + if isinstance(control, str): + control = [control] * size_meca + flags = [as_code(c, _MECA_FLAGS, "control flag") for c in control] + if len(flags) != size_meca: + raise ValueError( + f"control must have {size_meca} components; got {len(flags)}" + ) + return flags + + +@dataclass +class StepMeca: + """A mechanical loading step. + + Parameters + ---------- + control : str or sequence of str + Per-component control: 'strain' (kinematic) or 'stress' (static); + 'zero' holds a component at zero for tabular steps. A single string + applies to all components. + value : array-like, optional + Absolute target values at the end of the step, per component, in + Voigt order (6 components; 9 row-major for control types 'F'/'gradU'). + Not used for tabular steps. + time : float + Duration of the step. + ninc : int + Number of increments (linear and sinusoidal modes). + mode : str or int + 'linear', 'sinusoidal' or 'tabular'. + Dn_init, Dn_mini : float, optional + Initial and minimal sub-increment fraction of one increment + (adaptive stepping). Defaults: 1.0 and 1e-3. + BC_w : array-like, optional + 3x3 spin matrix (rotation rate) applied during the step, for the + mixed finite-strain control types ('green_lagrange', 'logarithmic', + 'biot'). + T_final : float, optional + Target temperature at the end of the step (temperature ramp applied + to the mechanical UMAT). None (default) holds the temperature. + tabular : ndarray, optional + Mode-3 table, one row per increment. Columns: [time, (thermal column, + see tabular_T and StepThermomeca.thermal_control), controlled + components in Voigt order]. Required when mode='tabular'. The time + column is ABSOLUTE simulation time and must continue from the previous + step's end time (a table restarting at 0 after an earlier step is + rejected: it would produce negative time increments). Tabular steps + cannot be cycled (Block.ncycle must be 1). + tabular_T : bool + Whether the tabular table contains a temperature column (after the + time column). Default False (constant temperature). For + thermomechanical heat-flux steps the thermal column is the flux Q and + is always required, regardless of this flag. + """ + + control: Union[str, Sequence[Union[str, int]]] = "strain" + value: Optional[Sequence[float]] = None + time: float = 1.0 + ninc: int = 100 + mode: Union[str, int] = "linear" + Dn_init: float = 1.0 + Dn_mini: float = 1.0e-3 + BC_w: Optional[Sequence[Sequence[float]]] = None + T_final: Optional[float] = None + tabular: Optional[np.ndarray] = None + tabular_T: bool = False + + _thermomechanical = False + + def to_dict(self, control_type: int, T_hold: float) -> dict: + """Marshal to the dict consumed by simcoon._core.solver_run. + + Parameters + ---------- + control_type : int + The control type of the enclosing block (drives the 6/9 sizing). + T_hold : float + Temperature to hold when T_final is None (running block value). + """ + size_meca = 9 if control_type >= 5 else 6 + mode = as_code(self.mode, STEP_MODES, "step mode") + d = { + "mode": mode, + "Dn_init": float(self.Dn_init), + "Dn_mini": float(self.Dn_mini), + "cBC_meca": _control_flags(self.control, size_meca), + } + if mode < 3: + if self.ninc < 1: + raise ValueError("ninc must be >= 1") + d["Dn_inc"] = 1.0 / int(self.ninc) + d["time"] = float(self.time) + if self.value is None: + raise ValueError("value is required for linear/sinusoidal steps") + value = np.asarray(self.value, dtype=float).ravel() + if value.size != size_meca: + raise ValueError( + f"value must have {size_meca} components for this control type; got {value.size}" + ) + d["BC_meca"] = value + else: + if self.tabular is None: + raise ValueError("tabular steps require the `tabular` table") + d["tab_data"] = np.ascontiguousarray(self.tabular, dtype=float) + if self.BC_w is not None: + d["BC_w"] = np.asarray(self.BC_w, dtype=float).reshape(3, 3) + self._thermal_to_dict(d, mode, T_hold) + return d + + def _thermal_to_dict(self, d: dict, mode: int, T_hold: float) -> None: + if mode == 3: + d["cBC_T"] = 0 if self.tabular_T else 2 + d["BC_T"] = 0.0 + else: + d["cBC_T"] = 0 + d["BC_T"] = float(self.T_final) if self.T_final is not None else float(T_hold) + + def T_end(self, T_hold: float) -> float: + """Temperature at the end of the step (for chaining T_final=None steps).""" + if self.tabular_T and self.tabular is not None: + return float(np.asarray(self.tabular)[-1, 1]) # T is the column after time + return float(self.T_final) if self.T_final is not None else float(T_hold) + + +@dataclass +class StepThermomeca(StepMeca): + """A thermomechanical loading step (coupled heat equation). + + In addition to the mechanical control of StepMeca: + + Parameters + ---------- + thermal_control : str + 'temperature' (ramp to T_final), 'heat_flux' (prescribed flux Q) or + 'convection' (0D convection Q = -q_conv (T - T_init)). + Q : float + Prescribed heat flux (thermal_control='heat_flux'). + q_conv : float + Convection coefficient rho*c_p/tau (thermal_control='convection'). + """ + + thermal_control: str = "temperature" + Q: float = 0.0 + q_conv: float = 0.0 + + _thermomechanical = True + + def _thermal_to_dict(self, d: dict, mode: int, T_hold: float) -> None: + cBC_T = as_code(self.thermal_control, THERMAL_CONTROL, "thermal control") + if mode == 3: + if cBC_T == 0: # temperature: T column when tabular_T, else constant + d["cBC_T"] = 0 if self.tabular_T else 2 + d["BC_T"] = 0.0 + elif cBC_T == 1: # heat flux: the table carries the Q column after time + d["cBC_T"] = 1 + d["BC_T"] = 0.0 + else: # convection: no thermal column, q_conv as coefficient + d["cBC_T"] = 3 + d["BC_T"] = float(self.q_conv) + return + d["cBC_T"] = cBC_T + if cBC_T == 0: + d["BC_T"] = float(self.T_final) if self.T_final is not None else float(T_hold) + elif cBC_T == 1: + d["BC_T"] = float(self.Q) + else: # convection + d["BC_T"] = float(self.q_conv) + + def T_end(self, T_hold: float) -> float: + """Temperature at the end of the step; flux/convection steps leave the + chained hold temperature unchanged (the reached T is solution-dependent).""" + if self.thermal_control != "temperature": + return T_hold + return super().T_end(T_hold) + + +@dataclass +class Block: + """A loading block: a sequence of steps repeated ncycle times. + + Parameters + ---------- + steps : list of StepMeca / StepThermomeca + The loading steps. If any step is a StepThermomeca, the block is + thermomechanical (coupled heat equation) and all steps must be. + control_type : str or int + Loading control (see CONTROL_TYPES). Thermomechanical blocks only + support 'small_strain'. + ncycle : int + Number of repetitions of the step sequence. + """ + + steps: List[StepMeca] = field(default_factory=list) + control_type: Union[str, int] = "small_strain" + ncycle: int = 1 + + def add_step(self, step: StepMeca) -> "Block": + self.steps.append(step) + return self + + @property + def type(self) -> int: + thermo = [s._thermomechanical for s in self.steps] + if any(thermo) and not all(thermo): + raise ValueError( + "a block cannot mix StepMeca and StepThermomeca steps" + ) + return BLOCK_TYPES["thermomechanical"] if any(thermo) else BLOCK_TYPES["mechanical"] + + def to_dict(self, T_hold: float) -> dict: + """Marshal to the dict consumed by simcoon._core.solver_run.""" + if not self.steps: + raise ValueError("a block requires at least one step") + control_type = as_code(self.control_type, CONTROL_TYPES, "control type") + btype = self.type + if btype == 2 and control_type != 1: + raise ValueError( + "thermomechanical blocks only support control_type 'small_strain'" + ) + steps = [] + T_run = T_hold + for s in self.steps: + step_dict = s.to_dict(control_type, T_run) + if self.ncycle > 1 and step_dict["mode"] == 3: + # the time column of a table is absolute, so repeating the step is + # ill-defined (the engine rejects it too); unroll cycles explicitly + raise ValueError( + "tabular steps cannot be cycled (ncycle > 1): the time column is " + "absolute; unroll the cycles into explicit steps" + ) + steps.append(step_dict) + T_run = s.T_end(T_run) + return { + "type": btype, + "control_type": control_type, + "ncycle": int(self.ncycle), + "steps": steps, + } + + def T_end(self, T_hold: float) -> float: + T_run = T_hold + for s in self.steps: + T_run = s.T_end(T_run) + return T_run diff --git a/python-setup/simcoon/solver/core.py b/python-setup/simcoon/solver/core.py new file mode 100644 index 000000000..650051089 --- /dev/null +++ b/python-setup/simcoon/solver/core.py @@ -0,0 +1,102 @@ +"""solve(): drive the C++ material-point solver in memory.""" + +from __future__ import annotations + +from typing import List, Optional, Sequence, Union + +import numpy as np + +import simcoon._core as _core + +from .blocks import Block, StepMeca +from .maps import CORATE_TYPES, TANGENT_MODES, as_code, tangent_default +from .results import SolverResults + + +def solve( + blocks: Union[Block, StepMeca, Sequence[Union[Block, StepMeca]]], + umat_name: str, + props: Sequence[float], + nstatev: int, + T_init: float = 293.15, + corate: Union[str, int] = "logarithmic", + tangent_mode: Union[str, int] = tangent_default, + solver_type: int = 0, + orientation: Sequence[float] = (0.0, 0.0, 0.0), + record_tangent: bool = True, + raise_on_abort: bool = True, + **params, +) -> SolverResults: + """Solve a homogeneous loading path with the C++ simcoon solver, in memory. + + Parameters + ---------- + blocks : Block, StepMeca or sequence of them + The loading path. Bare steps are wrapped in a small-strain Block. + umat_name : str + Constitutive model name (5 characters, e.g. 'ELISO', 'EPICP', 'MODUL'). + props : array-like + Material properties. + nstatev : int + Number of internal state variables. + T_init : float + Initial temperature. + corate : str or int + Objective rate for the finite-strain control types (see CORATE_TYPES). + tangent_mode : str or int + Tangent operator mode: 'none', 'continuum', 'algorithmic' (default) + or 'closest_point' (reserved). + solver_type : int + 0 = classic Newton-Raphson (default), 1 = RNL (control_type 1 only). + orientation : sequence of 3 floats + Euler angles (psi, theta, phi) of the material orientation (rad). + record_tangent : bool + Capture the tangent operator history ('TangentMatrix' or the coupled + thermomechanical tangents). + raise_on_abort : bool + Raise a RuntimeError when the solver aborts early (status != 0) + instead of returning the partial history. + **params + Numeric solver controls forwarded to the C++ loop: div_tnew_dt, + mul_tnew_dt, miniter, maxiter, inforce, precision, lambda_solver + (penalty stiffness of the strain-driven components). + + Returns + ------- + SolverResults + History of the converged increments (fedoo-style data layout). + """ + if isinstance(blocks, (Block, StepMeca)): + blocks = [blocks] + blocks = [b if isinstance(b, Block) else Block(steps=[b]) for b in blocks] + + corate_code = as_code(corate, CORATE_TYPES, "corate") + run_params = dict(params) + run_params["tangent_mode"] = as_code(tangent_mode, TANGENT_MODES, "tangent mode") + + blocks_py = [] + T_run = float(T_init) + for b in blocks: + blocks_py.append(b.to_dict(T_run)) + T_run = b.T_end(T_run) + + psi, theta, phi = (float(x) for x in orientation) + raw = _core.solver_run( + blocks_py, + float(T_init), + umat_name, + np.asarray(props, dtype=float).ravel(), + int(nstatev), + psi, theta, phi, + int(solver_type), + corate_code, + run_params, + bool(record_tangent), + ) + res = SolverResults(raw) + if raise_on_abort and res.status != 0: + raise RuntimeError( + f"the solver aborted early after {len(res)} recorded increments " + "(status=1); pass raise_on_abort=False to inspect the partial history" + ) + return res diff --git a/python-setup/simcoon/solver/files.py b/python-setup/simcoon/solver/files.py new file mode 100644 index 000000000..36862fd57 --- /dev/null +++ b/python-setup/simcoon/solver/files.py @@ -0,0 +1,233 @@ +"""Parsers for the legacy simcoon text formats (path.txt, material.dat). + +`from_file` turns a legacy loading path file into Block/Step objects for +:func:`~simcoon.solver.solve`; `material_from_file` reads a legacy material +definition into solve() keyword arguments. Both consume the files token by +token, mirroring the historical C++ readers (read_path / read_matprops in +src/Simulation/Solver/read.cpp), so any file the file-driven solver accepted +parses identically. +""" + +from __future__ import annotations + +import os +from typing import List, Tuple + +import numpy as np + +from .blocks import Block, StepMeca, StepThermomeca + +#: path-file component order (11, 12, 22, 13, 23, 33) -> Voigt index [11,22,33,12,13,23] +_FILE_TO_VOIGT = [0, 3, 1, 4, 5, 2] + +_MECA_FLAG_NAMES = {"E": "strain", "S": "stress", "0": "zero", "L": "strain", "U": "strain", "F": "strain"} + + +class _Tokens: + """Sequential token consumer replicating the C++ `stream >> value` semantics.""" + + def __init__(self, text: str): + self._toks = text.split() + self._i = 0 + + def s(self) -> str: + tok = self._toks[self._i] + self._i += 1 + return tok + + def f(self) -> float: + return float(self.s()) + + def i(self) -> int: + return int(self.s()) + + def skip(self, n: int = 1) -> None: + self._i += n + + +def _read_meca_targets(tk: _Tokens, control_type: int): + """Read the per-component flags+targets of a linear/sinusoidal step.""" + if control_type <= 4: + control = [None] * 6 + value = np.zeros(6) + for k in range(6): + flag = tk.s() + control[_FILE_TO_VOIGT[k]] = _MECA_FLAG_NAMES[flag] + value[_FILE_TO_VOIGT[k]] = tk.f() + return control, value + # control types 5/6: 9 raw kinematic components, no flags + return ["strain"] * 9, np.array([tk.f() for _ in range(9)]) + + +def _read_meca_flags(tk: _Tokens, control_type: int): + """Read the per-component flags of a tabular step (no targets).""" + if control_type <= 4: + control = [None] * 6 + for k in range(6): + control[_FILE_TO_VOIGT[k]] = _MECA_FLAG_NAMES[tk.s()] + return control + return [_MECA_FLAG_NAMES[tk.s()] for _ in range(9)] + + +def _read_rotation(tk: _Tokens): + tk.skip() # rotation label + return np.array([[tk.f() for _ in range(3)] for _ in range(3)]) + + +def _load_tab_file(path_data: str, filename: str) -> np.ndarray: + """Load a mode-3 increment file: one row per increment, leading label stripped.""" + rows = [] + with open(os.path.join(path_data, filename)) as f: + for line in f: + toks = line.split() + if toks: + rows.append([float(x) for x in toks[1:]]) + return np.array(rows) + + +def _parse_meca_step(tk: _Tokens, control_type: int, path_data: str) -> StepMeca: + tk.skip() # '#Mode' + mode = tk.i() + if mode in (1, 2): + tk.skip(); Dn_init = tk.f() + tk.skip(); Dn_mini = tk.f() + tk.skip(); Dn_inc = tk.f() + tk.skip(); time = tk.f() + tk.skip() # mechanical-state label + control, value = _read_meca_targets(tk, control_type) + BC_w = _read_rotation(tk) if 2 <= control_type <= 4 else None + tk.skip() # thermal label + if tk.s() != "T": + raise ValueError("mechanical steps only accept a temperature (T) condition") + T_final = tk.f() + return StepMeca(control=control, value=value, time=time, + ninc=round(1.0 / Dn_inc), mode=mode, + Dn_init=Dn_init, Dn_mini=Dn_mini, BC_w=BC_w, T_final=T_final) + if mode == 3: + tk.skip(); tabfile = tk.s() + tk.skip(); Dn_init = tk.f() + tk.skip(); Dn_mini = tk.f() + tk.skip() # mechanical-state label + control = _read_meca_flags(tk, control_type) + tk.skip() # thermal label + thermal = tk.s() # 'T' = temperature column in the table, '0' = constant + return StepMeca(control=control, mode=3, Dn_init=Dn_init, Dn_mini=Dn_mini, + tabular=_load_tab_file(path_data, tabfile), + tabular_T=(thermal == "T")) + raise ValueError(f"unknown step mode {mode} (1: linear, 2: sinusoidal, 3: tabular)") + + +def _parse_thermomeca_step(tk: _Tokens, control_type: int, path_data: str) -> StepThermomeca: + tk.skip() # '#Mode' + mode = tk.i() + if mode in (1, 2): + tk.skip(); Dn_init = tk.f() + tk.skip(); Dn_mini = tk.f() + tk.skip(); Dn_inc = tk.f() + tk.skip(); time = tk.f() + tk.skip() # mechanical-state label + control, value = _read_meca_targets(tk, control_type) + BC_w = _read_rotation(tk) if 2 <= control_type <= 3 else None + tk.skip() # thermal label + thermal = tk.s() + thermal_value = tk.f() + kwargs = dict(control=control, value=value, time=time, + ninc=round(1.0 / Dn_inc), mode=mode, + Dn_init=Dn_init, Dn_mini=Dn_mini, BC_w=BC_w) + if thermal == "T": + return StepThermomeca(T_final=thermal_value, **kwargs) + if thermal == "Q": + return StepThermomeca(thermal_control="heat_flux", Q=thermal_value, **kwargs) + if thermal == "C": + return StepThermomeca(thermal_control="convection", q_conv=thermal_value, **kwargs) + raise ValueError(f"unknown thermal condition '{thermal}' (T, Q or C)") + if mode == 3: + tk.skip(); tabfile = tk.s() + tk.skip(); Dn_init = tk.f() + tk.skip(); Dn_mini = tk.f() + tk.skip() # mechanical-state label + control = _read_meca_flags(tk, control_type) + tk.skip() # thermal label + thermal = tk.s() # 'T'/'Q' column in the table, '0' constant, 'C' convection + kwargs = dict(control=control, mode=3, Dn_init=Dn_init, Dn_mini=Dn_mini, + tabular=_load_tab_file(path_data, tabfile)) + if thermal == "T": + return StepThermomeca(tabular_T=True, **kwargs) + if thermal == "0": + return StepThermomeca(**kwargs) + if thermal == "Q": + return StepThermomeca(thermal_control="heat_flux", **kwargs) + if thermal == "C": + return StepThermomeca(thermal_control="convection", q_conv=tk.f(), **kwargs) + raise ValueError(f"unknown tabular thermal condition '{thermal}' (T, Q, C or 0)") + raise ValueError(f"unknown step mode {mode} (1: linear, 2: sinusoidal, 3: tabular)") + + +def from_file(path_data: str = "data", pathfile: str = "path.txt") -> Tuple[List[Block], float]: + """Parse a legacy loading path file into Block objects. + + Parameters + ---------- + path_data : str + Folder containing the path file (and any mode-3 increment files it + references). + pathfile : str + Name of the loading path file. + + Returns + ------- + blocks : list of Block + The loading path, ready for :func:`~simcoon.solver.solve`. + T_init : float + The initial temperature declared in the file. + """ + with open(os.path.join(path_data, pathfile)) as f: + tk = _Tokens(f.read()) + + tk.skip(); T_init = tk.f() + tk.skip(); nblocks = tk.i() + + blocks = [] + for _ in range(nblocks): + tk.skip(); number = tk.i() + tk.skip(); btype = tk.i() + tk.skip(); control_type = tk.i() + tk.skip(); ncycle = tk.i() + tk.skip(); nstep = tk.i() + if btype not in (1, 2): + raise ValueError(f"block {number}: unknown loading type {btype} (1: mechanical, 2: thermomechanical)") + parse_step = _parse_meca_step if btype == 1 else _parse_thermomeca_step + steps = [parse_step(tk, control_type, path_data) for _ in range(nstep)] + blocks.append(Block(steps=steps, control_type=control_type, ncycle=ncycle)) + return blocks, T_init + + +def material_from_file(path_data: str = "data", materialfile: str = "material.dat") -> dict: + """Parse a legacy material definition file into solve() keyword arguments. + + Returns + ------- + dict + {'umat_name', 'props', 'nstatev', 'orientation'} — mergeable into + :func:`~simcoon.solver.solve` like the JSON loader. + """ + with open(os.path.join(path_data, materialfile)) as f: + tk = _Tokens(f.read()) + + tk.skip(2); umat_name = tk.s() + tk.skip(); nprops = tk.i() + tk.skip(); nstatev = tk.i() + tk.skip(2); psi = tk.f() + tk.skip(); theta = tk.f() + tk.skip(); phi = tk.f() + tk.skip() # section label of the properties + props = np.zeros(nprops) + for i in range(nprops): + tk.skip() + props[i] = tk.f() + return { + "umat_name": umat_name, + "props": props, + "nstatev": int(nstatev), + "orientation": (psi, theta, phi), + } diff --git a/python-setup/simcoon/solver/io.py b/python-setup/simcoon/solver/io.py new file mode 100644 index 000000000..161ae90eb --- /dev/null +++ b/python-setup/simcoon/solver/io.py @@ -0,0 +1,128 @@ +"""JSON round-trip for materials and loading paths. + +Schema (after the feature/python_solver PR #63 design):: + + material.json: {"name": "ELISO", "props": [...], "nstatev": 1, + "orientation": {"psi": 0, "theta": 0, "phi": 0}} + + path.json: {"initial_temperature": 293.15, + "corate": "logarithmic", + "blocks": [{"type": "mechanical", "control_type": "small_strain", + "ncycle": 1, + "steps": [{"mode": "linear", "control": [...], + "value": [...], "time": 1.0, "ninc": 100, + ...}]}]} + +Tabular step tables are stored as nested lists. +""" + +from __future__ import annotations + +import json +from typing import List, Tuple + +import numpy as np + +from .blocks import Block, StepMeca, StepThermomeca + +_STEP_SCALARS = ("time", "ninc", "mode", "Dn_init", "Dn_mini", "T_final", + "thermal_control", "Q", "q_conv", "tabular_T") + + +def save_material_json(filename: str, umat_name: str, props, nstatev: int, + orientation=(0.0, 0.0, 0.0)) -> None: + """Write a material definition to JSON.""" + psi, theta, phi = (float(x) for x in orientation) + payload = { + "name": umat_name, + "props": np.asarray(props, dtype=float).ravel().tolist(), + "nstatev": int(nstatev), + "orientation": {"psi": psi, "theta": theta, "phi": phi}, + } + with open(filename, "w") as f: + json.dump(payload, f, indent=2) + + +def load_material_json(filename: str) -> dict: + """Read a material definition; returns kwargs for solve().""" + with open(filename) as f: + payload = json.load(f) + ori = payload.get("orientation", {}) + return { + "umat_name": payload["name"], + "props": np.asarray(payload["props"], dtype=float), + "nstatev": int(payload["nstatev"]), + "orientation": (ori.get("psi", 0.0), ori.get("theta", 0.0), ori.get("phi", 0.0)), + } + + +def _step_to_json(step: StepMeca) -> dict: + d = {"thermomechanical": step._thermomechanical} + for k in _STEP_SCALARS: + if hasattr(step, k): + d[k] = getattr(step, k) + d["control"] = list(step.control) if not isinstance(step.control, str) else step.control + if step.value is not None: + d["value"] = np.asarray(step.value, dtype=float).ravel().tolist() + if step.BC_w is not None: + d["BC_w"] = np.asarray(step.BC_w, dtype=float).reshape(3, 3).tolist() + if step.tabular is not None: + d["tabular"] = np.asarray(step.tabular, dtype=float).tolist() + return d + + +def _step_from_json(d: dict) -> StepMeca: + cls = StepThermomeca if d.get("thermomechanical", False) else StepMeca + kwargs = {k: d[k] for k in _STEP_SCALARS if k in d and hasattr(cls, k)} + kwargs["control"] = d["control"] + if "value" in d: + kwargs["value"] = np.asarray(d["value"], dtype=float) + if "BC_w" in d: + kwargs["BC_w"] = np.asarray(d["BC_w"], dtype=float) + if "tabular" in d: + kwargs["tabular"] = np.asarray(d["tabular"], dtype=float) + return cls(**kwargs) + + +def save_path_json(filename: str, blocks: List[Block], T_init: float = 293.15, + corate="logarithmic") -> None: + """Write a loading path (list of Blocks) to JSON.""" + if isinstance(blocks, Block): + blocks = [blocks] + payload = { + "initial_temperature": float(T_init), + "corate": corate, + "blocks": [ + { + "control_type": b.control_type, + "ncycle": int(b.ncycle), + "steps": [_step_to_json(s) for s in b.steps], + } + for b in blocks + ], + } + with open(filename, "w") as f: + json.dump(payload, f, indent=2) + + +def load_path_json(filename: str) -> Tuple[List[Block], float, object]: + """Read a loading path; returns (blocks, T_init, corate).""" + with open(filename) as f: + payload = json.load(f) + blocks = [ + Block( + steps=[_step_from_json(s) for s in bd["steps"]], + control_type=bd.get("control_type", "small_strain"), + ncycle=bd.get("ncycle", 1), + ) + for bd in payload["blocks"] + ] + return blocks, float(payload.get("initial_temperature", 293.15)), payload.get("corate", "logarithmic") + + +def load_simulation_json(material_file: str, path_file: str) -> dict: + """Merge a material and a path JSON into kwargs for solve().""" + kwargs = load_material_json(material_file) + blocks, T_init, corate = load_path_json(path_file) + kwargs.update({"blocks": blocks, "T_init": T_init, "corate": corate}) + return kwargs diff --git a/python-setup/simcoon/solver/maps.py b/python-setup/simcoon/solver/maps.py new file mode 100644 index 000000000..8a6406442 --- /dev/null +++ b/python-setup/simcoon/solver/maps.py @@ -0,0 +1,84 @@ +"""Name maps between the Python solver API and the C++ solver integer codes.""" + +from simcoon._core import ( # noqa: F401 (re-exported) + tangent_none, + tangent_continuum, + tangent_algorithmic, + tangent_closest_point, + tangent_default, +) + +#: Block types (block.type in the C++ solver) +BLOCK_TYPES = { + "mechanical": 1, + "thermomechanical": 2, +} + +#: Loading control of a block (control_type in the C++ solver) +CONTROL_TYPES = { + "small_strain": 1, # small-strain / Kirchhoff stress control + "green_lagrange": 2, # Green-Lagrange strain / PKII stress control + "logarithmic": 3, # logarithmic strain / Kirchhoff stress control + "biot": 4, # Biot strain (U - I) / Biot stress control + "F": 5, # full deformation gradient control + "gradU": 6, # displacement gradient control +} + +#: Objective (corotational) rate choice (corate_type in the C++ solver) +CORATE_TYPES = { + "jaumann": 0, + "green_naghdi": 1, + "logarithmic": 2, # XBM logarithmic rate + "logarithmic_R": 3, # log_R rate (A_R strain concentration) + "truesdell": 4, + "logarithmic_F": 5, # log_F rate (A_F strain concentration) +} + +#: Thermal boundary condition of a thermomechanical step (cBC_T in the C++ solver) +THERMAL_CONTROL = { + "temperature": 0, # prescribed temperature ramp + "heat_flux": 1, # prescribed heat flux Q + "convection": 3, # 0D convection: Q = -q_conv (T - T_init) +} + +#: Loading interpolation of a step (mode in the C++ solver) +STEP_MODES = { + "linear": 1, + "sinusoidal": 2, + "tabular": 3, +} + +#: Tangent operator modes (tangent_mode carried by the state variables) +TANGENT_MODES = { + "none": tangent_none, + "continuum": tangent_continuum, + "algorithmic": tangent_algorithmic, + "closest_point": tangent_closest_point, +} + + +def as_code(value, mapping, what): + """Convert a name or integer code to the integer code of `mapping`. + + Parameters + ---------- + value : str or int + Name (key of `mapping`) or already-valid integer code. + mapping : dict + One of the maps of this module. + what : str + Human-readable name of the parameter, for error messages. + """ + if isinstance(value, str): + try: + return mapping[value] + except KeyError: + raise ValueError( + f"unknown {what} '{value}'; valid names: {sorted(mapping)}" + ) from None + code = int(value) + if code not in mapping.values(): + raise ValueError( + f"unknown {what} code {code}; valid codes: {sorted(mapping.values())}" + ) + return code diff --git a/python-setup/simcoon/solver/results.py b/python-setup/simcoon/solver/results.py new file mode 100644 index 000000000..14f955b2b --- /dev/null +++ b/python-setup/simcoon/solver/results.py @@ -0,0 +1,147 @@ +"""Results container for the in-memory simcoon solver. + +The layout follows the fedoo DataSet conventions: data is accessed by name +(``res["Stress"]``), arrays are components-first (a stress history is a +``(6, N)`` array in Voigt order [11, 22, 33, 12, 13, 23], a deformation +gradient history is ``(3, 3, N)``), and scalar histories are ``(N,)``. +``fedoo.util.voigt_tensors.StressTensorList(res["Stress"])`` therefore works +directly on the returned arrays. +""" + +from __future__ import annotations + +from typing import Dict + +import numpy as np + + +class SolverResults: + """Dict-like access to the solver history. + + Attributes + ---------- + scalar_data : dict + Scalar histories, shape (N,): 'Time', 'Temp', 'Block', 'Cycle', + 'Step', 'Inc'; thermomechanical runs add 'Q' (heat flux) and 'r' + (heat source). + field_data : dict + Tensor histories, components-first: 'Stress' (Cauchy, (6, N)), + 'Kirchhoff', 'PKII', 'Strain' (Green-Lagrange), 'LogStrain', + 'Statev' ((nstatev, N)), 'Wm' ((4, N)), 'F', 'R', 'DR' ((3, 3, N)); + 'TangentMatrix' ((6, 6, N)) for mechanical runs; thermomechanical + runs add 'Wt' ((3, N)) and the coupled tangents 'dSdE' ((6, 6, N)), + 'dSdT' ((6, N)), 'drdE' ((6, N)), 'drdT' ((N,)). + status : int + 0 if the simulation ran to completion, 1 on early abort (the + recorded history is then partial). + """ + + def __init__(self, raw: Dict[str, np.ndarray]): + self.status = int(raw.get("status", 0)) + self.sv_type = int(raw.get("sv_type", 1)) + + n = raw["time"].shape[0] + self.scalar_data = { + "Time": raw["time"], + "Temp": raw["T"], + "Block": raw["block"], + "Cycle": raw["cycle"], + "Step": raw["step"], + "Inc": raw["inc"], + } + self.field_data = { + "Stress": raw["sigma"].T, + "Kirchhoff": raw["tau"].T, + "PKII": raw["PKII"].T, + "Strain": raw["Etot"].T, + "LogStrain": raw["etot"].T, + "Statev": raw["statev"].T, + "Wm": raw["Wm"].T, + "F": raw["F1"].reshape(n, 3, 3).transpose(1, 2, 0), + "R": raw["R"].reshape(n, 3, 3).transpose(1, 2, 0), + "DR": raw["DR"].reshape(n, 3, 3).transpose(1, 2, 0), + } + if "Lt" in raw: + self.field_data["TangentMatrix"] = raw["Lt"].reshape(n, 6, 6).transpose(1, 2, 0) + if self.sv_type == 2: + self.scalar_data["Q"] = raw["Q"] + self.scalar_data["r"] = raw["r"] + self.field_data["Wt"] = raw["Wt"].T + if "dSdE" in raw: + self.field_data["dSdE"] = raw["dSdE"].reshape(n, 6, 6).transpose(1, 2, 0) + self.field_data["dSdT"] = raw["dSdT"].T + self.field_data["drdE"] = raw["drdE"].T + self.scalar_data["drdT"] = raw["drdT"].ravel() + + # -- dict-like interface ------------------------------------------------- + def __getitem__(self, key: str) -> np.ndarray: + if key in self.field_data: + return self.field_data[key] + if key in self.scalar_data: + return self.scalar_data[key] + raise KeyError( + f"'{key}' not in results; available: {sorted(self.keys())}" + ) + + def __contains__(self, key: str) -> bool: + return key in self.field_data or key in self.scalar_data + + def keys(self): + return list(self.scalar_data) + list(self.field_data) + + def get_data(self, key: str) -> np.ndarray: + """fedoo-style accessor (alias of __getitem__).""" + return self[key] + + def __len__(self) -> int: + return self.scalar_data["Time"].shape[0] + + def __repr__(self) -> str: + kind = "thermomechanical" if self.sv_type == 2 else "mechanical" + return ( + f"SolverResults({kind}, {len(self)} increments, " + f"status={self.status}, fields={sorted(self.keys())})" + ) + + # -- persistence ---------------------------------------------------------- + def save(self, filename: str) -> None: + """Save all histories to a compressed npz archive.""" + payload = {"status": np.array(self.status), "sv_type": np.array(self.sv_type)} + for k, v in self.scalar_data.items(): + payload[f"scalar__{k}"] = v + for k, v in self.field_data.items(): + payload[f"field__{k}"] = v + np.savez_compressed(filename, **payload) + + @classmethod + def load(cls, filename: str) -> "SolverResults": + """Load a SolverResults previously written by save().""" + data = np.load(filename) + obj = cls.__new__(cls) + obj.status = int(data["status"]) + obj.sv_type = int(data["sv_type"]) + obj.scalar_data = {} + obj.field_data = {} + for k in data.files: + if k.startswith("scalar__"): + obj.scalar_data[k[len("scalar__"):]] = data[k] + elif k.startswith("field__"): + obj.field_data[k[len("field__"):]] = data[k] + return obj + + def to_dataframe(self): + """Flatten scalar and 6-component histories to a pandas DataFrame.""" + import pandas as pd + + cols = {} + for k, v in self.scalar_data.items(): + cols[k] = v + comp = ["11", "22", "33", "12", "13", "23"] + for k, v in self.field_data.items(): + if v.ndim == 2 and v.shape[0] == 6: + for c in range(6): + cols[f"{k}_{comp[c]}"] = v[c] + elif v.ndim == 2: + for c in range(v.shape[0]): + cols[f"{k}_{c}"] = v[c] + return pd.DataFrame(cols) diff --git a/simcoon-python-builder/CMakeLists.txt b/simcoon-python-builder/CMakeLists.txt index 70504aa73..0c5675975 100755 --- a/simcoon-python-builder/CMakeLists.txt +++ b/simcoon-python-builder/CMakeLists.txt @@ -50,6 +50,7 @@ pybind11_add_module(_core # Solver src/python_wrappers/Libraries/Solver/read.cpp src/python_wrappers/Libraries/Solver/solver.cpp + src/python_wrappers/Libraries/Solver/solver_run.cpp ) # Set RPATH based on build mode diff --git a/simcoon-python-builder/include/simcoon/python_wrappers/Libraries/Continuum_mechanics/umat.hpp b/simcoon-python-builder/include/simcoon/python_wrappers/Libraries/Continuum_mechanics/umat.hpp index 0cb6af9ef..bd4f540fa 100644 --- a/simcoon-python-builder/include/simcoon/python_wrappers/Libraries/Continuum_mechanics/umat.hpp +++ b/simcoon-python-builder/include/simcoon/python_wrappers/Libraries/Continuum_mechanics/umat.hpp @@ -7,4 +7,5 @@ using namespace std; namespace simpy { py::tuple launch_umat(const std::string &umat_name_py, const py::array_t &etot_py, const py::array_t &Detot_py, const py::array_t &F0_py, const py::array_t &F1_py, const py::array_t &sigma_py, const py::array_t &DR_py, const py::array_t &props_py, const py::array_t &statev_py, const float Time, const float DTime, const py::array_t &Wm_py, const std::optional> &T_py, const int &ndi, const unsigned int &n_threads, const int &tangent_mode); + py::tuple launch_umat_T(const std::string &umat_name_py, const py::array_t &etot_py, const py::array_t &Detot_py, const py::array_t &sigma_py, const py::array_t &DR_py, const py::array_t &props_py, const py::array_t &statev_py, const float Time, const float DTime, const py::array_t &Wm_py, const py::array_t &Wt_py, const py::array_t &T_py, const py::array_t &DT_py, const int &ndi, const unsigned int &n_threads, const int &tangent_mode); } diff --git a/simcoon-python-builder/include/simcoon/python_wrappers/Libraries/Solver/solver_run.hpp b/simcoon-python-builder/include/simcoon/python_wrappers/Libraries/Solver/solver_run.hpp new file mode 100644 index 000000000..fd5b7156e --- /dev/null +++ b/simcoon-python-builder/include/simcoon/python_wrappers/Libraries/Solver/solver_run.hpp @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include + +namespace py = pybind11; + +namespace simpy { + +//In-memory solver: takes loading blocks as a list of dicts, returns results as a dict of numpy arrays +py::dict solver_run(const py::list &blocks_py, const double &T_init, + const std::string &umat_name, const py::array_t &props_py, + const int &nstatev, const double &psi_rve, const double &theta_rve, const double &phi_rve, + const int &solver_type, const int &corate_type, + const py::dict ¶ms_py, const bool &record_tangent); + +} //namespace simpy diff --git a/simcoon-python-builder/src/python_wrappers/Libraries/Continuum_mechanics/umat.cpp b/simcoon-python-builder/src/python_wrappers/Libraries/Continuum_mechanics/umat.cpp index c8c0328f3..27132c095 100644 --- a/simcoon-python-builder/src/python_wrappers/Libraries/Continuum_mechanics/umat.cpp +++ b/simcoon-python-builder/src/python_wrappers/Libraries/Continuum_mechanics/umat.cpp @@ -12,18 +12,8 @@ #include #include -#include -#include -#include #include -#include -#include -#include -#include #include -#include -#include -#include #include #include #include @@ -37,6 +27,7 @@ #include #include +#include #include //for rotate_strain @@ -67,9 +58,17 @@ namespace py=pybind11; namespace simpy { py::tuple launch_umat(const std::string &umat_name_py, const py::array_t &etot_py, const py::array_t &Detot_py, const py::array_t &F0_py, const py::array_t &F1_py, const py::array_t &sigma_py, const py::array_t &DR_py, const py::array_t &props_py, const py::array_t &statev_py, const float Time, const float DTime, const py::array_t &Wm_py, const std::optional> &T_py, const int &ndi, const unsigned int &n_threads, const int &tangent_mode){ - // tangent_mode: 0 = continuum (default, current behaviour), - // 1 = algorithmic (Simo–Hughes consistent tangent, planned for simcoon 2.0 default - + // tangent_mode: 0 = none (explicit integration, Lt = elastic L), + // 1 = continuum, 2 = algorithmic (Simo-Hughes, DEFAULT), + // 3 = closest-point (reserved). See parameter.hpp tangent_* constants. + + // Validate up front, in serial context: the per-point dispatch below + // runs inside a non-exception-safe parallel region (GCD/OpenMP) where a + // throw would std::terminate the host process. + if (tangent_mode < simcoon::tangent_none || tangent_mode > simcoon::tangent_algorithmic) { + throw std::invalid_argument("tangent_mode must be 0 (none), 1 (continuum) or 2 (algorithmic); got " + + std::to_string(tangent_mode) + " (3 = closest-point is reserved)"); + } std::map list_umat; list_umat = { {"UMEXT",0},{"UMABA",1},{"ELISO",2},{"ELIST",3},{"ELORT",4},{"EPICP",5},{"EPKCP",6},{"EPCHA",7},{"EPHIL",8},{"EPHAC",9},{"EPANI",10},{"EPDFA",11},{"EPHIN",12},{"SMAUT",13},{"SMANI",13},{"SMADI",13},{"SMADC",13},{"SMAAI",13},{"SMAAC",13},{"LLDM0",15},{"ZENER",16},{"ZENNK",17},{"PRONK",18},{"SMAMO",19},{"SMAMC",20},{"NEOHC",21},{"MOORI",22},{"YEOHH",23},{"ISHAH",24},{"GETHH",25},{"SWANH",26},{"EPCHG",27},{"SMRDI",28},{"SMRDC",28},{"SMRAI",28},{"SMRAC",28},{"SNTVE",29},{"NEOHI",30},{"MODUL",200},{"MIHEN",100},{"MIMTN",101},{"MISCN",103},{"MIPLN",104} }; // TODO_2.0 SMAUT and SMANI compatibility to be removed in release 2.0 int id_umat = list_umat[umat_name_py]; @@ -138,17 +137,17 @@ namespace simpy { switch (id_umat) { case 2: { - umat_function = &simcoon::umat_elasticity_iso; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } case 3: { - umat_function = &simcoon::umat_elasticity_trans_iso; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } case 4: { - umat_function = &simcoon::umat_elasticity_ortho; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } @@ -158,7 +157,7 @@ namespace simpy { break; } case 6: { - umat_function = &simcoon::umat_plasticity_kin_iso_CCP; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } @@ -168,27 +167,27 @@ namespace simpy { break; } case 8: { - umat_function = &simcoon::umat_plasticity_hill_isoh_CCP; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } case 9: { - umat_function = &simcoon::umat_hill_chaboche_CCP; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } case 10: { - umat_function = &simcoon::umat_ani_chaboche_CCP; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } case 11: { - umat_function = &simcoon::umat_dfa_chaboche_CCP; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } case 12: { - umat_function = &simcoon::umat_plasticity_hill_isoh_CCP_N; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } @@ -240,7 +239,7 @@ namespace simpy { break; } case 27: { - umat_function = &simcoon::umat_generic_chaboche_CCP; + umat_function = &simcoon::umat_legacy_modular; // legacy name -> modular adapter arguments_type = 1; break; } @@ -296,266 +295,183 @@ namespace simpy { return py::make_tuple(carma::mat_to_arr(list_sigma, false), carma::mat_to_arr(list_statev, false), carma::mat_to_arr(list_Wm, false), carma::cube_to_arr(Lt, false)); } -} -/* py::tuple launch_umat_T(const std::string& umat_name_py, const py::array_t &etot_py, const py::array_t &Detot_py, const py::array_t &sigma_py, const py::array_t &DR_py, const py::array_t &props_py, const py::array_t &statev_py, const float Time, const float DTime, const py::array_t &Wm_py, py::array_t &T){ - //Get the id of umat + py::tuple launch_umat_T(const std::string &umat_name_py, const py::array_t &etot_py, const py::array_t &Detot_py, const py::array_t &sigma_py, const py::array_t &DR_py, const py::array_t &props_py, const py::array_t &statev_py, const float Time, const float DTime, const py::array_t &Wm_py, const py::array_t &Wt_py, const py::array_t &T_py, const py::array_t &DT_py, const int &ndi, const unsigned int &n_threads, const int &tangent_mode){ + // Point-wise thermomechanical UMAT batch entry (small strain), mirroring launch_umat. + // Dispatch follows the select_umat_T table (umat_smart.cpp). + // Returns (sigma, statev, Wm, Wt, r, dSdE, dSdT, drdE, drdT). + + if (tangent_mode < simcoon::tangent_none || tangent_mode > simcoon::tangent_algorithmic) { + throw std::invalid_argument("tangent_mode must be 0 (none), 1 (continuum) or 2 (algorithmic); got " + + std::to_string(tangent_mode) + " (3 = closest-point is reserved)"); + } std::map list_umat; - list_umat = { {"UMEXT",0},{"UMABA",1},{"ELISO",2},{"ELIST",3},{"ELORT",4},{"EPICP",5},{"EPKCP",6},{"EPCHA",7},{"SMADI",8},{"SMADC",8},{"SMAAI",8},{"SMAAC",8},{"LLDM0",9},{"ZENER",10},{"ZENNK",11},{"PRONK",12},{"EPHIC",17},{"EPHIN",18},{"SMAMO",19},{"SMAMC",20},{"MIHEN",100},{"MIMTN",101},{"MISCN",103},{"MIPLN",104} }; + list_umat = { {"ELISO",1},{"ELIST",2},{"ELORT",3},{"EPICP",4},{"EPKCP",5},{"ZENER",6},{"ZENNK",7},{"PRONK",8},{"SMAUT",9},{"SMANI",9},{"SMADI",9},{"SMADC",9},{"SMAAI",9},{"SMAAC",9} }; // TODO_2.0 SMAUT and SMANI compatibility to be removed in release 2.0 + if (list_umat.count(umat_name_py) == 0) { + throw std::invalid_argument("The choice of thermomechanical Umat could not be found in the umat library: " + umat_name_py); + } int id_umat = list_umat[umat_name_py]; int arguments_type; //depends on the argument used in the umat - - void (*umat_function)(const arma::vec &, const arma::vec &, arma::vec &, double &, arma::mat &, arma::mat &, arma::mat &, arma::mat &, const arma::mat &, const int &, const arma::vec &, const int &, arma::vec &, const double &, const double &,const double &,const double &, double &, double &, double &, double &, double &, double &, double &, const int &, const int &, const bool &, double &); - switch (id_umat) { + // Unified thermomechanical function pointer: (Etot, DEtot, sigma, r, dSdE, dSdT, drdE, drdT, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, Wt, Wt_r, Wt_ir, ndi, nshr, start, tnew_dt, tangent_mode) + void (*umat_function)(const arma::vec &, const arma::vec &, arma::vec &, double &, arma::mat &, arma::mat &, arma::mat &, arma::mat &, const arma::mat &, const int &, const arma::vec &, const int &, arma::vec &, const double &, const double &, const double &, const double &, double &, double &, double &, double &, double &, double &, double &, const int &, const int &, const bool &, double &, const int &); + // SMA family variant carrying the umat_name as leading argument + void (*umat_function_named)(const std::string &, const arma::vec &, const arma::vec &, arma::vec &, double &, arma::mat &, arma::mat &, arma::mat &, arma::mat &, const arma::mat &, const int &, const arma::vec &, const int &, arma::vec &, const double &, const double &, const double &, const double &, double &, double &, double &, double &, double &, double &, double &, const int &, const int &, const bool &, double &, const int &); - case 2: { - umat_function = &simcoon::umat_elasticity_iso_T; - arguments_type = 1; - //umat_elasticity_iso_T(umat_T->Etot, umat_T->DEtot, umat_T->sigma, umat_T->r, umat_T->dSdE, umat_T->dSdT, umat_T->drdE, umat_T->drdT, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_T->nstatev, umat_T->statev, umat_T->T, umat_T->DT, Time, DTime, umat_T->Wm(0), umat_T->Wm(1), umat_T->Wm(2), umat_T->Wm(3), umat_T->Wt(0), umat_T->Wt(1), umat_T->Wt(2), ndi, nshr, start, tnew_dt); - break; - } - case 3: { - umat_function = &simcoon::umat_elasticity_trans_iso_T; - arguments_type = 4; - break; - } - case 4: { - umat_function = &simcoon::umat_elasticity_ortho_T; - arguments_type = 4; - break; - } - case 5: { - umat_function = &simcoon::umat_plasticity_iso_CCP; - arguments_type = 1; - //simcoon::umat_plasticity_iso_CCP(etot, Detot, sigma, Lt, L, sigma_in, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, solver_type, tnew_dt); - break; - } - case 6: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function = &simcoon::umat_plasticity_kin_iso_CCP; - arguments_type = 1; - //simcoon::umat_plasticity_kin_iso_CCP(etot, Detot, sigma, Lt, L, sigma_in, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, solver_type, tnew_dt); - } - break; - } - case 7: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function = &simcoon::umat_plasticity_chaboche_CCP; - arguments_type = 1; - //simcoon::umat_plasticity_chaboche_CCP(etot, Detot, sigma, Lt, L, sigma_in, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, solver_type, tnew_dt); - } - break; - } - case 8: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function_2 = &simcoon::umat_sma_unified_T; - arguments_type = 2; - //simcoon::umat_sma_unified_T(etot, Detot, sigma, Lt, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, tnew_dt); - } - break; - } - case 9: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function = &simcoon::umat_damage_LLD_0; - arguments_type = 1; - //simcoon::umat_damage_LLD_0(etot, Detot, sigma, Lt, L, sigma_in, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, solver_type, tnew_dt); - } - break; - } - case 10: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function_2 = &simcoon::umat_zener_fast; - arguments_type = 2; - //simcoon::umat_zener_fast(etot, Detot, sigma, Lt, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, tnew_dt); - } - break; - } - case 11: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function_2 = &simcoon::umat_zener_Nfast; - arguments_type = 2; - //simcoon::umat_zener_Nfast(etot, Detot, sigma, Lt, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, tnew_dt); - } - break; - } - case 12: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function_2 = &simcoon::umat_prony_Nfast; - arguments_type = 2; - //simcoon::umat_prony_Nfast(etot, Detot, sigma, Lt, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, tnew_dt); - } - break; - } - case 17: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function_2 = &simcoon::umat_plasticity_hill_isoh_CCP; - arguments_type = 2; - //simcoon::umat_plasticity_hill_isoh_CCP(etot, Detot, sigma, Lt, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, tnew_dt); - } - break; - } - case 18: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function_2 = &simcoon::umat_plasticity_hill_isoh_CCP_N; - arguments_type = 2; - //simcoon::umat_plasticity_hill_isoh_CCP_N(etot, Detot, sigma, Lt, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, tnew_dt); - } - break; - } - case 19: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function_3 = &simcoon::umat_sma_mono; - arguments_type = 3; - //simcoon::umat_sma_mono(etot, Detot, sigma, Lt, L, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, tnew_dt); - } - break; - } - case 20: { - if (thermomechancial){ - arguments_type = 0; - } - else { - umat_function_3 = &simcoon::umat_sma_mono_cubic; - arguments_type = 3; - //simcoon::umat_sma_mono_cubic(etot, Detot, sigma, Lt, L, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, ndi, nshr, start, tnew_dt); - } - break; - } + const int ncomp = 6; + int nshr; + if (ndi==3) { + nshr=3; + } else if (ndi==1) { + nshr=0; + } else if (ndi==2) { + nshr=1; + } else { + throw std::invalid_argument( "ndi should be 1, 2 or 3 dimenions" ); + } - default: { - //py::print("Error: The choice of Umat could not be found in the umat library \n"); - throw std::invalid_argument( "The choice of Umat could not be found in the umat library." ); - //exit(0); - } + bool start = true; + if (Time > simcoon::limit) { + start = false; + } + double tnew_dt = 0; + + mat list_etot = carma::arr_to_mat_view(etot_py); + unsigned int nb_points = list_etot.n_cols; //number of material points + mat list_Detot = carma::arr_to_mat_view(Detot_py); + mat list_sigma = carma::arr_to_mat(std::move(sigma_py)); //copy: modified by the umat and returned + cube DR = carma::arr_to_cube_view(DR_py); + vec vec_T = carma::arr_to_col_view(T_py); + vec vec_DT = carma::arr_to_col_view(DT_py); + + vec props; + //n_cols (not the raw numpy shape) so a 1-D (nprops,) array is a valid single-props input + mat list_props = carma::arr_to_mat_view(props_py); + bool unique_props = false; + if (list_props.n_cols == 1) { + props = list_props.col(0); + unique_props = true; + } + else if (list_props.n_cols != nb_points) { + throw std::invalid_argument("umat_T: props must have 1 column (shared) or one column per material point; got " + + std::to_string(list_props.n_cols) + " columns for " + std::to_string(nb_points) + " points"); + } + + mat list_statev = carma::arr_to_mat(std::move(statev_py)); //copy: modified by the umat and returned + mat list_Wm = carma::arr_to_mat(std::move(Wm_py)); //copy: modified by the umat and returned + mat list_Wt = carma::arr_to_mat(std::move(Wt_py)); //copy: modified by the umat and returned + + //Validate every batch dimension here, in serial context: an out-of-range + //access inside the non-exception-safe parallel region would terminate the process + if (list_Detot.n_cols != nb_points || list_sigma.n_cols != nb_points || list_statev.n_cols != nb_points + || list_Wm.n_cols != nb_points || list_Wt.n_cols != nb_points || DR.n_slices != nb_points) { + throw std::invalid_argument("umat_T: Detot, sigma, statev, Wm, Wt and DR must have one column (resp. slice) per material point (" + std::to_string(nb_points) + ")"); + } + if (vec_T.n_elem != nb_points || vec_DT.n_elem != nb_points) { + throw std::invalid_argument("umat_T: T and DT must have one entry per material point (" + std::to_string(nb_points) + ")"); + } + if (list_etot.n_rows != 6 || list_Detot.n_rows != 6 || list_sigma.n_rows != 6 || list_Wm.n_rows != 4 || list_Wt.n_rows != 3) { + throw std::invalid_argument("umat_T: expected shapes (6,N) for etot/Detot/sigma, (4,N) for Wm and (3,N) for Wt"); + } + vec list_r(nb_points, fill::zeros); + cube dSdE(ncomp, ncomp, nb_points); + cube dSdT(ncomp, 1, nb_points); + cube drdE(ncomp, 1, nb_points); //T UMATs write drdE as a (6,1) column (e.g. drdE = zeros(6)) + cube drdT(1, 1, nb_points); + int nprops = list_props.n_rows; + int nstatev = list_statev.n_rows; + + switch (id_umat) { + case 1: { + umat_function = &simcoon::umat_elasticity_iso_T; + arguments_type = 1; + break; } - - if (arguments_type == 0) throw std::invalid_argument( "The choice of Umat could not be found in the umat library. Check the thermomecanical argument." ); + case 2: { + umat_function = &simcoon::umat_elasticity_trans_iso_T; + arguments_type = 1; + break; + } + case 3: { + umat_function = &simcoon::umat_elasticity_ortho_T; + arguments_type = 1; + break; + } + case 4: { + umat_function = &simcoon::umat_plasticity_iso_CCP_T; + arguments_type = 1; + break; + } + case 5: { + umat_function = &simcoon::umat_plasticity_kin_iso_CCP_T; + arguments_type = 1; + break; + } + case 6: { + umat_function = &simcoon::umat_zener_fast_T; + arguments_type = 1; + break; + } + case 7: { + umat_function = &simcoon::umat_zener_Nfast_T; + arguments_type = 1; + break; + } + case 8: { + umat_function = &simcoon::umat_prony_Nfast_T; + arguments_type = 1; + break; + } + case 9: { + umat_function_named = &simcoon::umat_sma_unified_T_T; + arguments_type = 2; + break; + } + default: { + throw std::invalid_argument( "The choice of thermomechanical Umat could not be found in the umat library." ); + } + } - //py::print("id_umat ok"); + simcoon_parallel_for(nb_points, [&](int pt) { + // props aliased without copying: no NumPy-backed allocation in the + // parallel region (same GIL-safety pattern as launch_umat) + const double* _props_ptr = unique_props ? props.memptr() : list_props.colptr(pt); + const vec local_props(const_cast(_props_ptr), nprops, false, true); + vec statev = list_statev.unsafe_col(pt); + vec sigma = list_sigma.unsafe_col(pt); - //scalar needed to launch umat - const int solver_type = 0; - const int ndi=3; - const int nshr=3; - const int ncomp=ndi+nshr; - const bool start = false; - double tnew_dt = 0;//usefull ? - double T = 0; double DT = 0; //modify to let the program set the actual temperature - //bool use_temp; - //if (T.n_elem == 0.) use_temp = false; - //else use_temp = true; + vec etot = list_etot.unsafe_col(pt); + vec Detot = list_Detot.unsafe_col(pt); + vec Wm = list_Wm.unsafe_col(pt); + vec Wt = list_Wt.unsafe_col(pt); - //py::print("ndim = ", etot_py.ndim()); - if (etot_py.ndim() == 1) { - vec etot = carma::arr_to_col_view(etot_py); - vec Detot = carma::arr_to_col_view(Detot_py); - vec sigma = carma::arr_to_col(sigma_py); //copy data because values are changed by the umat and returned to python - mat DR = carma::arr_to_mat_view(DR_py); - vec props = carma::arr_to_col_view(props_py); - vec statev = carma::arr_to_col(statev_py); //copy data because values are changed by the umat and returned to python - vec Wm = carma::arr_to_col(Wm_py); //copy data because values are changed by the umat and returned to python - mat L(ncomp, ncomp); - mat Lt(ncomp, ncomp); - vec sigma_in = zeros(1); //not used - int nprops = props.n_elem; - int nstatev = statev.n_elem; - - switch (arguments_type) { + double T = vec_T(pt); + double DT = vec_DT(pt); + double tnew_dt_pt = tnew_dt; + switch (arguments_type) { case 1: { - umat_function(etot, Detot, sigma, Lt, L, sigma_in, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm(0), Wm(1), Wm(2), Wm(3), ndi, nshr, start, solver_type, tnew_dt); + umat_function(etot, Detot, sigma, list_r(pt), dSdE.slice(pt), dSdT.slice(pt), drdE.slice(pt), drdT.slice(pt), DR.slice(pt), nprops, local_props, nstatev, statev, T, DT, Time, DTime, Wm(0), Wm(1), Wm(2), Wm(3), Wt(0), Wt(1), Wt(2), ndi, nshr, start, tnew_dt_pt, tangent_mode); break; } case 2: { - umat_function_2(etot, Detot, sigma, Lt, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm(0), Wm(1), Wm(2), Wm(3), ndi, nshr, start, tnew_dt); - break; - } - case 3: { - umat_function_3(etot, Detot, sigma, Lt, L, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm(0), Wm(1), Wm(2), Wm(3), ndi, nshr, start, tnew_dt); - break; - } - case 4: { - umat_elasticity_iso_T(etot, Detot, sigma, umat_T->r, umat_T->dSdE, umat_T->dSdT, umat_T->drdE, umat_T->drdT, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm(0), Wm(1), Wm(2), Wm(3), umat_T->Wt(0), umat_T->Wt(1), umat_T->Wt(2), ndi, nshr, start, tnew_dt); + umat_function_named(umat_name_py, etot, Detot, sigma, list_r(pt), dSdE.slice(pt), dSdT.slice(pt), drdE.slice(pt), drdT.slice(pt), DR.slice(pt), nprops, local_props, nstatev, statev, T, DT, Time, DTime, Wm(0), Wm(1), Wm(2), Wm(3), Wt(0), Wt(1), Wt(2), ndi, nshr, start, tnew_dt_pt, tangent_mode); break; } } - //py::print("umat_done"); - return py::make_tuple(carma::col_to_arr(sigma, false), carma::col_to_arr(statev, false), carma::col_to_arr(Wm, false), carma::mat_to_arr(Lt, false)); - } - else if (etot_py.ndim() == 2) { - - mat etot = carma::arr_to_mat_view(etot_py); - int nb_points = etot.n_cols; //number of material points - mat Detot = carma::arr_to_mat_view(Detot_py); - mat list_sigma = carma::arr_to_mat(sigma_py); //copy data because values are changed by the umat and returned to python - cube DR = carma::arr_to_cube_view(DR_py); - mat list_props = carma::arr_to_mat_view(props_py); - mat list_statev = carma::arr_to_mat(statev_py); //copy data because values are changed by the umat and returned to python - mat Wm = carma::arr_to_mat(Wm_py); //copy data because values are changed by the umat and returned to python - cube L(ncomp, ncomp, nb_points); - cube Lt(ncomp, ncomp, nb_points); - vec sigma_in = zeros(1); //not used - int nprops = list_props.n_rows; - int nstatev = list_statev.n_rows; - - vec props(ncomp); - - for (int pt = 0; pt < nb_points; pt++) { - //if (use_temp) T = list_T(pt); - if (pt < list_props.n_cols) props = list_props.col(pt); //if list_props has only one element, we keep only this one (assuming homogeneous material) - vec statev = list_statev.unsafe_col(pt); - vec sigma = list_sigma.unsafe_col(pt); - - switch (arguments_type) { - - case 1: { - umat_function(etot.col(pt), Detot.col(pt), sigma, Lt.slice(pt), L.slice(pt), sigma_in, DR.slice(pt), nprops, props, nstatev, statev, T, DT, Time, DTime, Wm(0,pt), Wm(1,pt), Wm(2,pt), Wm(3,pt), ndi, nshr, start, solver_type, tnew_dt); - break; - } - case 2: { - umat_function_2(etot.col(pt), Detot.col(pt), sigma, Lt.slice(pt), DR.slice(pt), nprops, props, nstatev, statev, T, DT, Time, DTime, Wm(0,pt), Wm(1,pt), Wm(2,pt), Wm(3,pt), ndi, nshr, start, tnew_dt); - break; - } - case 3: { - umat_function_3(etot.col(pt), Detot.col(pt), sigma, Lt.slice(pt), L.slice(pt), DR.slice(pt), nprops, props, nstatev, statev, T, DT, Time, DTime, Wm(0,pt), Wm(1,pt), Wm(2,pt), Wm(3,pt), ndi, nshr, start, tnew_dt); - break; - } - } - } - return py::make_tuple(carma::mat_to_arr(list_sigma, false), carma::mat_to_arr(list_statev, false), carma::mat_to_arr(Wm, false), carma::cube_to_arr(Lt, false)); + }); + + // post-loop repacking (serial): dSdT (6,1,N) -> (6,N), drdE (1,6,N) -> (6,N), drdT (1,1,N) -> (N) + mat dSdT_out(ncomp, nb_points); + mat drdE_out(ncomp, nb_points); + vec drdT_out(nb_points); + for (unsigned int pt = 0; pt < nb_points; pt++) { + dSdT_out.col(pt) = dSdT.slice(pt); + drdE_out.col(pt) = drdE.slice(pt); + drdT_out(pt) = drdT(0, 0, pt); } + // copy=true throughout: with few points these arrays fit armadillo's internal + // (pre-allocated) buffer and a zero-copy steal would hand numpy a dangling pointer + return py::make_tuple(carma::mat_to_arr(list_sigma, true), carma::mat_to_arr(list_statev, true), carma::mat_to_arr(list_Wm, true), carma::mat_to_arr(list_Wt, true), carma::col_to_arr(list_r, true), carma::cube_to_arr(dSdE, true), carma::mat_to_arr(dSdT_out, true), carma::mat_to_arr(drdE_out, true), carma::col_to_arr(drdT_out, true)); } } - -*/ diff --git a/simcoon-python-builder/src/python_wrappers/Libraries/Solver/solver_run.cpp b/simcoon-python-builder/src/python_wrappers/Libraries/Solver/solver_run.cpp new file mode 100644 index 000000000..7f61ffb1d --- /dev/null +++ b/simcoon-python-builder/src/python_wrappers/Libraries/Solver/solver_run.cpp @@ -0,0 +1,274 @@ +#include +#include +#include +#include +#include + +#include +#include + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; +using namespace arma; +namespace py = pybind11; + +namespace simpy { + +namespace { + +template +T dget(const py::dict &d, const char *key, const T &dflt) { + return d.contains(key) ? d[key].cast() : dflt; +} + +//Fill the fields shared by step_meca and step_thermomeca (identical member names) +template +void fill_step_common(StepPtr &sptr, const py::dict &sd, const unsigned int &control_type, + const unsigned int &size_meca, const int &number, const int &block_type, + const double &T_init) { + + sptr->number = number; + sptr->control_type = control_type; + sptr->mode = sd["mode"].cast(); + if ((sptr->mode < 1) || (sptr->mode > 3)) { + throw std::invalid_argument("solver_run: step mode must be 1 (linear), 2 (sinusoidal) or 3 (tabular); got " + std::to_string(sptr->mode)); + } + + sptr->Dn_init = dget(sd, "Dn_init", 1.); + sptr->Dn_mini = dget(sd, "Dn_mini", 1.); + if (sptr->mode < 3) { + sptr->Dn_inc = sd["Dn_inc"].cast(); + sptr->BC_Time = sd["time"].cast(); + } + + //Mechanical control flags and targets, in internal Voigt order [11,22,33,12,13,23] (or the 9 F components row-major for control_type 5/6) + py::sequence cbc = sd["cBC_meca"].cast(); + if (static_cast(py::len(cbc)) != size_meca) { + throw std::invalid_argument("solver_run: cBC_meca must have " + std::to_string(size_meca) + " components for control_type " + std::to_string(control_type)); + } + for (unsigned int k = 0; k < size_meca; k++) { + int flag = cbc[k].cast(); + if ((flag < 0) || (flag > 2)) { + throw std::invalid_argument("solver_run: cBC_meca flags must be 0 (strain), 1 (stress) or 2 (mode-3 zero-hold); got " + std::to_string(flag)); + } + if ((flag == 2) && (sptr->mode != 3)) { + throw std::invalid_argument("solver_run: cBC_meca flag 2 (zero-hold) is only valid for tabular steps (mode 3)"); + } + if ((flag == 1) && (control_type >= 5)) { + throw std::invalid_argument("solver_run: control types 5 and 6 are fully kinematic; stress control (cBC_meca == 1) is not allowed"); + } + sptr->cBC_meca(k) = flag; + } + if (sd.contains("BC_meca")) { + vec BC_meca = carma::arr_to_col(sd["BC_meca"].cast>()); + if (BC_meca.n_elem != size_meca) { + throw std::invalid_argument("solver_run: BC_meca must have " + std::to_string(size_meca) + " components"); + } + sptr->BC_meca = BC_meca; + } + else if (sptr->mode < 3) { + throw std::invalid_argument("solver_run: BC_meca is required for steps with mode 1 or 2"); + } + + //Rotation rate for the mixed finite-strain control types + if (sd.contains("BC_w")) { + mat BC_w = carma::arr_to_mat(sd["BC_w"].cast>()); + if ((BC_w.n_rows != 3) || (BC_w.n_cols != 3)) { + throw std::invalid_argument("solver_run: BC_w must be a 3x3 matrix"); + } + sptr->BC_w = BC_w; + } + + //Thermal boundary condition; the default holds the temperature at T_init + sptr->cBC_T = dget(sd, "cBC_T", (sptr->mode == 3) ? 2 : 0); + sptr->BC_T = dget(sd, "BC_T", T_init); + if (block_type == 1) { + if ((sptr->cBC_T != 0) && (sptr->cBC_T != 2)) { + throw std::invalid_argument("solver_run: mechanical blocks only accept cBC_T = 0 (temperature) or 2 (constant, mode 3); got " + std::to_string(sptr->cBC_T)); + } + } + else { + if ((sptr->cBC_T < 0) || (sptr->cBC_T > 3)) { + throw std::invalid_argument("solver_run: thermomechanical cBC_T must be 0 (temperature), 1 (heat flux), 2 (constant, mode 3) or 3 (convection); got " + std::to_string(sptr->cBC_T)); + } + if ((sptr->cBC_T == 2) && (sptr->mode != 3)) { + throw std::invalid_argument("solver_run: cBC_T = 2 (constant temperature) is only valid for tabular steps (mode 3)"); + } + } + + //In-memory tabular data (mode 3) + if (sd.contains("tab_data")) { + if (sptr->mode != 3) { + throw std::invalid_argument("solver_run: tab_data is only valid for tabular steps (mode 3)"); + } + sptr->tab_data = carma::arr_to_mat(sd["tab_data"].cast>()); + } + if ((sptr->mode == 3) && (sptr->tab_data.n_rows == 0)) { + throw std::invalid_argument("solver_run: tabular steps (mode 3) require tab_data"); + } +} + +//one row per record, vecs/mats flattened row-major (matrices reshape to +//(N, n_rows, n_cols) C-order on the Python side). copy=true: small histories can +//fit armadillo's internal pre-allocated buffer, which must never be handed to +//numpy as a zero-copy steal. +template +py::array_t rows_to_arr(const std::vector &v) { + arma::mat M(v.size(), v.empty() ? 0 : v[0].n_elem); + for (size_t i = 0; i < v.size(); i++) { + M.row(i) = arma::vectorise(v[i].t()).t(); + } + return carma::mat_to_arr(M, true); +} + +template +py::array_t scalars_to_arr(const std::vector &v) { + py::array_t a(v.size()); + std::memcpy(a.mutable_data(), v.data(), v.size()*sizeof(T)); + return a; +} + +} //anonymous namespace + +py::dict solver_run(const py::list &blocks_py, const double &T_init, + const std::string &umat_name, const py::array_t &props_py, + const int &nstatev, const double &psi_rve, const double &theta_rve, const double &phi_rve, + const int &solver_type, const int &corate_type, + const py::dict ¶ms_py, const bool &record_tangent) { + + vec props = carma::arr_to_col(props_py); + + //Numeric solver controls + simcoon::solver_params ctrl; + ctrl.div_tnew_dt = dget(params_py, "div_tnew_dt", ctrl.div_tnew_dt); + ctrl.mul_tnew_dt = dget(params_py, "mul_tnew_dt", ctrl.mul_tnew_dt); + ctrl.miniter = dget(params_py, "miniter", ctrl.miniter); + ctrl.maxiter = dget(params_py, "maxiter", ctrl.maxiter); + ctrl.inforce = dget(params_py, "inforce", ctrl.inforce); + ctrl.precision = dget(params_py, "precision", ctrl.precision); + //"lambda_solver" is the documented spelling (lambda is a Python keyword); "lambda" kept as alias + ctrl.lambda = dget(params_py, "lambda_solver", dget(params_py, "lambda", ctrl.lambda)); + ctrl.tangent_mode = dget(params_py, "tangent_mode", ctrl.tangent_mode); + + //Loading blocks + unsigned int nblocks = static_cast(py::len(blocks_py)); + if (nblocks == 0) { + throw std::invalid_argument("solver_run: at least one loading block is required"); + } + std::vector blocks; + blocks.resize(nblocks); //filled in place: the block copy constructor does not carry control_type + + for (unsigned int i = 0; i < nblocks; i++) { + py::dict bd = blocks_py[i].cast(); + + blocks[i].number = i+1; + blocks[i].type = bd["type"].cast(); + blocks[i].control_type = bd["control_type"].cast(); + blocks[i].ncycle = dget(bd, "ncycle", 1); + + if ((blocks[i].type < 1) || (blocks[i].type > 2)) { + throw std::invalid_argument("solver_run: block type must be 1 (mechanical) or 2 (thermomechanical); got " + std::to_string(blocks[i].type)); + } + if (blocks[i].type != blocks[0].type) { + //the engine constructs the RVE state variables once (first block): a later + //block of the other type would dereference a null cast and crash + throw std::invalid_argument("solver_run: all blocks must share the same type (mechanical or thermomechanical); block " + std::to_string(i+1) + " differs from block 1"); + } + if ((blocks[i].control_type < 1) || (blocks[i].control_type > 6)) { + throw std::invalid_argument("solver_run: control_type must be in [1, 6]; got " + std::to_string(blocks[i].control_type)); + } + if ((blocks[i].type == 2) && (blocks[i].control_type != 1)) { + throw std::invalid_argument("solver_run: thermomechanical blocks only support control_type 1 (small strain)"); + } + + py::list steps_py = bd["steps"].cast(); + blocks[i].nstep = static_cast(py::len(steps_py)); + if (blocks[i].nstep == 0) { + throw std::invalid_argument("solver_run: block " + std::to_string(i+1) + " has no steps"); + } + blocks[i].generate(); //allocates step_meca / step_thermomeca with the proper 6/9 sizing + + unsigned int size_meca = (blocks[i].control_type >= 5) ? 9 : 6; + + for (unsigned int j = 0; j < blocks[i].nstep; j++) { + py::dict sd = steps_py[j].cast(); + if (blocks[i].type == 1) { + auto sptr = std::dynamic_pointer_cast(blocks[i].steps[j]); + fill_step_common(sptr, sd, blocks[i].control_type, size_meca, j+1, blocks[i].type, T_init); + } + else { + auto sptr = std::dynamic_pointer_cast(blocks[i].steps[j]); + fill_step_common(sptr, sd, blocks[i].control_type, size_meca, j+1, blocks[i].type, T_init); + } + } + } + + //Output cadence: record every increment + simcoon::solver_output so(nblocks); + for (unsigned int i = 0; i < nblocks; i++) { + so.o_type(i) = 1; + so.o_nfreq(i) = 1; + } + simcoon::check_path_output(blocks, so); + + simcoon::solver_memory_sink sink; + sink.record_tangent = record_tangent; + + int status = 0; + { + py::gil_scoped_release nogil; + status = simcoon::solver_run(blocks, T_init, so, umat_name, props, nstatev, + psi_rve, theta_rve, phi_rve, solver_type, corate_type, ctrl, sink); + } + + //Assemble the results (canonical state; measure transforms happen in Python) + py::dict res; + res["status"] = status; + res["sv_type"] = sink.sv_type; + res["block"] = scalars_to_arr(sink.blocks_i); + res["cycle"] = scalars_to_arr(sink.cycles_i); + res["step"] = scalars_to_arr(sink.steps_i); + res["inc"] = scalars_to_arr(sink.incs_i); + res["time"] = scalars_to_arr(sink.time); + res["Etot"] = rows_to_arr(sink.Etot); + res["etot"] = rows_to_arr(sink.etot); + res["PKII"] = rows_to_arr(sink.PKII); + res["tau"] = rows_to_arr(sink.tau); + res["sigma"] = rows_to_arr(sink.sigma); + res["F1"] = rows_to_arr(sink.F1); + res["R"] = rows_to_arr(sink.R); + res["DR"] = rows_to_arr(sink.DR); + res["T"] = scalars_to_arr(sink.T); + res["Wm"] = rows_to_arr(sink.Wm); + res["statev"] = rows_to_arr(sink.statev); + if (sink.sv_type == 2) { + res["Q"] = scalars_to_arr(sink.Q); + res["r"] = scalars_to_arr(sink.r); + res["Wt"] = rows_to_arr(sink.Wt); + if (record_tangent) { + res["dSdE"] = rows_to_arr(sink.dSdE); + res["dSdT"] = rows_to_arr(sink.dSdT); + res["drdE"] = rows_to_arr(sink.drdE); + res["drdT"] = rows_to_arr(sink.drdT); + } + } + else if (record_tangent) { + res["Lt"] = rows_to_arr(sink.Lt); + } + return res; +} + +} //namespace simpy diff --git a/simcoon-python-builder/src/python_wrappers/python_module.cpp b/simcoon-python-builder/src/python_wrappers/python_module.cpp index f2037c099..a940b49b4 100755 --- a/simcoon-python-builder/src/python_wrappers/python_module.cpp +++ b/simcoon-python-builder/src/python_wrappers/python_module.cpp @@ -1,5 +1,6 @@ #include +#include #include #include @@ -27,6 +28,7 @@ #include #include +#include // #include // #include @@ -228,12 +230,22 @@ PYBIND11_MODULE(_core, m) m.def("stress_convert", &stress_convert, "sigma"_a, "F"_a, "converter_key"_a, "J"_a = 0., "copy"_a = true, simcoon_docs::stress_convert); // umat - m.def("umat", &launch_umat, "umat_name"_a, "etot"_a, "Detot"_a, "F0"_a, "F1"_a, "sigma"_a, "DR"_a, "props"_a, "statev"_a, "time"_a, "dtime"_a, "Wm"_a, "temp"_a = pybind11::none(), "ndi"_a = 3, "n_threads"_a = 4, "tangent_mode"_a = 0); + m.def("umat", &launch_umat, "umat_name"_a, "etot"_a, "Detot"_a, "F0"_a, "F1"_a, "sigma"_a, "DR"_a, "props"_a, "statev"_a, "time"_a, "dtime"_a, "Wm"_a, "temp"_a = pybind11::none(), "ndi"_a = 3, "n_threads"_a = 4, "tangent_mode"_a = simcoon::tangent_default); + m.def("umat_T", &launch_umat_T, "umat_name"_a, "etot"_a, "Detot"_a, "sigma"_a, "DR"_a, "props"_a, "statev"_a, "time"_a, "dtime"_a, "Wm"_a, "Wt"_a, "T"_a, "DT"_a, "ndi"_a = 3, "n_threads"_a = 4, "tangent_mode"_a = simcoon::tangent_default); // Register the from-python converters for read and solver + // tangent_mode named constants (see parameter.hpp): 0 = none/explicit, + // 1 = continuum, 2 = algorithmic (default), 3 = closest-point (reserved) + m.attr("tangent_none") = simcoon::tangent_none; + m.attr("tangent_continuum") = simcoon::tangent_continuum; + m.attr("tangent_algorithmic") = simcoon::tangent_algorithmic; + m.attr("tangent_closest_point") = simcoon::tangent_closest_point; + m.attr("tangent_default") = simcoon::tangent_default; + m.def("read_matprops", &read_matprops); m.def("read_path", &read_path); - m.def("solver", &solver, "umat_name"_a, "props"_a, "nstatev"_a, "psi_rve"_a, "theta_rve"_a, "phi_rve"_a, "solver_type"_a, "corate_type"_a, "path_data"_a, "path_results"_a, "pathfile"_a, "outputfile"_a, "tangent_mode"_a = 0); + m.def("solver", &solver, "umat_name"_a, "props"_a, "nstatev"_a, "psi_rve"_a, "theta_rve"_a, "phi_rve"_a, "solver_type"_a, "corate_type"_a, "path_data"_a, "path_results"_a, "pathfile"_a, "outputfile"_a, "tangent_mode"_a = simcoon::tangent_default); + m.def("solver_run", &solver_run, "blocks"_a, "T_init"_a, "umat_name"_a, "props"_a, "nstatev"_a, "psi_rve"_a = 0., "theta_rve"_a = 0., "phi_rve"_a = 0., "solver_type"_a = 0, "corate_type"_a = 2, "params"_a = pybind11::dict(), "record_tangent"_a = true); // Register the from-python converters for ODF functions m.def("get_densities_ODF", &get_densities_ODF); diff --git a/simcoon-python-builder/test/test_core/solver_harness.py b/simcoon-python-builder/test/test_core/solver_harness.py new file mode 100644 index 000000000..9e36f2836 --- /dev/null +++ b/simcoon-python-builder/test/test_core/solver_harness.py @@ -0,0 +1,99 @@ +"""Shared file-solver harness for solver-level tests. + +One copy of the path-file grammar, the output layout, and the temp-dir runner +used by test_modular_finite.py and test_solver_robustness.py (not collected by +pytest: no test_ prefix). +""" + +import os + +import numpy as np + +import simcoon as sim + +# Column layout of res_global-0.txt with the OUTPUT_DAT block below: +# 3 inc | 4 time | 8:14 log strain | 14:20 Kirchhoff stress | 20:29 R | +# 29:38 F | 38:42 Wm, Wm_r, Wm_ir, Wm_d +C_TIME = 4 +S_STRAIN = slice(8, 14) +S_STRESS = slice(14, 20) +S_WM = slice(38, 42) + +OUTPUT_DAT = """#Output_values +strain_type 3 +nb_strain 6 +0 1 2 3 4 5 +stress_type\t3 +nb_stress 6 +0 1 2 3 4 5 + +Rotation_type\t1 +Tangent_type\t0 +T 1 +T 1 + +Number_of_wanted_internal_variables\t0 + +#Block #type_1_N_2_T #every +1 1 1 +""" + + +def path_file(targets, control_type): + """Uniaxial path, one mode per target: ("S", v) drives the 11 stress to v, + ("E", v) drives the 11 strain to v; lateral components stay stress-free.""" + txt = f"""#Initial_temperature +290 +#Number_of_blocks +1 + +#Block +1 +#Loading_type +1 +#Control_type(NLGEOM) +{control_type} +#Repeat +1 +#Steps +{len(targets)} +""" + spin = """#spin +0. 0. 0. +0. 0. 0. +0. 0. 0. +""" if 2 <= control_type <= 4 else "" + for ctrl, target in targets: + txt += f""" +#Mode +1 +#Dn_init 1. +#Dn_mini 0.001 +#Dn_inc 0.02 +#time +1. +#mechanical_state +{ctrl} {target} +S 0 S 0 +S 0 S 0 S 0 +{spin}#temperature_state +T 290 +""" + return txt + + +def run_path(base_dir, umat_name, props, nstatev, corate, path_text): + """Run the file solver in base_dir (a pytest tmp_path); return the global + history array of res_global-0.txt.""" + dd, rd = os.path.join(base_dir, "data"), os.path.join(base_dir, "results") + os.makedirs(dd, exist_ok=True) + os.makedirs(rd, exist_ok=True) + with open(os.path.join(dd, "path.txt"), "w") as f: + f.write(path_text) + with open(os.path.join(dd, "output.dat"), "w") as f: + f.write(OUTPUT_DAT) + sim._core.solver( + umat_name, np.asarray(props, dtype=float), nstatev, + 0.0, 0.0, 0.0, 0, corate, dd, rd, "path.txt", "res.txt", + ) + return np.loadtxt(os.path.join(rd, "res_global-0.txt"), ndmin=2) diff --git a/simcoon-python-builder/test/test_core/test_modular.py b/simcoon-python-builder/test/test_core/test_modular.py index 890e3fa6b..9b4956888 100644 --- a/simcoon-python-builder/test/test_core/test_modular.py +++ b/simcoon-python-builder/test/test_core/test_modular.py @@ -1,6 +1,6 @@ """Regression tests for the modular UMAT Python API. -These tests exercise the end-to-end `ModularMaterial → sim.solver("MODUL", ...)` +These tests exercise the end-to-end `ModularMaterial → sim._core.solver("MODUL", ...)` path for the cases that would silently break if the modular C++ orchestrator or Python props-serialization regressed. """ @@ -36,15 +36,17 @@ def work_in_examples(tmp_path, monkeypatch): # sim.solver's 'results' folder arg is relative; create a symlink for this # test run so its output lands in the pytest tmp area. link = EXAMPLES_DIR / f"_pytest_results_{tmp_path.name}" + if link.is_symlink() or link.exists(): + link.unlink() # stale link from an interrupted previous run link.symlink_to(results, target_is_directory=True) yield link.name - link.unlink() + link.unlink(missing_ok=True) def _run_solver(mat: ModularMaterial, results_dir: str, outfile: str) -> np.ndarray: """Run the MODUL solver through the standard path file; return the (n_steps, 2) array of (eps_11, sigma_11).""" - sim.solver( + sim._core.solver( mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, # psi_rve, theta_rve, phi_rve 0, 1, # solver_type, corate_type @@ -170,7 +172,7 @@ def test_viscoelastic_matches_pronk_reference(work_in_examples): pronk_props = np.array([E0, nu0, 0.0, len(terms)] + [x for t in terms for x in t]) - sim.solver("PRONK", pronk_props, 7 + 7 * len(terms), + sim._core.solver("PRONK", pronk_props, 7 + 7 * len(terms), 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "PRONK_path.txt", "res_pronk.txt") ref = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples @@ -180,7 +182,7 @@ def test_viscoelastic_matches_pronk_reference(work_in_examples): elasticity=IsotropicElasticity(C1=E0, C2=nu0), mechanisms=[Viscoelasticity(terms=terms)], ) - sim.solver(mat.umat_name, mat.props, mat.nstatev, + sim._core.solver(mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "PRONK_path.txt", "res_veq.txt") hist = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples @@ -223,10 +225,11 @@ def test_damage_softens_end_to_end(work_in_examples): def test_tangent_mode_1_same_converged_response(work_in_examples): - """tangent_mode=1 (Simo-Hughes algorithmic) must reproduce the mode-0 - converged response — the tangent steers the global Newton, not the - residual. Guards the mode-1 assembly (Bhat = -B sign convention and the - coupled sub-block extraction) at solver level.""" + """The algorithmic tangent (mode 2, the default) must reproduce the + continuum-mode (1) converged response — the tangent steers the global + Newton, not the residual. Guards the algorithmic assembly (Bhat = -B sign + convention and the coupled sub-block extraction) at solver level. + 2.0 renumbering: 0 = none/explicit, 1 = continuum, 2 = algorithmic.""" mat = ModularMaterial( elasticity=IsotropicElasticity(C1=210000.0, C2=0.3), mechanisms=[Plasticity( @@ -237,22 +240,22 @@ def test_tangent_mode_1_same_converged_response(work_in_examples): ) outs = {} - for mode in (0, 1): + for mode in (1, 2): out = f"res_tg{mode}.txt" - sim.solver(mat.umat_name, mat.props, mat.nstatev, + sim._core.solver(mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "MODUL_path.txt", out, mode) outs[mode] = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples / out.replace(".txt", "_global-0.txt")) - assert outs[0].shape == outs[1].shape - peak = np.max(np.abs(outs[0][:, 14])) - diff = np.max(np.abs(outs[0][:, 14] - outs[1][:, 14])) + assert outs[1].shape == outs[2].shape + peak = np.max(np.abs(outs[1][:, 14])) + diff = np.max(np.abs(outs[1][:, 14] - outs[2][:, 14])) assert peak > 100.0 assert diff / peak < 1e-5, ( - f"mode-1 response deviates from mode-0 by {diff/peak:.2e} " - "(algorithmic tangent must not change the converged solution)" + f"algorithmic-mode response deviates from continuum mode by {diff/peak:.2e} " + "(the tangent must not change the converged solution)" ) @@ -269,7 +272,7 @@ def test_chaboche_matches_epcha_reference(work_in_examples): epcha_props = np.array([210000.0, 0.3, 0.0, 300.0, 200.0, 20.0, 30000.0, 172.0, 19500.0, 301.0]) - sim.solver("EPCHA", epcha_props, 33, 0.0, 0.0, 0.0, 0, 1, + sim._core.solver("EPCHA", epcha_props, 33, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "MODUL_path.txt", "res_epcha.txt") ref = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples / "res_epcha_global-0.txt", usecols=(8, 14)) @@ -283,7 +286,7 @@ def test_chaboche_matches_epcha_reference(work_in_examples): terms=((30000.0, 172.0), (19500.0, 301.0))), )], ) - sim.solver(mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, 0, 1, + sim._core.solver(mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "MODUL_path.txt", "res_mchab.txt") hist = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples / "res_mchab_global-0.txt", usecols=(8, 14)) @@ -313,7 +316,7 @@ def test_hill_matches_ephil_reference(work_in_examples): ephil_props = np.array([210000., 0.3, 0., 300., 5000., 1.0, 0.5, 0.4, 0.6, 1.5, 1.5, 1.5]) - sim.solver("EPHIL", ephil_props, 33, 0.0, 0.0, 0.0, 0, 1, + sim._core.solver("EPHIL", ephil_props, 33, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "MODUL_path.txt", "res_ephil.txt") ref = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples / "res_ephil_global-0.txt", usecols=(8, 14)) @@ -326,7 +329,7 @@ def test_hill_matches_ephil_reference(work_in_examples): isotropic_hardening=PowerLawHardening(k=5000., m=1.0), )], ) - sim.solver(mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, 0, 1, + sim._core.solver(mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "MODUL_path.txt", "res_mhill.txt") hist = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples / "res_mhill_global-0.txt", usecols=(8, 14)) @@ -353,7 +356,7 @@ def test_chaboche_shear_matches_epcha_reference(work_in_examples): from simcoon.modular import ChabocheHardening # SHEAR_path.txt drives E12 with all other components stress-free. ep = np.array([210000., 0.3, 0., 300., 0., 0., 30000., 300., 19500., 172.]) - sim.solver("EPCHA", ep, 33, 0.0, 0.0, 0.0, 0, 1, + sim._core.solver("EPCHA", ep, 33, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "SHEAR_path.txt", "sh_epcha.txt") ref = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples / "sh_epcha_global-0.txt", usecols=(11, 17)) # eps12, sig12 @@ -366,7 +369,7 @@ def test_chaboche_shear_matches_epcha_reference(work_in_examples): terms=((30000., 300.), (19500., 172.))), )], ) - sim.solver(mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, 0, 1, + sim._core.solver(mat.umat_name, mat.props, mat.nstatev, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "SHEAR_path.txt", "sh_modul.txt") hist = np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples / "sh_modul_global-0.txt", usecols=(11, 17)) @@ -394,7 +397,7 @@ def run(kin, out): elasticity=IsotropicElasticity(C1=210000., C2=0.3), mechanisms=[Plasticity(sigma_Y=300., kinematic_hardening=kin)], ) - sim.solver(m.umat_name, m.props, m.nstatev, 0.0, 0.0, 0.0, 0, 1, + sim._core.solver(m.umat_name, m.props, m.nstatev, 0.0, 0.0, 0.0, 0, 1, "../data", work_in_examples, "SHEAR_path.txt", out) return np.loadtxt(Path(EXAMPLES_DIR) / work_in_examples / out.replace(".txt", "_global-0.txt"), usecols=(11, 17)) @@ -406,3 +409,216 @@ def run(kin, out): "AF class diverges from single-term Chaboche (distinct C++ path bug?)" ) assert np.max(np.abs(af[:, 1])) > 100.0, "sanity: shear yielded" + + +# ============================================================================ +# Legacy-vs-MODUL equivalence gates (rationalization PR, Phase 1) +# Pattern: run the legacy UMAT and its MODUL twin through the solver on the +# same path; compare stress histories. These tests are the deletion gates for +# the name-adapter migration (and permanent validation for kept UMATs). +# ============================================================================ + +def _run_named(name, props, nstatev, results_dir, path_file, out, cols=(8, 14)): + sim._core.solver(name, np.asarray(props, dtype=float), nstatev, + 0.0, 0.0, 0.0, 0, 1, + "../data", results_dir, path_file, out) + return np.loadtxt(Path(EXAMPLES_DIR) / results_dir + / out.replace(".txt", "_global-0.txt"), usecols=cols) + + +def _assert_equiv(ref, hist, rel_tol, label): + assert hist.shape == ref.shape + peak = np.max(np.abs(ref[:, 1])) + assert peak > 0, f"{label}: sanity, zero response" + max_diff = np.max(np.abs(hist[:, 1] - ref[:, 1])) + assert max_diff / peak < rel_tol, ( + f"{label}: MODUL twin deviates by {max_diff/peak:.3e} (tol {rel_tol:.0e})") + + +def test_eliso_matches_modul(work_in_examples): + ref = _run_named("ELISO", [210000., 0.3, 1.2e-5], 1, + work_in_examples, "MODUL_path.txt", "eq_eliso.txt") + mat = ModularMaterial(elasticity=IsotropicElasticity( + C1=210000., C2=0.3, alpha=1.2e-5)) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_meliso.txt") + _assert_equiv(ref, hist, 1e-9, "ELISO") + + +def test_elist_matches_modul(work_in_examples): + from simcoon.modular import TransverseIsotropicElasticity + # legacy props: [axis, EL, ET, nuTL, nuTT, GLT, alpha_L, alpha_T] + ref = _run_named("ELIST", [3, 230000., 15000., 0.02, 0.4, 50000., 0., 0.], + 1, work_in_examples, "MODUL_path.txt", "eq_elist.txt") + mat = ModularMaterial(elasticity=TransverseIsotropicElasticity( + EL=230000., ET=15000., nuTL=0.02, nuTT=0.4, GLT=50000., axis=3)) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_melist.txt") + _assert_equiv(ref, hist, 1e-9, "ELIST") + + +def test_elort_matches_modul(work_in_examples): + from simcoon.modular import OrthotropicElasticity + ref = _run_named("ELORT", [70000., 30000., 15000., 0.3, 0.3, 0.3, + 8000., 6000., 5000., 1e-5, 2e-5, 3e-5], + 1, work_in_examples, "MODUL_path.txt", "eq_elort.txt") + mat = ModularMaterial(elasticity=OrthotropicElasticity( + C1=70000., C2=30000., C3=15000., C4=0.3, C5=0.3, C6=0.3, + C7=8000., C8=6000., C9=5000., + alpha1=1e-5, alpha2=2e-5, alpha3=3e-5)) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_melort.txt") + _assert_equiv(ref, hist, 1e-9, "ELORT") + + +def test_epkcp_matches_modul(work_in_examples): + """EPKCP: Prager convention differs — legacy X = kX*a (tensorial), modular + X = (2/3)*C*a, hence C = 1.5*kX in the twin. m = 1 avoids the power-law + p=0 tangent singularity (same rationale as the EPHIL test).""" + from simcoon.modular import PowerLawHardening, PragerHardening + ref = _run_named("EPKCP", [210000., 0.3, 0., 300., 1000., 1.0, 20000.], + 33, work_in_examples, "MODUL_path.txt", "eq_epkcp.txt") + mat = ModularMaterial( + elasticity=IsotropicElasticity(C1=210000., C2=0.3), + mechanisms=[Plasticity( + sigma_Y=300., + isotropic_hardening=PowerLawHardening(k=1000., m=1.0), + kinematic_hardening=PragerHardening(C=1.5 * 20000.))]) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_mepkcp.txt") + _assert_equiv(ref, hist, 1e-5, "EPKCP") + + +def test_ephac_matches_modul(work_in_examples): + """EPHAC: cubic elasticity (E, nu, G) + Hill yield + Voce + 2x AF.""" + from simcoon.modular import CubicElasticity, HillYield, ChabocheHardening + props = [210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 0.5, 0.4, 0.6, 1.5, 1.5, 1.5] + ref = _run_named("EPHAC", props, 33, + work_in_examples, "MODUL_path.txt", "eq_ephac.txt") + mat = ModularMaterial( + elasticity=CubicElasticity(C1=210000., C2=0.3, C3=85000.), + mechanisms=[Plasticity( + sigma_Y=300., + yield_criterion=HillYield(F=0.5, G=0.4, H=0.6, L=1.5, M=1.5, N=1.5), + isotropic_hardening=VoceHardening(Q=200., b=20.), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))]) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_mephac.txt") + _assert_equiv(ref, hist, 1e-3, "EPHAC") + + +def test_epani_matches_modul(work_in_examples): + """EPANI: cubic elasticity + 9-parameter anisotropic yield + Voce + 2x AF.""" + from simcoon.modular import CubicElasticity, AnisotropicYield, ChabocheHardening + # P must be an ADMISSIBLE quadratic form: symmetric with zero row sums + # on the normal block (deviatoric, PSD) — an indefinite P gives + # sqrt(negative) = NaN in Eq_stress_P (both legacy and modular). + props = [210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 1.2, 1.1, 1.1, -0.6, -0.6, -0.5, 1.6, 1.5, 1.4] + ref = _run_named("EPANI", props, 33, + work_in_examples, "MODUL_path.txt", "eq_epani.txt") + mat = ModularMaterial( + elasticity=CubicElasticity(C1=210000., C2=0.3, C3=85000.), + mechanisms=[Plasticity( + sigma_Y=300., + yield_criterion=AnisotropicYield( + P11=1.2, P22=1.1, P33=1.1, P12=-0.6, P13=-0.6, P23=-0.5, + P44=1.6, P55=1.5, P66=1.4), + isotropic_hardening=VoceHardening(Q=200., b=20.), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))]) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_mepani.txt") + _assert_equiv(ref, hist, 1e-3, "EPANI") + + +def test_epdfa_matches_modul(work_in_examples): + """EPDFA: cubic elasticity + DFA yield (Hill + hydrostatic K) + Voce + 2x AF.""" + from simcoon.modular import CubicElasticity, DFAYield, ChabocheHardening + props = [210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 0.5, 0.4, 0.6, 1.5, 1.5, 1.5, 0.1] + ref = _run_named("EPDFA", props, 33, + work_in_examples, "MODUL_path.txt", "eq_epdfa.txt") + mat = ModularMaterial( + elasticity=CubicElasticity(C1=210000., C2=0.3, C3=85000.), + mechanisms=[Plasticity( + sigma_Y=300., + yield_criterion=DFAYield(F=0.5, G=0.4, H=0.6, L=1.5, M=1.5, N=1.5, + K=0.1), + isotropic_hardening=VoceHardening(Q=200., b=20.), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))]) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_mepdfa.txt") + _assert_equiv(ref, hist, 1e-3, "EPDFA") + + +def test_epchg_matches_modul(work_in_examples): + """EPCHG (generic Chaboche): cubic elasticity + von Mises + N "Voce + terms" + N-term Chaboche. + + NOTE: the legacy N-term isotropic hardening couples every term through a + SINGLE Hp (dHp/dp = sum_i b_i (Q_i - Hp)) — mathematically ONE effective + Voce with b_eff = sum(b_i), Q_eff = sum(b_i Q_i)/sum(b_i), NOT the + standard combined-Voce sum. The modular twin (and the name adapter) map + to that single effective Voce.""" + from simcoon.modular import CubicElasticity, ChabocheHardening + # props: E nu G alpha | sigmaY N_iso N_kin criteria | (Q,b)xN | (C,D)xN + props = [210000., 0.3, 85000., 0., 300., 2, 2, 0, + 150., 15., 50., 40., + 30000., 172., 19500., 301.] + ref = _run_named("EPCHG", props, 33, + work_in_examples, "MODUL_path.txt", "eq_epchg.txt") + b_eff = 15. + 40. + q_eff = (15. * 150. + 40. * 50.) / b_eff + mat = ModularMaterial( + elasticity=CubicElasticity(C1=210000., C2=0.3, C3=85000.), + mechanisms=[Plasticity( + sigma_Y=300., + isotropic_hardening=VoceHardening(Q=q_eff, b=b_eff), + kinematic_hardening=ChabocheHardening( + terms=((30000., 172.), (19500., 301.))))]) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_mepchg.txt") + _assert_equiv(ref, hist, 1e-3, "EPCHG") + + +def test_ephin_matches_modul(work_in_examples): + """EPHIN (Hill, N yield surfaces): equivalence proven for N = 1. + + The LEGACY multi-surface path (N >= 2) is defective: it returns NaN even + for two identical surfaces, and even when the second surface can never + activate (sigma_Y = 5000 on a 2% path) — probed 2026-07. The modular + engine handles multiple mechanisms correctly (see + test_two_plasticity_equivalent_to_one_linear), so the name adapter is an + upgrade for N >= 2; the provable gate is the N = 1 case.""" + from simcoon.modular import HillYield, PowerLawHardening + # props: E nu alpha N | (sigmaY k m F G H L M N)xN + props = [210000., 0.3, 0., 1, + 300., 3000., 1.0, 0.5, 0.4, 0.6, 1.5, 1.5, 1.5] + ref = _run_named("EPHIN", props, 33, + work_in_examples, "MODUL_path.txt", "eq_ephin.txt") + mat = ModularMaterial( + elasticity=IsotropicElasticity(C1=210000., C2=0.3), + mechanisms=[Plasticity( + sigma_Y=300., + yield_criterion=HillYield(F=0.5, G=0.4, H=0.6, + L=1.5, M=1.5, N=1.5), + isotropic_hardening=PowerLawHardening(k=3000., m=1.0))]) + hist = _run_named("MODUL", mat.props, mat.nstatev, + work_in_examples, "MODUL_path.txt", "eq_mephin.txt") + _assert_equiv(ref, hist, 1e-5, "EPHIN") + + +def test_zennk_has_no_modular_twin(): + """ZENNK (Zener_Nfast) is a generalized KELVIN chain (branch driving + force sigma - L_i EV_i, branches in series), NOT a generalized Maxwell: + the modular Prony viscoelasticity is a different rheological model + (measured deviation 86% on the relaxation path). ZENNK therefore keeps + its dedicated implementation (no adapter) — same bucket as ZENER.""" + pass diff --git a/simcoon-python-builder/test/test_core/test_modular_finite.py b/simcoon-python-builder/test/test_core/test_modular_finite.py new file mode 100644 index 000000000..fce87a6a0 --- /dev/null +++ b/simcoon-python-builder/test/test_core/test_modular_finite.py @@ -0,0 +1,124 @@ +"""MODUL under finite strain (NLGEOM): Hencky hyperelastic composition. + +Registered in the finite dispatcher on the log-strain measures with a hard +corate_type == 3 (log_R) requirement: only there does the accumulated +corotational strain equal ln V exactly, making sigma = L:(ln V - sum eps_inel) +a genuine stored-energy law. These tests run the file solver on self-contained +temp path files (control_type 3: log-strain / Kirchhoff conjugate pair). +""" + +import numpy as np +import pytest + +from simcoon.modular import ( + ModularMaterial, + IsotropicElasticity, + Plasticity, + VonMisesYield, + VoceHardening, +) +from solver_harness import ( + C_TIME, + S_STRAIN, + S_STRESS, + S_WM, + path_file, + run_path, +) + + +def _run_finite(base_dir, umat_name, props, nstatev, corate, targets, + control_type=3): + return run_path(base_dir, umat_name, props, nstatev, corate, + path_file(targets, control_type)) + + +def _elastic_modul(): + return ModularMaterial( + elasticity=IsotropicElasticity(C1=100000.0, C2=0.3, alpha=0.0, + convention="Enu"), + ) + + +def test_modul_finite_matches_legacy_eliso(tmp_path): + """Elastic-only MODUL and legacy ELISO (modular adapter) are the same + log-strain Kirchhoff box; under NLGEOM ct3 + corate 3 their histories must + coincide, and the controlled Kirchhoff stress must map to e11 = tau11/E + exactly (pins the Kirchhoff-route output: a spurious Cauchy->Kirchhoff + conversion would scale the response by J).""" + mat = _elastic_modul() + h_mod = _run_finite(tmp_path / "mod", mat.umat_name, mat.props, + mat.nstatev, 3, [("S", 15000.0)]) + h_leg = _run_finite(tmp_path / "leg", "ELISO", [100000.0, 0.3, 0.0], 1, 3, + [("S", 15000.0)]) + + assert abs(h_mod[-1, C_TIME] - 1.0) < 1e-6 + assert abs(h_leg[-1, C_TIME] - 1.0) < 1e-6 + np.testing.assert_allclose(h_mod[-1, S_STRESS], h_leg[-1, S_STRESS], + atol=1e-6 * 15000.0) + np.testing.assert_allclose(h_mod[-1, S_STRAIN], h_leg[-1, S_STRAIN], + atol=1e-8) + # Hencky elasticity: log strain e11 = tau11 / E, exactly, at finite stretch + assert abs(h_mod[-1, S_STRAIN][0] - 0.15) < 1e-6 + + +def test_modul_finite_hyperelastic_closed_cycle(tmp_path): + """Load to 15% log strain and back to zero stress: a hyperelastic law + leaves no residual strain and no residual work. This is the hyper/hypo + consistency property corate 3 buys — a Jaumann-style rate would not + return to zero.""" + mat = _elastic_modul() + hist = _run_finite(tmp_path, mat.umat_name, mat.props, mat.nstatev, 3, + [("S", 15000.0), ("S", 0.0)]) + + assert abs(hist[-1, C_TIME] - 2.0) < 1e-6 + peak_e11 = np.max(np.abs(hist[:, S_STRAIN][:, 0])) + assert peak_e11 > 0.14 # genuinely finite strain + final = hist[-1] + assert np.max(np.abs(final[S_STRAIN])) < 1e-8 + assert np.max(np.abs(final[S_STRESS])) < 1e-4 + assert np.max(np.abs(final[S_WM])) < 1e-6 * 0.5 * 15000.0 * 0.15 + + +def test_modul_finite_rejects_non_log_corate(tmp_path): + """Any corate other than 3 (log_R) degrades the composition to a + non-integrable hypoelastic rate: rejected up front.""" + mat = _elastic_modul() + for corate in (0, 1, 2, 5): + with pytest.raises(RuntimeError, match="corate_type = 3"): + _run_finite(tmp_path / f"co{corate}", mat.umat_name, mat.props, + mat.nstatev, corate, [("S", 15000.0)]) + + +def test_modul_finite_plasticity_dissipates(tmp_path): + """Voce elasto-plasticity under NLGEOM: a strain-controlled cycle to 5% + log strain and back yields on loading, re-yields in compression on the + way back, and leaves strictly positive dissipation. + + Strain-controlled on purpose: this test pins the plasticity physics + deterministically; the stress-controlled unloading path (which needs the + solver's Newton divergence guards) is covered by + test_solver_robustness.py.""" + mat = ModularMaterial( + elasticity=IsotropicElasticity(C1=210000.0, C2=0.3, alpha=0.0, + convention="Enu"), + mechanisms=[ + Plasticity( + sigma_Y=300.0, + yield_criterion=VonMisesYield(), + isotropic_hardening=VoceHardening(Q=200.0, b=10.0), + ), + ], + ) + hist = _run_finite(tmp_path, mat.umat_name, mat.props, mat.nstatev, 3, + [("E", 0.05), ("E", 0.0)]) + + assert abs(hist[-1, C_TIME] - 2.0) < 1e-6 + peak_s11 = np.max(hist[:, S_STRESS][:, 0]) + assert peak_s11 > 300.0 # yielded on loading + final = hist[-1] + assert abs(final[S_STRAIN][0]) < 1e-8 # strain driven back to zero + assert final[S_STRESS][0] < -300.0 # reverse yield in compression + assert final[S_WM][3] > 0.0 # Wm_d > 0 + # No kinematic hardening -> no backstress storage -> Wm_ir stays 0 + assert abs(final[S_WM][2]) < 1e-12 diff --git a/simcoon-python-builder/test/test_core/test_solver_io.py b/simcoon-python-builder/test/test_core/test_solver_io.py new file mode 100644 index 000000000..185ef2040 --- /dev/null +++ b/simcoon-python-builder/test/test_core/test_solver_io.py @@ -0,0 +1,99 @@ +"""Tests for the solver JSON configuration and results persistence.""" + +import numpy as np +import pytest + +from simcoon.solver import (Block, SolverResults, StepMeca, StepThermomeca, + load_material_json, load_path_json, + load_simulation_json, save_material_json, + save_path_json, solve) + +ELISO_PROPS = [70000.0, 0.3, 1.0e-5] + + +def _uniaxial_block(ninc=20): + step = StepMeca(control=["strain"] + ["stress"] * 5, + value=[0.01, 0, 0, 0, 0, 0], ninc=ninc) + return Block(steps=[step]) + + +def test_material_roundtrip(tmp_path): + f = tmp_path / "material.json" + save_material_json(str(f), "ELISO", ELISO_PROPS, 1, orientation=(0.1, 0.2, 0.3)) + kw = load_material_json(str(f)) + assert kw["umat_name"] == "ELISO" + np.testing.assert_allclose(kw["props"], ELISO_PROPS) + assert kw["nstatev"] == 1 + assert kw["orientation"] == (0.1, 0.2, 0.3) + + +def test_path_roundtrip_mechanical(tmp_path): + f = tmp_path / "path.json" + b = _uniaxial_block() + save_path_json(str(f), [b], T_init=300.0, corate="green_naghdi") + blocks, T_init, corate = load_path_json(str(f)) + assert T_init == 300.0 + assert corate == "green_naghdi" + assert len(blocks) == 1 and len(blocks[0].steps) == 1 + s = blocks[0].steps[0] + assert isinstance(s, StepMeca) and not s._thermomechanical + np.testing.assert_allclose(s.value, [0.01, 0, 0, 0, 0, 0]) + assert s.ninc == 20 + + +def test_path_roundtrip_thermomechanical(tmp_path): + f = tmp_path / "path.json" + step = StepThermomeca(control="stress", value=[0.0] * 6, ninc=10, + thermal_control="heat_flux", Q=2.5) + save_path_json(str(f), [Block(steps=[step])], T_init=290.0) + blocks, _, _ = load_path_json(str(f)) + s = blocks[0].steps[0] + assert isinstance(s, StepThermomeca) + assert s.thermal_control == "heat_flux" + assert s.Q == 2.5 + + +def test_path_roundtrip_tabular(tmp_path): + f = tmp_path / "path.json" + table = np.column_stack([np.linspace(0.1, 1.0, 10), np.linspace(0, 0.01, 10)]) + step = StepMeca(control=["strain"] + ["zero"] * 5, mode="tabular", tabular=table) + save_path_json(str(f), [Block(steps=[step])], T_init=290.0) + blocks, _, _ = load_path_json(str(f)) + np.testing.assert_allclose(blocks[0].steps[0].tabular, table) + + +def test_simulation_json_solve_equivalence(tmp_path): + mf, pf = tmp_path / "m.json", tmp_path / "p.json" + save_material_json(str(mf), "ELISO", ELISO_PROPS, 1) + save_path_json(str(pf), [_uniaxial_block()], T_init=290.0) + + res_direct = solve(_uniaxial_block(), "ELISO", ELISO_PROPS, 1, T_init=290.0) + res_json = solve(**load_simulation_json(str(mf), str(pf))) + np.testing.assert_allclose(res_json["Stress"], res_direct["Stress"], atol=1e-12) + np.testing.assert_allclose(res_json["Strain"], res_direct["Strain"], atol=1e-12) + + +def test_results_npz_roundtrip(tmp_path): + res = solve(_uniaxial_block(), "ELISO", ELISO_PROPS, 1, T_init=290.0) + f = tmp_path / "results.npz" + res.save(str(f)) + res2 = SolverResults.load(str(f)) + assert res2.status == res.status + assert sorted(res2.keys()) == sorted(res.keys()) + for k in res.keys(): + np.testing.assert_allclose(res2[k], res[k]) + + +def test_results_dataframe(): + pd = pytest.importorskip("pandas") + res = solve(_uniaxial_block(ninc=5), "ELISO", ELISO_PROPS, 1, T_init=290.0) + df = res.to_dataframe() + assert isinstance(df, pd.DataFrame) + assert len(df) == 5 + assert "Stress_11" in df.columns and "Time" in df.columns + + +def test_results_unknown_key(): + res = solve(_uniaxial_block(ninc=5), "ELISO", ELISO_PROPS, 1, T_init=290.0) + with pytest.raises(KeyError): + res["NotAField"] diff --git a/simcoon-python-builder/test/test_core/test_solver_robustness.py b/simcoon-python-builder/test/test_core/test_solver_robustness.py new file mode 100644 index 000000000..aa91af0d3 --- /dev/null +++ b/simcoon-python-builder/test/test_core/test_solver_robustness.py @@ -0,0 +1,70 @@ +"""Solver Newton divergence guards. + +Stress-controlled UNLOADING through the plastic->elastic branch flip used to +diverge geometrically when the hardening tangent is soft and SATURATING: the +predictor (elastoplastic tangent) overshoots past the reverse-yield span, the +trial re-yields in compression, and the undamped Newton oscillates with +exploding corrections (traced DE11: 8e-3 -> 0.83 -> 433 -> 4e13). The run died +on a singular inverse (tangent assembly / RU_decomposition). + +Guards under test: +- ModularUMAT rejects a pathological plastic multiplier (dp > 1 per increment) + with tnew_dt = 0.5 instead of committing a hardening-saturated garbage state, + so the solver bisects the increment away (modular_umat.cpp); +- tangent assembly falls back to the elastic operator on a degenerate inverse + instead of aborting (tangent_assembly.cpp); +- singular global Jacobian K -> step cut, then the existing inforce path at the + minimal fraction (never a hard throw); exception_inv / exception_det from the + kinematics -> step cut, rethrown only at Dn_mini (solver.cpp). + +Control type 1 on purpose: reproduces without the finite-strain MODUL +registration. The fix is in the shared solver Newton loop, so it is not +modular-specific (see the note below the test on why the EPICP illustration +was dropped). +""" + +from simcoon.modular import ( + ModularMaterial, + IsotropicElasticity, + Plasticity, + VonMisesYield, + VoceHardening, +) +from solver_harness import C_TIME, S_STRESS, S_WM, path_file, run_path + + +def _run_stress_cycle(base_dir, umat_name, props, nstatev, targets): + """Small-strain (ct1), fully stress-controlled uniaxial cycle.""" + return run_path(base_dir, umat_name, props, nstatev, 1, + path_file([("S", t) for t in targets], 1)) + + +def test_modul_voce_stress_unload_cycle(tmp_path): + """MODUL + saturating Voce, load past yield then stress-unload to zero: + used to die on 'inv(): matrix is singular'. Must now complete the cycle + with the stress driven back to zero and positive plastic dissipation.""" + mat = ModularMaterial( + elasticity=IsotropicElasticity(C1=210000.0, C2=0.3, alpha=0.0, + convention="Enu"), + mechanisms=[ + Plasticity( + sigma_Y=300.0, + yield_criterion=VonMisesYield(), + isotropic_hardening=VoceHardening(Q=200.0, b=10.0), + ), + ], + ) + hist = _run_stress_cycle(tmp_path, mat.umat_name, mat.props, mat.nstatev, + [400.0, 0.0]) + final = hist[-1] + assert abs(final[C_TIME] - 2.0) < 1e-6 + assert abs(final[S_STRESS][0]) < 1e-3 # unloaded to zero stress + assert final[S_WM][3] > 1.0 # plastic dissipation happened + +# NOTE: an EPICP (legacy CCP) soft-hardening variant of this test was dropped. +# The crash fix lives in the shared solver Newton loop (not the modular engine), +# so it is not modular-specific — but at the EPICP soft-hardening extreme +# (k=200, m=0.3) the stress-unload branch flip is genuinely non-convergent and +# resolves differently across LAPACK backends (completes on macOS, does not on +# Linux/Windows). Asserting convergence there tests the platform, not the fix; +# the modular Voce case above is the portable regression guard. diff --git a/simcoon-python-builder/test/test_core/test_solver_run.py b/simcoon-python-builder/test/test_core/test_solver_run.py new file mode 100644 index 000000000..0a66e3e81 --- /dev/null +++ b/simcoon-python-builder/test/test_core/test_solver_run.py @@ -0,0 +1,584 @@ +"""Tests for the in-memory solver API (simcoon.solver / _core.solver_run). + +The reference is the file-driven solver `sim._core.solver` (same C++ engine +through solver_file_sink): for every control type / corate / loading mode +exercised here, the in-memory run must reproduce the file run to numerical +identity. +""" + +import numpy as np +import pytest + +import simcoon as sim +from simcoon.solver import Block, StepMeca, StepThermomeca, from_file, solve + +# --------------------------------------------------------------------------- +# helpers: file-driven reference runs +# --------------------------------------------------------------------------- + +#: path-file component order (11, 12, 22, 13, 23, 33) -> Voigt index +_FILE_ORDER = [0, 3, 1, 4, 5, 2] + +# default file output columns (no output.dat): +# 0 block | 1 cycle | 2 step | 3 inc | 4 time | 5 T | 6 Q | 7 r | +# 8:14 strain (Green-Lagrange) | 14:20 stress (Cauchy) | 20:24 Wm +_C_TIME, _C_T = 4, 5 +_S_STRAIN, _S_STRESS, _S_WM = slice(8, 14), slice(14, 20), slice(20, 24) + + +def _meca_state_lines(flags, values): + """Emit the #prescribed_mechanical_state lines in path-file order.""" + toks = [] + for k in _FILE_ORDER: + toks.append(f"{flags[k]} {values[k]}") + return "{}\n{} {}\n{} {} {}".format(*toks) + + +def _step_text(flags, values, time=1.0, ninc=100, mode=1, T=290.0, BC_w=None): + txt = f"""#Mode +{mode} +#Dn_init 1. +#Dn_mini 1. +#Dn_inc {1.0/ninc} +#time +{time} +#prescribed_mechanical_state +{_meca_state_lines(flags, values)} +""" + if BC_w is not None: + BC_w = np.asarray(BC_w) + txt += "#Rotation\n" + "\n".join( + " ".join(str(BC_w[i, j]) for j in range(3)) for i in range(3) + ) + "\n" + txt += f"#prescribed_temperature_state\nT {T}\n" + return txt + + +def _path_text(steps_text, control_type=1, loading_type=1, ncycle=1, T_init=290.0): + return f"""#Initial_temperature +{T_init} +#Number_of_blocks +1 + +#Block +1 +#Loading_type +{loading_type} +#Control_type(NLGEOM) +{control_type} +#Repeat +{ncycle} +#Steps +{len(steps_text)} + +""" + "\n".join(steps_text) + + +def run_file_solver(tmp_path, path_text, umat, props, nstatev, corate=2, + solver_type=0, extra_files=None): + data = tmp_path / "data" + data.mkdir(exist_ok=True) + results = tmp_path / "results" + results.mkdir(exist_ok=True) + (data / "path.txt").write_text(path_text) + for name, content in (extra_files or {}).items(): + (data / name).write_text(content) + sim._core.solver(umat, np.asarray(props, dtype=float), nstatev, 0.0, 0.0, 0.0, + solver_type, corate, str(data), str(results), "path.txt", "res.txt") + return np.loadtxt(results / "res_global-0.txt") + + +def _close_to_text(mem, txt): + """Compare in-memory values against the same values parsed from the result + text file, whose writer prints ~6 significant digits.""" + scale = max(np.abs(txt).max(), 1e-30) + np.testing.assert_allclose(mem, txt, rtol=2e-5, atol=2e-6 * scale) + + +def assert_matches_file(res, out): + """Compare an in-memory SolverResults against a file-solver output table.""" + assert len(res) == out.shape[0] + _close_to_text(res["Time"], out[:, _C_TIME]) + _close_to_text(res["Temp"], out[:, _C_T]) + _close_to_text(res["Strain"].T, out[:, _S_STRAIN]) + _close_to_text(res["Stress"].T, out[:, _S_STRESS]) + _close_to_text(res["Wm"].T, out[:, _S_WM]) + + +ELISO_PROPS = [70000.0, 0.3, 1.0e-5] +EPICP_PROPS = [70000.0, 0.3, 1.0e-5, 300.0, 1000.0, 0.3] # E nu alpha sigmaY k m +EPICP_NSTATEV = 8 +SNTVE_PROPS = [70000.0, 0.3, 1.0e-5] + +_UNIAXIAL = ["strain"] + ["stress"] * 5 + + +# --------------------------------------------------------------------------- +# small strain +# --------------------------------------------------------------------------- + +def test_eliso_uniaxial_analytic(): + E, nu, _ = ELISO_PROPS + step = StepMeca(control=_UNIAXIAL, value=[0.01, 0, 0, 0, 0, 0], ninc=50) + res = solve(step, "ELISO", ELISO_PROPS, 1, T_init=290.0) + assert res.status == 0 + np.testing.assert_allclose(res["Stress"][0, -1], E * 0.01, rtol=1e-10) + np.testing.assert_allclose(res["Strain"][1, -1], -nu * 0.01, atol=1e-12) + np.testing.assert_allclose(res["Stress"][1:, -1], 0.0, atol=1e-8) + # tangent is the isotropic stiffness + L = sim.L_iso([E, nu], "Enu") + np.testing.assert_allclose(res["TangentMatrix"][:, :, -1], L, rtol=1e-8) + + +def test_eliso_load_unload_vs_file(tmp_path): + flags = ["E"] + ["S"] * 5 + steps = [_step_text(flags, [0.02, 0, 0, 0, 0, 0], ninc=100), + _step_text(flags, [0.0, 0, 0, 0, 0, 0], ninc=100)] + out = run_file_solver(tmp_path, _path_text(steps), "ELISO", ELISO_PROPS, 1) + + s1 = StepMeca(control=_UNIAXIAL, value=[0.02, 0, 0, 0, 0, 0], ninc=100) + s2 = StepMeca(control=_UNIAXIAL, value=[0.0, 0, 0, 0, 0, 0], ninc=100) + res = solve(Block(steps=[s1, s2]), "ELISO", ELISO_PROPS, 1, T_init=290.0) + assert_matches_file(res, out) + + +def test_epicp_mixed_cyclic_vs_file(tmp_path): + # stress-controlled uniaxial cycling into the plastic range + flags = ["S"] * 6 + steps = [_step_text(flags, [400.0, 0, 0, 0, 0, 0], ninc=100), + _step_text(flags, [0.0, 0, 0, 0, 0, 0], ninc=100)] + out = run_file_solver(tmp_path, _path_text(steps, ncycle=2), "EPICP", + EPICP_PROPS, EPICP_NSTATEV) + + s1 = StepMeca(control="stress", value=[400.0, 0, 0, 0, 0, 0], ninc=100) + s2 = StepMeca(control="stress", value=[0.0, 0, 0, 0, 0, 0], ninc=100) + res = solve(Block(steps=[s1, s2], ncycle=2), "EPICP", EPICP_PROPS, + EPICP_NSTATEV, T_init=290.0) + assert_matches_file(res, out) + # cycle index bookkeeping + assert res["Cycle"].max() == 1 + assert len(res) == 2 * 2 * 100 + # plasticity happened + assert res["Statev"][0].max() > 1.0e-4 + + +# --------------------------------------------------------------------------- +# finite strain: control types 2/3/4 x corates +# --------------------------------------------------------------------------- + +@pytest.mark.parametrize("umat,props,nstatev", [ + ("ELISO", ELISO_PROPS, 1), + ("EPICP", EPICP_PROPS, EPICP_NSTATEV), + ("SNTVE", SNTVE_PROPS, 1), +]) +@pytest.mark.parametrize("control_type", [2, 3, 4]) +@pytest.mark.parametrize("corate", [0, 2, 5]) +def test_finite_strain_vs_file(tmp_path, umat, props, nstatev, control_type, corate): + if umat == "EPICP" and control_type == 4 and corate == 5: + # pre-existing engine limitation (identical for the file solver): plasticity + # under strain-controlled Biot loading with the log_F rate fails in + # logarithmic_F (singular DF inversion) + pytest.skip("EPICP + Biot control + logarithmic_F: known engine limitation") + if umat == "SNTVE" and control_type == 4: + target = 0.05 # keep the Biot-controlled hyperelastic case well-conditioned + else: + target = 0.08 + flags = ["E"] + ["S"] * 5 + steps = [_step_text(flags, [target, 0, 0, 0, 0, 0], ninc=50, + BC_w=np.zeros((3, 3)))] + out = run_file_solver(tmp_path, _path_text(steps, control_type=control_type), + umat, props, nstatev, corate=corate) + + step = StepMeca(control=_UNIAXIAL, value=[target, 0, 0, 0, 0, 0], ninc=50, + BC_w=np.zeros((3, 3))) + ct = {2: "green_lagrange", 3: "logarithmic", 4: "biot"}[control_type] + res = solve(Block(steps=[step], control_type=ct), umat, props, nstatev, + T_init=290.0, corate=corate) + assert_matches_file(res, out) + + +def test_ct3_spin_vs_file(tmp_path): + # logarithmic control with a superimposed rotation rate (BC_w) + BC_w = np.array([[0.0, 0.2, 0.0], [-0.2, 0.0, 0.0], [0.0, 0.0, 0.0]]) + flags = ["E"] + ["S"] * 5 + steps = [_step_text(flags, [0.05, 0, 0, 0, 0, 0], ninc=50, BC_w=BC_w)] + out = run_file_solver(tmp_path, _path_text(steps, control_type=3), "ELISO", + ELISO_PROPS, 1, corate=2) + + step = StepMeca(control=_UNIAXIAL, value=[0.05, 0, 0, 0, 0, 0], ninc=50, BC_w=BC_w) + res = solve(Block(steps=[step], control_type="logarithmic"), "ELISO", + ELISO_PROPS, 1, T_init=290.0, corate="logarithmic") + assert_matches_file(res, out) + # the rotation history is captured + R_end = res["R"][:, :, -1] + assert np.abs(R_end - np.eye(3)).max() > 1e-3 + + +def test_ct5_F_control(): + # simple shear driven by the full deformation gradient + F_target = np.eye(3) + F_target[0, 1] = 0.2 + step = StepMeca(control="F", value=F_target.ravel(), ninc=50) + res = solve(Block(steps=[step], control_type="F"), "SNTVE", SNTVE_PROPS, 1, + T_init=290.0, corate="logarithmic") + assert res.status == 0 + np.testing.assert_allclose(res["F"][0, 1, -1], 0.2, atol=1e-10) + assert abs(res["Stress"][3, -1]) > 1.0 # shear stress developed + + +# --------------------------------------------------------------------------- +# loading modes +# --------------------------------------------------------------------------- + +def test_sinusoidal_vs_file(tmp_path): + flags = ["E"] + ["S"] * 5 + steps = [_step_text(flags, [0.01, 0, 0, 0, 0, 0], ninc=100, mode=2)] + out = run_file_solver(tmp_path, _path_text(steps), "ELISO", ELISO_PROPS, 1) + + step = StepMeca(control=_UNIAXIAL, value=[0.01, 0, 0, 0, 0, 0], ninc=100, + mode="sinusoidal") + res = solve(step, "ELISO", ELISO_PROPS, 1, T_init=290.0) + assert_matches_file(res, out) + # sinusoidal profile: increments are not uniform + de = np.diff(res["Strain"][0]) + assert de.max() / de.min() > 1.5 + + +def test_tabular_memory_vs_file(tmp_path): + # same table driven from disk (mode-3 file) and from memory (tab_data) + t = np.linspace(0.02, 1.0, 50) + e11 = 0.015 * np.sin(np.pi * t) + table = np.column_stack([t, e11]) + tab_lines = "\n".join( + f"{i+1} {t[i]:.16g} {e11[i]:.16g}" for i in range(len(t)) + ) + # mode-3 file step: flags only (no values), thermal token '0' = constant T + step3 = """#Mode +3 +#File +tab.txt +#Dn_init 1. +#Dn_mini 1. +#prescribed_mechanical_state +E +0 0 +0 0 0 +#T_is_set +0 +""" + out = run_file_solver(tmp_path, _path_text([step3]), "ELISO", ELISO_PROPS, 1, + extra_files={"tab.txt": tab_lines}) + + step = StepMeca(control=["strain"] + ["zero"] * 5, mode="tabular", tabular=table) + res = solve(step, "ELISO", ELISO_PROPS, 1, T_init=290.0) + assert_matches_file(res, out) + np.testing.assert_allclose(res["Time"], t, atol=1e-12) + + +# --------------------------------------------------------------------------- +# thermomechanical blocks +# --------------------------------------------------------------------------- + +ELISO_T_PROPS = [1.0e-9, 1.0, 70000.0, 0.3, 1.0e-5] # rho c_p E nu alpha + + +def _thermo_step_text(flags, values, thermal_token, time=1.0, ninc=50): + return f"""#Mode +1 +#Dn_init 1. +#Dn_mini 1. +#Dn_inc {1.0/ninc} +#time +{time} +#prescribed_mechanical_state +{_meca_state_lines(flags, values)} +#prescribed_thermal_state +{thermal_token} +""" + + +def test_thermomeca_temperature_ramp_vs_file(tmp_path): + flags = ["S"] * 6 + steps = [_thermo_step_text(flags, [0.0] * 6, "T 340")] + out = run_file_solver(tmp_path, _path_text(steps, loading_type=2), "ELISO", + ELISO_T_PROPS, 1) + + step = StepThermomeca(control="stress", value=[0.0] * 6, ninc=50, T_final=340.0) + res = solve(step, "ELISO", ELISO_T_PROPS, 1, T_init=290.0) + assert_matches_file(res, out) + # free thermal expansion + np.testing.assert_allclose(res["Strain"][0, -1], 1.0e-5 * 50.0, rtol=1e-8) + assert "Q" in res and "Wt" in res and "dSdE" in res + + +def test_thermomeca_heat_flux_and_convection(): + # prescribed heat flux drives the temperature + step = StepThermomeca(control="stress", value=[0.0] * 6, ninc=50, + thermal_control="heat_flux", Q=1.0e-6) + res = solve(step, "ELISO", ELISO_T_PROPS, 1, T_init=290.0) + assert res.status == 0 + assert res["Temp"][-1] != pytest.approx(290.0) + + # 0D convection relaxes towards T_init + step = StepThermomeca(control="stress", value=[0.0] * 6, ninc=50, + thermal_control="convection", q_conv=1.0e-6) + res = solve(step, "ELISO", ELISO_T_PROPS, 1, T_init=290.0) + assert res.status == 0 + + +def test_thermomeca_epicp_vs_file(tmp_path): + props = [1.0e-9, 1.0] + EPICP_PROPS # rho c_p then mechanical props + flags = ["E"] + ["S"] * 5 + steps = [_thermo_step_text(flags, [0.01, 0, 0, 0, 0, 0], "T 290")] + out = run_file_solver(tmp_path, _path_text(steps, loading_type=2), "EPICP", + props, EPICP_NSTATEV) + + step = StepThermomeca(control=_UNIAXIAL, value=[0.01, 0, 0, 0, 0, 0], ninc=50, + T_final=290.0) + res = solve(step, "EPICP", props, EPICP_NSTATEV, T_init=290.0) + assert_matches_file(res, out) + # guards the thermomechanical stress output fix (sigma, not the unset tau route) + assert res["Stress"][0, -1] > 300.0 + + +# --------------------------------------------------------------------------- +# modular UMAT / adapters / tangent modes +# --------------------------------------------------------------------------- + +def test_modul_and_adapter_match(): + from simcoon.modular import (ModularMaterial, IsotropicElasticity, Plasticity, + VonMisesYield, PowerLawHardening) + + mat = ModularMaterial( + elasticity=IsotropicElasticity(C1=70000.0, C2=0.3, alpha=1.0e-5), + mechanisms=[Plasticity(sigma_Y=300.0, + yield_criterion=VonMisesYield(), + isotropic_hardening=PowerLawHardening(k=1000.0, m=0.3))], + ) + step = StepMeca(control=_UNIAXIAL, value=[0.02, 0, 0, 0, 0, 0], ninc=100) + res_mod = solve(step, mat.umat_name, mat.props, mat.nstatev, T_init=290.0) + # EPICP is a dedicated kernel; the modular engine integrates the same model + # with a different local scheme -> close but not identical in the transient + res_leg = solve(step, "EPICP", EPICP_PROPS, EPICP_NSTATEV, T_init=290.0) + np.testing.assert_allclose(res_mod["Stress"][0], res_leg["Stress"][0], rtol=3e-2) + # the adapter-served legacy name ELISO and a pure-elastic MODUL are the SAME + # engine and must match exactly + from simcoon.modular import ModularMaterial as MM, IsotropicElasticity as IE + mat_el = MM(elasticity=IE(C1=70000.0, C2=0.3, alpha=1.0e-5)) + step_el = StepMeca(control=_UNIAXIAL, value=[0.01, 0, 0, 0, 0, 0], ninc=20) + res_el_mod = solve(step_el, mat_el.umat_name, mat_el.props, mat_el.nstatev, T_init=290.0) + res_el_leg = solve(step_el, "ELISO", ELISO_PROPS, 1, T_init=290.0) + np.testing.assert_allclose(res_el_mod["Stress"], res_el_leg["Stress"], atol=1e-9) + + +@pytest.mark.parametrize("mode", ["none", "continuum", "algorithmic"]) +def test_tangent_modes_converge_to_same_state(mode): + step = StepMeca(control="stress", value=[400.0, 0, 0, 0, 0, 0], ninc=50) + res = solve(step, "EPICP", EPICP_PROPS, EPICP_NSTATEV, T_init=290.0, + tangent_mode=mode) + assert res.status == 0 + np.testing.assert_allclose(res["Stress"][0, -1], 400.0, atol=1e-4) + + +# --------------------------------------------------------------------------- +# error paths +# --------------------------------------------------------------------------- + +def test_thermomechanical_rejects_finite_strain_control(): + step = StepThermomeca(control="stress", value=[0.0] * 6, T_final=300.0) + with pytest.raises(ValueError): + solve(Block(steps=[step], control_type="logarithmic"), "ELISO", + ELISO_T_PROPS, 1) + + +def test_bad_control_flag(): + with pytest.raises(ValueError): + StepMeca(control=["bad_flag"] * 6, value=[0.0] * 6).to_dict(1, 290.0) + + +def test_tabular_requires_table(): + step = StepMeca(control="strain", mode="tabular") + with pytest.raises(ValueError): + solve(step, "ELISO", ELISO_PROPS, 1) + + +def test_stress_control_rejected_for_F_control(): + step = StepMeca(control=["stress"] * 9, value=np.eye(3).ravel()) + with pytest.raises(ValueError): + solve(Block(steps=[step], control_type="F"), "ELISO", ELISO_PROPS, 1) + + +def test_mixed_step_types_rejected(): + b = Block(steps=[StepMeca(value=[0.0] * 6), + StepThermomeca(value=[0.0] * 6)]) + with pytest.raises(ValueError): + b.to_dict(290.0) + + +def test_mixed_block_types_rejected(): + # a mechanical block followed by a thermomechanical one must fail up front + # (the engine constructs the state variables once, for the first block) + b1 = Block(steps=[StepMeca(control=_UNIAXIAL, value=[0.01, 0, 0, 0, 0, 0], ninc=5)]) + b2 = Block(steps=[StepThermomeca(control="stress", value=[0.0] * 6, + T_final=340.0, ninc=5)]) + with pytest.raises(ValueError): + solve([b1, b2], "ELISO", ELISO_T_PROPS, 1, T_init=290.0) + + +def test_tabular_heat_flux(): + # thermomechanical tabular step with a prescribed heat-flux column (Q = 0: + # adiabatic); strain driven so the mechanical response is deterministic + t = np.linspace(0.05, 1.0, 20) + e11 = 0.002 * t + table = np.column_stack([t, np.zeros_like(t), e11]) + step = StepThermomeca(control=["strain"] + ["zero"] * 5, mode="tabular", + tabular=table, thermal_control="heat_flux") + res = solve(step, "ELISO", ELISO_T_PROPS, 1, T_init=290.0) + assert res.status == 0 + np.testing.assert_allclose(res["Strain"][0], e11, atol=1e-9) + assert "Q" in res + + +def test_tabular_cycling_rejected(): + # the time column of a table is absolute: cycling a tabular step is ill-defined + table = np.column_stack([np.linspace(0.1, 1.0, 10), np.linspace(0, 0.01, 10)]) + step = StepMeca(control=["strain"] + ["zero"] * 5, mode="tabular", tabular=table) + with pytest.raises(ValueError): + solve(Block(steps=[step], ncycle=2), "ELISO", ELISO_PROPS, 1) + + +def test_tabular_restarting_time_rejected(): + # a second-step table whose ABSOLUTE time column restarts at 0 would feed + # negative DTime to the UMAT + s1 = StepMeca(control=_UNIAXIAL, value=[0.005, 0, 0, 0, 0, 0], ninc=10, time=1.0) + table = np.column_stack([np.linspace(0.1, 1.0, 10), np.linspace(0.005, 0.01, 10)]) + s2 = StepMeca(control=["strain"] + ["zero"] * 5, mode="tabular", tabular=table) + with pytest.raises(RuntimeError): + solve(Block(steps=[s1, s2]), "ELISO", ELISO_PROPS, 1) + + +# --------------------------------------------------------------------------- +# thermomechanical tabular + parameter spellings +# --------------------------------------------------------------------------- + +def test_thermomechanical_tabular_constant_T(): + # default (constant temperature) thermomechanical tabular step: guards the + # cBC_T >= 2 column-count fix in step_thermomeca::generate + t = np.linspace(0.05, 1.0, 20) + e11 = 0.005 * t + step = StepThermomeca(control=["strain"] + ["zero"] * 5, mode="tabular", + tabular=np.column_stack([t, e11])) + res = solve(step, "ELISO", ELISO_T_PROPS, 1, T_init=290.0) + assert res.status == 0 + np.testing.assert_allclose(res["Strain"][0], e11, atol=1e-10) + np.testing.assert_allclose(res["Temp"], 290.0, atol=1e-10) + + +def test_tabular_T_chains_to_next_step(): + # a tabular temperature ramp must chain its FINAL temperature into the next + # step's hold value (no spurious ramp back to T_init) + t = np.linspace(0.05, 1.0, 20) + T_col = np.linspace(290.0 + 3.0, 350.0, 20) + s1 = StepMeca(control=["zero"] * 6, mode="tabular", tabular_T=True, + tabular=np.column_stack([t, T_col])) + s2 = StepMeca(control="stress", value=[0.0] * 6, ninc=10, time=1.0) # T_final=None + res = solve(Block(steps=[s1, s2]), "ELISO", ELISO_PROPS, 1, T_init=290.0) + np.testing.assert_allclose(res["Temp"][-10:], 350.0, atol=1e-9) + + +def test_lambda_solver_param(): + step = StepMeca(control=_UNIAXIAL, value=[0.01, 0, 0, 0, 0, 0], ninc=10) + res = solve(step, "ELISO", ELISO_PROPS, 1, T_init=290.0, lambda_solver=5.0e4) + assert res.status == 0 + np.testing.assert_allclose(res["Stress"][0, -1], 700.0, rtol=1e-8) + + +# --------------------------------------------------------------------------- +# legacy file parsing (from_file / material_from_file) +# --------------------------------------------------------------------------- + +def test_from_file_mechanical_vs_file(tmp_path): + # parse a legacy path.txt into Blocks and solve in memory: must reproduce + # the file-driven run of the very same file + flags = ["E"] + ["S"] * 5 + steps = [_step_text(flags, [0.02, 0, 0, 0, 0, 0], ninc=50), + _step_text(flags, [0.0, 0, 0, 0, 0, 0], ninc=50)] + path_text = _path_text(steps, ncycle=2) + out = run_file_solver(tmp_path, path_text, "ELISO", ELISO_PROPS, 1) + + blocks, T_init = from_file(str(tmp_path / "data"), "path.txt") + assert T_init == 290.0 + assert len(blocks) == 1 and blocks[0].ncycle == 2 and len(blocks[0].steps) == 2 + res = solve(blocks, "ELISO", ELISO_PROPS, 1, T_init=T_init) + assert_matches_file(res, out) + + +def test_from_file_thermomechanical_vs_file(tmp_path): + flags = ["S"] * 6 + steps = [_thermo_step_text(flags, [0.0] * 6, "T 340")] + path_text = _path_text(steps, loading_type=2) + out = run_file_solver(tmp_path, path_text, "ELISO", ELISO_T_PROPS, 1) + + blocks, T_init = from_file(str(tmp_path / "data"), "path.txt") + s = blocks[0].steps[0] + assert isinstance(s, StepThermomeca) and s.thermal_control == "temperature" + assert s.T_final == 340.0 + res = solve(blocks, "ELISO", ELISO_T_PROPS, 1, T_init=T_init) + assert_matches_file(res, out) + + +def test_from_file_tabular_vs_file(tmp_path): + t = np.linspace(0.02, 1.0, 50) + e11 = 0.015 * np.sin(np.pi * t) + tab_lines = "\n".join(f"{i+1} {t[i]:.16g} {e11[i]:.16g}" for i in range(len(t))) + step3 = """#Mode +3 +#File +tab.txt +#Dn_init 1. +#Dn_mini 1. +#prescribed_mechanical_state +E +0 0 +0 0 0 +#T_is_set +0 +""" + path_text = _path_text([step3]) + out = run_file_solver(tmp_path, path_text, "ELISO", ELISO_PROPS, 1, + extra_files={"tab.txt": tab_lines}) + + blocks, T_init = from_file(str(tmp_path / "data"), "path.txt") + s = blocks[0].steps[0] + assert s.mode == 3 and not s.tabular_T + assert s.control[0] == "strain" and s.control[1:] == ["zero"] * 5 + np.testing.assert_allclose(s.tabular[:, 0], t, atol=1e-14) + res = solve(blocks, "ELISO", ELISO_PROPS, 1, T_init=T_init) + assert_matches_file(res, out) + + +def test_material_from_file(tmp_path): + from simcoon.solver import material_from_file + (tmp_path / "material.dat").write_text("""Material +Name\tELISO +Number_of_material_parameters\t3 +Number_of_internal_variables\t1 + +#Orientation +psi\t0.1 +theta\t0.2 +phi\t0.3 + +#Mechanical +E 70000. +nu 0.3 +alpha 1.E-5 +""") + kw = material_from_file(str(tmp_path), "material.dat") + assert kw["umat_name"] == "ELISO" + assert kw["nstatev"] == 1 + np.testing.assert_allclose(kw["props"], [70000.0, 0.3, 1.0e-5]) + assert kw["orientation"] == (0.1, 0.2, 0.3) + res = solve(StepMeca(control=_UNIAXIAL, value=[0.01, 0, 0, 0, 0, 0], ninc=10), + T_init=290.0, **kw) + assert res.status == 0 diff --git a/simcoon-python-builder/test/test_core/test_umat_T.py b/simcoon-python-builder/test/test_core/test_umat_T.py new file mode 100644 index 000000000..266a7d6d0 --- /dev/null +++ b/simcoon-python-builder/test/test_core/test_umat_T.py @@ -0,0 +1,127 @@ +"""Tests for the point-wise thermomechanical UMAT binding sim.umat_T.""" + +import numpy as np +import pytest + +import simcoon as sim +from simcoon.solver import StepThermomeca, solve + +ELISO_T_PROPS = [1.0e-9, 1.0, 70000.0, 0.3, 1.0e-5] # rho c_p E nu alpha + + +def _batch(n, nstatev=1): + return dict( + etot=np.zeros((6, n), order="F"), + Detot=np.zeros((6, n), order="F"), + sigma=np.zeros((6, n), order="F"), + DR=np.asfortranarray(np.tile(np.eye(3)[:, :, None], (1, 1, n))), + statev=np.zeros((nstatev, n), order="F"), + Wm=np.zeros((4, n), order="F"), + Wt=np.zeros((3, n), order="F"), + ) + + +def test_eliso_T_constrained_thermal_stress(): + rho, c_p, E, nu, alpha = ELISO_T_PROPS + n = 4 + b = _batch(n) + props = np.array(ELISO_T_PROPS, dtype=float).reshape(-1, 1) + T = np.full(n, 293.15) + DT = np.full(n, 10.0) + sigma, statev, Wm, Wt, r, dSdE, dSdT, drdE, drdT = sim.umat_T( + "ELISO", b["etot"], b["Detot"], b["sigma"], b["DR"], props, b["statev"], + 0.0, 1.0, b["Wm"], b["Wt"], T, DT) + # fully constrained heating: sigma = -E alpha DT / (1 - 2 nu) on the diagonal + expected = -E * alpha * 10.0 / (1.0 - 2.0 * nu) + np.testing.assert_allclose(sigma[0:3, :], expected, rtol=1e-10) + np.testing.assert_allclose(sigma[3:6, :], 0.0, atol=1e-12) + # shapes of the coupled tangents + assert dSdE.shape == (6, 6, n) + assert dSdT.shape == (6, n) + assert drdE.shape == (6, n) + assert drdT.shape in ((n,), (n, 1)) + assert r.shape in ((n,), (n, 1)) + # dSdT = -L : alpha + L = sim.L_iso([E, nu], "Enu") + a = np.array([alpha, alpha, alpha, 0, 0, 0]) + np.testing.assert_allclose(dSdT[:, 0], -L @ a, rtol=1e-10) + + +def test_umat_T_per_point_props(): + n = 2 + b = _batch(n) + props = np.column_stack([ + np.array([1e-9, 1.0, 70000.0, 0.3, 1.0e-5]), + np.array([1e-9, 1.0, 210000.0, 0.3, 1.0e-5]), + ]) + T = np.full(n, 293.15) + DT = np.full(n, 10.0) + Detot = np.zeros((6, n), order="F") + Detot[0, :] = 0.001 # uniaxial strain increment on both points + sigma = sim.umat_T("ELISO", b["etot"], Detot, b["sigma"], b["DR"], props, + b["statev"], 0.0, 1.0, b["Wm"], b["Wt"], T, DT * 0.0)[0] + # stiffer point develops proportionally larger stress + np.testing.assert_allclose(sigma[0, 1] / sigma[0, 0], 3.0, rtol=1e-10) + + +def test_umat_T_consistent_with_block_solver(): + # drive the point-wise UMAT with the kinematics found by the block solver + # (stress-free thermal expansion): it must reproduce the near-zero stress + step = StepThermomeca(control="stress", value=[0.0] * 6, ninc=10, T_final=340.0) + res = solve(step, "ELISO", ELISO_T_PROPS, 1, T_init=290.0) + n = 1 + b = _batch(n) + props = np.array(ELISO_T_PROPS, dtype=float).reshape(-1, 1) + # last increment: state at inc -2, increments to inc -1 + etot = np.asfortranarray(res["Strain"][:, [-2]]) + Detot = np.asfortranarray(res["Strain"][:, [-1]] - res["Strain"][:, [-2]]) + statev = np.asfortranarray(res["Statev"][:, [-2]]) + sigma0 = np.asfortranarray(res["Stress"][:, [-2]]) + T = np.array([res["Temp"][-2]]) + DT = np.array([res["Temp"][-1] - res["Temp"][-2]]) + sigma_pt = sim.umat_T("ELISO", etot, Detot, sigma0, b["DR"], props, statev, + 0.9, 0.1, b["Wm"], b["Wt"], T, DT)[0] + np.testing.assert_allclose(sigma_pt[:, 0], res["Stress"][:, -1], atol=1e-6) + + +def test_umat_T_unknown_name_raises(): + b = _batch(1) + props = np.array(ELISO_T_PROPS, dtype=float).reshape(-1, 1) + with pytest.raises(Exception): + sim.umat_T("XXXXX", b["etot"], b["Detot"], b["sigma"], b["DR"], props, + b["statev"], 0.0, 1.0, b["Wm"], b["Wt"], + np.array([290.0]), np.array([0.0])) + + +def test_umat_T_1d_props_accepted(): + # a 1-D (nprops,) props array is a valid shared-props input + n = 3 + b = _batch(n) + props_1d = np.array(ELISO_T_PROPS, dtype=float) + T = np.full(n, 293.15) + DT = np.full(n, 10.0) + sigma = sim.umat_T("ELISO", b["etot"], b["Detot"], b["sigma"], b["DR"], + props_1d, b["statev"], 0.0, 1.0, b["Wm"], b["Wt"], T, DT)[0] + expected = -70000.0 * 1.0e-5 * 10.0 / (1.0 - 2.0 * 0.3) + np.testing.assert_allclose(sigma[0:3, :], expected, rtol=1e-10) + + +def test_umat_T_shape_mismatches_raise(): + n = 4 + b = _batch(n) + T = np.full(n, 293.15) + DT = np.zeros(n) + # props with 1 < n_cols < nb_points + bad_props = np.tile(np.array(ELISO_T_PROPS, dtype=float).reshape(-1, 1), (1, 2)) + with pytest.raises(ValueError): + sim.umat_T("ELISO", b["etot"], b["Detot"], b["sigma"], b["DR"], bad_props, + b["statev"], 0.0, 1.0, b["Wm"], b["Wt"], T, DT) + # T shorter than the batch + props = np.array(ELISO_T_PROPS, dtype=float).reshape(-1, 1) + with pytest.raises(ValueError): + sim.umat_T("ELISO", b["etot"], b["Detot"], b["sigma"], b["DR"], props, + b["statev"], 0.0, 1.0, b["Wm"], b["Wt"], T[:2], DT) + # statev column count mismatch + with pytest.raises(ValueError): + sim.umat_T("ELISO", b["etot"], b["Detot"], b["sigma"], b["DR"], props, + np.zeros((1, 2), order="F"), 0.0, 1.0, b["Wm"], b["Wt"], T, DT) diff --git a/software/Elastic_props.cpp b/software/Elastic_props.cpp deleted file mode 100755 index 9e3bfff54..000000000 --- a/software/Elastic_props.cpp +++ /dev/null @@ -1,105 +0,0 @@ -/* This file is part of simcoon. - - simcoon is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - simcoon is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with simcoon. If not, see . - - */ - -///@file Elastic_props.cpp -///@brief solver: solve the mechanical thermomechanical equilibrium // -// for a homogeneous loading path, allowing repeatable steps -///@version 1.9 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - - -using namespace std; -using namespace arma; -using namespace simcoon; - -ofstream output("Props.txt"); - -int main() { - - ///Material properties reading, use "material.dat" to specify parameters values - string umat_name; - string path_data = "data"; - string materialfile = "material.dat"; - - unsigned int nprops = 0; - unsigned int nstatev = 0; - vec props; - - double psi_rve = 0.; - double theta_rve = 0.; - double phi_rve = 0.; - - double T_init = 273.15; - - read_matprops(umat_name, nprops, props, nstatev, psi_rve, theta_rve, phi_rve, path_data, materialfile); - phase_characteristics rve; - - rve.sptr_matprops->update(0, umat_name, 1, psi_rve, theta_rve, phi_rve, props.n_elem, props); - rve.construct(0,1); - natural_basis nb; - rve.sptr_sv_global->update(zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), eye(3,3), eye(3,3), eye(3,3), eye(3,3), eye(3,3), eye(3,3), T_init, 0., nstatev, zeros(nstatev), zeros(nstatev), nb); - - auto sv_M = std::dynamic_pointer_cast(rve.sptr_sv_global); - - //Second we call a recursive method that find all the elastic moduli of the phases - get_L_elastic(rve); - - string eq_UMAT; - int eq_axis; - vec eq_props; - int eq_maj_sym; - - check_symetries(sv_M->Lt, eq_UMAT, eq_axis, eq_props, eq_maj_sym); - - cout << "Umat is equivalent to " << eq_UMAT << " with following props : " << endl; - if (eq_UMAT == "ELISO") { - cout << "E = " << eq_props(0) << " ; nu = " << eq_props(1) << endl; - } - else if(eq_UMAT == "ELIST") { - cout << "axis = " << eq_axis << " EL = " << eq_props(0) << "\n ET = " << eq_props(1) << "\n nuLT = " << eq_props(2) << "\n nuTT = " << eq_props(3) << "\n GLT = " << eq_props(4) << endl; - } - else if(eq_UMAT == "ELCUB") { - cout << " E = " << eq_props(0) << "\n nu = " << eq_props(1) << "\n G = " << eq_props(2) << endl; - } - else if(eq_UMAT == "ELORT") { - cout << " E1 = " << eq_props(0) << "\n E2 = " << eq_props(1) << "\n E3 = " << eq_props(2) << "\n nu12 = " << eq_props(3) << "\n nu13 = " << eq_props(4) << "\n nu23 = " << eq_props(5) << "\n G12 = " << eq_props(6) << "\n G13 = " << eq_props(7) << "\n G23 = " << eq_props(8) << endl; - } - else if (eq_UMAT == "ELMON") { - cout << "axis = " << eq_axis << endl; - } - else { - cout << "No equivalent elastic props computed !" << endl; - } - unsigned int statev_abaqus = 0; - size_statev(rve, statev_abaqus); - cout << "The Umat has a number of statev equal to: " << statev_abaqus << endl; - - return 0; -} diff --git a/software/L_eff.cpp b/software/L_eff.cpp deleted file mode 100755 index c6c4c8385..000000000 --- a/software/L_eff.cpp +++ /dev/null @@ -1,74 +0,0 @@ -/* This file is part of simcoon. - - simcoon is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - simcoon is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with simcoon. If not, see . - - */ - -///@file L_eff.cpp -///@brief solver: Determination of the effective elastic properties of a composite -///@version 1.9 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace std; -using namespace arma; -using namespace simcoon; - -ofstream output("L.txt"); - -int main() { - - ///Material properties reading, use "material.dat" to specify parameters values - string umat_name; - string path_data = "data"; - string materialfile = "material.dat"; - - unsigned int nprops = 0; - unsigned int nstatev = 0; - vec props; - - double psi_rve = 0.; - double theta_rve = 0.; - double phi_rve = 0.; - - double T_init = 273.15; - - read_matprops(umat_name, nprops, props, nstatev, psi_rve, theta_rve, phi_rve, path_data, materialfile); - phase_characteristics rve; - - rve.construct(0,1); - natural_basis nb; - rve.sptr_matprops->update(0, umat_name, 1, psi_rve, theta_rve, phi_rve, props.n_elem, props); - rve.sptr_sv_global->update(zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), zeros(6), eye(3,3), eye(3,3), eye(3,3), eye(3,3), eye(3,3), eye(3,3),T_init, 0., nstatev, zeros(nstatev), zeros(nstatev), nb); - - auto sv_M = std::dynamic_pointer_cast(rve.sptr_sv_global); - - //Second we call a recursive method that find all the elastic moduli iof the phases - get_L_elastic(rve); - output << sv_M->Lt << "\n"; - output.close(); - - return 0; -} diff --git a/software/ODF.cpp b/software/ODF.cpp deleted file mode 100755 index 1569c1993..000000000 --- a/software/ODF.cpp +++ /dev/null @@ -1,136 +0,0 @@ -/* This file is part of simcoon. - - simcoon is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - simcoon is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with simcoon. If not, see . - - */ - -///@file ODF -///@brief ODF: get // -// for a homogeneous loading path, allowing repeatable steps -///@version 1.9 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace std; -using namespace arma; -using namespace simcoon; - -int main() { - - string path_data = "data"; - // string path_results = "results"; - // string outputfile = "results_job.txt"; - // string pathfile = "path.txt"; - string materialfile = "material.dat"; - string umat_name; - unsigned int nprops = 0; - unsigned int nstatev = 0; - vec props; - - double psi_rve = 0.; - double theta_rve = 0.; - double phi_rve = 0.; - - read_matprops(umat_name, nprops, props, nstatev, psi_rve, theta_rve, phi_rve, path_data, materialfile); - - phase_characteristics rve_init; - - rve_init.sptr_matprops->update(0, umat_name, 1, psi_rve, theta_rve, phi_rve, props.n_elem, props); - - string inputfile; - string outputfile; - - std::map list_umat; - list_umat = {{"MIHEN",100},{"MIMTN",101},{"MISCN",102},{"MIPCW",103},{"MIPLN",104}}; - - //Here we read everything about the initial rve - switch (list_umat[rve_init.sptr_matprops->umat_name]) { - - case 100: case 101: case 102: case 103: { - rve_init.construct(2,1); //The rve is supposed to be mechanical only here - - inputfile = "Nellipsoids" + to_string(int(rve_init.sptr_matprops->props(1))) + ".dat"; - read_ellipsoid(rve_init, path_data, inputfile); - break; - } - case 104: { - rve_init.construct(1,1); //The rve is supposed to be mechanical only here - - inputfile = "Nlayers" + to_string(int(rve_init.sptr_matprops->props(1))) + ".dat"; - read_layer(rve_init, path_data, inputfile); - break; - } - } - - - //Added parameters for the ODF - double num_file_output = props(5); - double nphases_rve = props(6); - double num_phase_disc = props(7); - double angle_min = props(8); - double angle_max = props(9); - double num_angle = props(10); - double num_file_npeaks = props(11); - - - angle_min = 0.; - angle_max = 180.; - - - ODF odf_rve(num_angle, false, angle_min, angle_max); - string npeaksfile = "Npeaks" + to_string(int(num_file_npeaks)) + ".dat"; - read_peak(odf_rve, path_data, npeaksfile); - - vec x = linspace(angle_min, angle_max-simcoon::iota, 90); - cout << "x = " << x.t() << endl; - - vec y = get_densities_ODF(x, path_data, "Npeaks0.dat", false); - cout << "y = " << y.t() << endl; - - phase_characteristics rve = discretize_ODF(rve_init, odf_rve, num_phase_disc, nphases_rve,0); - - if(rve.shape_type == 0) { - outputfile = "Nphases" + to_string(int(num_file_output)) + ".dat"; - write_phase(rve, path_data, outputfile); - } - if(rve.shape_type == 1) { - outputfile = "Nlayers" + to_string(int(num_file_output)) + ".dat"; - write_layer(rve, path_data, outputfile); - } - else if(rve.shape_type == 2) { - outputfile = "Nellipsoids" + to_string(int(num_file_output)) + ".dat"; - write_ellipsoid(rve, path_data, outputfile); - } - else if(rve.shape_type == 3) { - outputfile = "Ncylinders" + to_string(int(num_file_output)) + ".dat"; - write_cylinder(rve, path_data, outputfile); - } - - return 0; -} diff --git a/software/PDF.cpp b/software/PDF.cpp deleted file mode 100755 index 13c86eb4f..000000000 --- a/software/PDF.cpp +++ /dev/null @@ -1,132 +0,0 @@ -/* This file is part of simcoon. - - simcoon is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - simcoon is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with simcoon. If not, see . - - */ - -///@file ODF -///@brief ODF: get // -// for a homogeneous loading path, allowing repeatable steps -///@version 1.9 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace std; -using namespace arma; -using namespace simcoon; - -int main() { - - string path_data = "data"; - // string path_results = "results"; - // string outputfile = "results_job.txt"; - // string pathfile = "path.txt"; - string materialfile = "material.dat"; - string umat_name; - unsigned int nprops = 0; - unsigned int nstatev = 0; - vec props; - - double psi_rve = 0.; - double theta_rve = 0.; - double phi_rve = 0.; - - read_matprops(umat_name, nprops, props, nstatev, psi_rve, theta_rve, phi_rve, path_data, materialfile); - - phase_characteristics rve_init; - - rve_init.sptr_matprops->update(0, umat_name, 1, psi_rve, theta_rve, phi_rve, props.n_elem, props); - - string inputfile; - string outputfile; - - std::map list_umat; - list_umat = {{"MIHEN",100},{"MIMTN",101},{"MISCN",102},{"MIPCW",103},{"MIPLN",104}}; - - //Here we read everything about the initial rve - switch (list_umat[rve_init.sptr_matprops->umat_name]) { - - case 100: case 101: case 102: case 103: { - rve_init.construct(2,1); //The rve is supposed to be mechanical only here - - inputfile = "Nellipsoids" + to_string(int(rve_init.sptr_matprops->props(1))) + ".dat"; - read_ellipsoid(rve_init, path_data, inputfile); - break; - } - case 104: { - rve_init.construct(1,1); //The rve is supposed to be mechanical only here - - inputfile = "Nlayers" + to_string(int(rve_init.sptr_matprops->props(1))) + ".dat"; - read_layer(rve_init, path_data, inputfile); - break; - } - } - - - //Added parameters for the PDF - double num_file_output = props(5); //called "nscale_out" (props(3)) in fct launch_pdf (src/library/identification/script.cpp) - double nphases_rve = props(6); //called "nphase_out" (props(1)) in fct launch_pdf (src/library/identification/script.cpp) - double num_phase_disc = props(7); //not defined in fct launch_pdf (src/library/identification/script.cpp) - double parameter_min = props(8); //as (props(6)) in fct launch_pdf (src/library/identification/script.cpp) - double parameter_max = props(9); //as (props(7)) in fct launch_pdf (src/library/identification/script.cpp) - double num_Parameter = props(10); //as (props(8)) in fct launch_pdf (src/library/identification/script.cpp) - double num_file_npeaks = props(11); //called "npeak" (props(5)) in fct launch_pdf (src/library/identification/script.cpp) - - - PDF pdf_rve(num_Parameter, parameter_min, parameter_max); - string npeaksfile = "Npeaks" + to_string(int(num_file_npeaks)) + ".dat"; - read_peak(pdf_rve, path_data, npeaksfile); - - vec x = linspace(parameter_min, parameter_max-simcoon::iota, 100 ); - cout << "x = " << x.t() << endl; - - vec y = get_densities_PDF(x, path_data, npeaksfile); - cout << "y = " << y.t() << endl; - - phase_characteristics rve = discretize_PDF(rve_init, pdf_rve, num_phase_disc, nphases_rve); - - if(rve.shape_type == 0) { - outputfile = "Nphases" + to_string(int(num_file_output)) + ".dat"; - write_phase(rve, path_data, outputfile); - } - if(rve.shape_type == 1) { - outputfile = "Nlayers" + to_string(int(num_file_output)) + ".dat"; - write_layer(rve, path_data, outputfile); - } - else if(rve.shape_type == 2) { - outputfile = "Nellipsoids" + to_string(int(num_file_output)) + ".dat"; - write_ellipsoid(rve, path_data, outputfile); - } - else if(rve.shape_type == 3) { - outputfile = "Ncylinders" + to_string(int(num_file_output)) + ".dat"; - write_cylinder(rve, path_data, outputfile); - } - - return 0; -} diff --git a/software/solver.cpp b/software/solver.cpp deleted file mode 100755 index b30ca4dc3..000000000 --- a/software/solver.cpp +++ /dev/null @@ -1,82 +0,0 @@ -/* This file is part of simcoon. - - simcoon is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - simcoon is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with simcoon. If not, see . - - */ - -///@file solver.cpp -///@brief solver: solve the mechanical thermomechanical equilibrium // -// for a homogeneous loading path, allowing repeatable steps -///@version 1.9 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace std; -using namespace arma; -using namespace simcoon; - -int main() { - - string path_data = "data"; - string path_results = "results"; - string outputfile = "results_job.txt"; - string pathfile = "path.txt"; - string materialfile = "material.dat"; - string sol_essentials = "solver_essentials.inp"; - string sol_control = "solver_control.inp"; - - string umat_name; - unsigned int nprops = 0; - unsigned int nstatev = 0; - vec props; - - double psi_rve = 0.; - double theta_rve = 0.; - double phi_rve = 0.; - - int solver_type = 0; - int corate_type = 0; - double div_tnew_dt_solver = 0.; - double mul_tnew_dt_solver = 0.; - int miniter_solver = 0; - int maxiter_solver = 0; - int inforce_solver = 0; - double precision_solver = 0.; - double lambda_solver = 0.; - - try { - solver_essentials(solver_type, corate_type, path_data, sol_essentials); - solver_control(div_tnew_dt_solver, mul_tnew_dt_solver, miniter_solver, maxiter_solver, inforce_solver, precision_solver, lambda_solver, path_data, sol_control); - read_matprops(umat_name, nprops, props, nstatev, psi_rve, theta_rve, phi_rve, path_data, materialfile); - } catch (const runtime_error& e) { - cerr << "Configuration error: " << e.what() << endl; - return 1; - } - solver(umat_name, props, nstatev, psi_rve, theta_rve, phi_rve, solver_type, corate_type, div_tnew_dt_solver, mul_tnew_dt_solver, miniter_solver, maxiter_solver, inforce_solver, precision_solver, lambda_solver, path_data, path_results, pathfile, outputfile); - - return 0; -} diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b5a0c29bb..3bc9759b6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -58,20 +58,10 @@ target_sources(simcoon PRIVATE Continuum_mechanics/Umat/Mechanical/Damage/damage_weibull.cpp # Continuum Mechanics - UMAT Mechanical Elasticity - Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_isotropic.cpp - Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_orthotropic.cpp - Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_transverse_isotropic.cpp # Continuum Mechanics - UMAT Mechanical Plasticity - Continuum_mechanics/Umat/Mechanical/Plasticity/Ani_chaboche_ccp.cpp - Continuum_mechanics/Umat/Mechanical/Plasticity/DFA_chaboche_ccp.cpp - Continuum_mechanics/Umat/Mechanical/Plasticity/Generic_chaboche_ccp.cpp - Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_chaboche_ccp.cpp - Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh.cpp - Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh_Nfast.cpp Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.cpp Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.cpp - Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_kin_iso_ccp.cpp # Continuum Mechanics - UMAT Mechanical SMA Continuum_mechanics/Umat/Mechanical/SMA/SMA_mono.cpp @@ -110,6 +100,7 @@ target_sources(simcoon PRIVATE Continuum_mechanics/Umat/Modular/viscoelastic_mechanism.cpp Continuum_mechanics/Umat/Modular/damage_mechanism.cpp Continuum_mechanics/Umat/Modular/modular_umat.cpp + Continuum_mechanics/Umat/Modular/legacy_adapters.cpp # Continuum Mechanics - UMAT Core Continuum_mechanics/Umat/fea_transfer.cpp @@ -145,6 +136,7 @@ target_sources(simcoon PRIVATE Simulation/Solver/output.cpp Simulation/Solver/read.cpp Simulation/Solver/solver.cpp + Simulation/Solver/solver_sink.cpp Simulation/Solver/step.cpp Simulation/Solver/step_meca.cpp Simulation/Solver/step_thermomeca.cpp diff --git a/src/Continuum_mechanics/Functions/criteria.cpp b/src/Continuum_mechanics/Functions/criteria.cpp index aa4b7b7df..4dac3d82a 100755 --- a/src/Continuum_mechanics/Functions/criteria.cpp +++ b/src/Continuum_mechanics/Functions/criteria.cpp @@ -20,6 +20,7 @@ ///@version 1.0 #include +#include #include #include #include @@ -397,10 +398,17 @@ namespace simcoon { return Ani_stress(v, param); } + else if (eq_type == "DFA") + { + return DFA_stress(v, param); + } else { - cout << "Error in Eq_stress : No valid arguement is given\n"; - exit(0); + // throw, do NOT exit(0): an invalid criterion string must be + // reportable by the caller (an exit kills the host process, + // e.g. the Python interpreter). + throw std::invalid_argument("Eq_stress: unknown criterion '" + + eq_type + "'"); } } @@ -426,10 +434,14 @@ namespace simcoon { return dAni_stress(v, param); } + else if (eq_type == "DFA") + { + return dDFA_stress(v, param); + } else { - cout << "Error in dEq_stress : No valid arguement is given\n"; - exit(0); + throw std::invalid_argument("dEq_stress: unknown criterion '" + + eq_type + "'"); } } diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.cpp b/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.cpp index 6e1c8d4a6..3084e8bc9 100755 --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.cpp +++ b/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_chaboche_ccp.cpp @@ -30,7 +30,6 @@ #include #include #include -#include #include using namespace std; @@ -281,17 +280,15 @@ void umat_plasticity_chaboche_CCP(const string &umat_name, const vec &Etot, cons Bhat(0, 0) = sum(dPhidsigma%kappa_j[0]) - K(0,0); const std::vector dPhidsigma_l = { dPhidsigma }; - ContinuumTangent ct; - if (tangent_mode == 1) { - // Simo-Hughes algorithmic tangent (closest-point). J2 flow on effective stress (sigma-X): - // dLambda_eps/dsigma = deta_stress(stress-X). Backstress state-coupling deferred (CPP, future). - const std::vector dLambda_dsigma_l = { deta_stress(stress - X) }; - ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L, dLambda_dsigma_l); - } else { - ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); - } + const ContinuumTangent ct = compute_tangent_operator( + tangent_mode, Bhat, kappa_j, dPhidsigma_l, Ds_j, L, + [&]() -> std::vector { // lazy: evaluated only in algorithmic mode + // Simo-Hughes algorithmic tangent (closest-point). J2 flow on effective stress (sigma-X): + // dLambda_eps/dsigma = deta_stress(stress-X). Backstress state-coupling deferred (CPP, future). + const std::vector dLambda_dsigma_l = { deta_stress(stress - X) }; + return dLambda_dsigma_l; + }); Lt = ct.Lt; - const std::vector& P_epsilon = ct.P_epsilon; std::vector P_theta(1); P_theta[0] = dPhidtheta - sum(dPhidsigma%(L*alpha)); diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.cpp b/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.cpp index 1912e81a5..93892679f 100755 --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.cpp +++ b/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_isotropic_ccp.cpp @@ -230,19 +230,17 @@ void umat_plasticity_iso_CCP(const string &umat_name, const vec &Etot, const vec Bhat(0, 0) = sum(dPhidsigma%kappa_j[0]) - K(0,0); const std::vector dPhidsigma_l = { dPhidsigma }; - ContinuumTangent ct; - if (tangent_mode == 1) { - // Simo-Hughes algorithmic (consistent) tangent. J2 associated flow - // Lambda_eps = eta_stress(sigma), so dLambda_eps/dsigma = d2Phi/dsigma2 = deta_stress(sigma). - // Isotropic hardening: the direction has no internal-variable coupling, so this single - // dLambda/dsigma term is the complete consistent correction (Q-quadratic). - const std::vector dLambda_dsigma_l = { deta_stress(stress) }; - ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L, dLambda_dsigma_l); - } else { - ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); - } + const ContinuumTangent ct = compute_tangent_operator( + tangent_mode, Bhat, kappa_j, dPhidsigma_l, Ds_j, L, + [&]() -> std::vector { // lazy: evaluated only in algorithmic mode + // Simo-Hughes algorithmic (consistent) tangent. J2 associated flow + // Lambda_eps = eta_stress(sigma), so dLambda_eps/dsigma = d2Phi/dsigma2 = deta_stress(sigma). + // Isotropic hardening: the direction has no internal-variable coupling, so this single + // dLambda/dsigma term is the complete consistent correction (Q-quadratic). + const std::vector dLambda_dsigma_l = { deta_stress(stress) }; + return dLambda_dsigma_l; + }); Lt = ct.Lt; - const std::vector& P_epsilon = ct.P_epsilon; std::vector P_theta(1); P_theta[0] = dPhidtheta - sum(dPhidsigma%(L*alpha)); diff --git a/src/Continuum_mechanics/Umat/Mechanical/SMA/unified_T.cpp b/src/Continuum_mechanics/Umat/Mechanical/SMA/unified_T.cpp index aacc36cd9..98aea36b4 100755 --- a/src/Continuum_mechanics/Umat/Mechanical/SMA/unified_T.cpp +++ b/src/Continuum_mechanics/Umat/Mechanical/SMA/unified_T.cpp @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -633,41 +634,35 @@ void umat_sma_unified_T(const string &umat_name, const vec &Etot, const vec &DEt Bhat(1,1) = sum(dPhiRdsigma%kappa_j[1]) - K(1,1); const std::vector dPhidsigma_l = { dPhiFdsigma, dPhiRdsigma }; - ContinuumTangent ct; - if (tangent_mode == 1) { - // Simo-Hughes algorithmic tangent (closest-point). The forward transformation strain-flow - // Lambda_eps^F = Hcur(sigma)*dDrucker(sigma) + DM*sigma + Dalpha_T couples to stress through - // Hcur and the (non-quadratic) Drucker direction. We form d(Hcur*dDrucker)/dsigma by central - // finite difference of that flow (robust; avoids the Drucker J2/J3 Hessian), add the analytic - // linear stiffness-difference term DM, and hold ETMean (transformation state) fixed. - // Lambda_eps^R = -ETMean - DM*sigma - Dalpha_T -> dLambda^R/dsigma = -DM. - // The transformation-state coupling (dLambda/dETMean . dETMean/dsigma, dxi/dsigma) is the - // deferred state-coupling term (closest-point/CPP rework, future release). - auto lambdaTF_at = [&](const vec &s) -> vec { - double sstar = Mises_stress(s) - sigmacrit; - if (sstar < 0.) sstar = 0.; - double Hc = Hmin + (Hmax - Hmin) * (1. - exp(-1. * k1 * sstar)); - if (aniso_criteria) { - return Hc * dDrucker_ani_stress(s, DFA_params, prager_b, prager_n); + const ContinuumTangent ct = compute_tangent_operator( + tangent_mode, Bhat, kappa_j, dPhidsigma_l, Ds_j, L, + [&]() -> std::vector { // lazy: evaluated only in algorithmic mode + // Simo-Hughes algorithmic tangent (closest-point). The forward transformation strain-flow + // Lambda_eps^F = Hcur(sigma)*dDrucker(sigma) + DM*sigma + Dalpha_T couples to stress through + // Hcur and the (non-quadratic) Drucker direction. We form d(Hcur*dDrucker)/dsigma by central + // finite difference of that flow (robust; avoids the Drucker J2/J3 Hessian), add the analytic + // linear stiffness-difference term DM, and hold ETMean (transformation state) fixed. + // Lambda_eps^R = -ETMean - DM*sigma - Dalpha_T -> dLambda^R/dsigma = -DM. + // The transformation-state coupling (dLambda/dETMean . dETMean/dsigma, dxi/dsigma) is the + // deferred state-coupling term (closest-point/CPP rework, future release). + auto lambdaTF_at = [&](const vec &s) -> vec { + return sma_transformation_flow(s, sigmacrit, Hmin, Hmax, k1, + aniso_criteria, DFA_params, + prager_b, prager_n); + }; + const double hfd = 1.e-5 * (norm(stress, 2) + 1.); + mat dLambdaF = zeros(6, 6); + for (int c = 0; c < 6; c++) { + vec sp = stress, sm = stress; + sp(c) += hfd; + sm(c) -= hfd; + dLambdaF.col(c) = (lambdaTF_at(sp) - lambdaTF_at(sm)) / (2. * hfd); } - return Hc * dDrucker_stress(s, prager_b, prager_n); - }; - const double hfd = 1.e-5 * (norm(stress, 2) + 1.); - mat dLambdaF = zeros(6, 6); - for (int c = 0; c < 6; c++) { - vec sp = stress, sm = stress; - sp(c) += hfd; - sm(c) -= hfd; - dLambdaF.col(c) = (lambdaTF_at(sp) - lambdaTF_at(sm)) / (2. * hfd); - } - dLambdaF += DM; // d(DM*sigma)/dsigma (linear, exact) - const std::vector dLambda_dsigma_l = { dLambdaF, -1. * DM }; - ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L, dLambda_dsigma_l); - } else { - ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); - } + dLambdaF += DM; // d(DM*sigma)/dsigma (linear, exact) + const std::vector dLambda_dsigma_l = { dLambdaF, -1. * DM }; + return dLambda_dsigma_l; + }); Lt = ct.Lt; - const std::vector& P_epsilon = ct.P_epsilon; //Preliminaries for the computation of mechanical work double Dgamma_loc = 0.5*sum((stress_start+stress)%(DETF-DETR)) + 0.5*(A_xiF_start + A_xiF)*DxiF + 0.5*(A_xiR_start + A_xiR)*DxiR; diff --git a/src/Continuum_mechanics/Umat/Mechanical/SMA/unified_TR.cpp b/src/Continuum_mechanics/Umat/Mechanical/SMA/unified_TR.cpp index 535c2d0c1..479b09b44 100644 --- a/src/Continuum_mechanics/Umat/Mechanical/SMA/unified_TR.cpp +++ b/src/Continuum_mechanics/Umat/Mechanical/SMA/unified_TR.cpp @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -656,43 +657,40 @@ void umat_sma_unified_TR(const string &umat_name, const vec &Etot, const vec &DE } const std::vector dPhidsigma_l = { dPhiFdsigma, dPhiRdsigma, dPhiReodsigma }; - ContinuumTangent ct; - if (tangent_mode == 1) { - // Simo-Hughes algorithmic tangent (closest-point), 3-mechanism. dLambda/dsigma by central - // FD of the transformation flows: forward Hcur(sigma)*dDrucker(sigma); reorientation - // xi_start*dDrucker(sigma_eff), sigma_eff = sigma-(1+lambda1Reo)*X; plus the analytic linear - // DM term. ETMean, X, lambda1Reo held fixed -> transformation/back-strain state-coupling is - // the deferred term (closest-point/CPP rework, future release). - auto lambdaTF_at = [&](const vec &s) -> vec { - double sstar = Mises_stress(s) - sigmacrit; - if (sstar < 0.) sstar = 0.; - double Hc = Hmin + (Hmax - Hmin) * (1. - exp(-1. * k1 * sstar)); - return aniso_criteria ? Hc * dDrucker_ani_stress(s, DFA_params, prager_b, prager_n) - : Hc * dDrucker_stress(s, prager_b, prager_n); - }; - auto lambdaReo_raw_at = [&](const vec &s) -> vec { - vec se = s - (1. + lambda1Reo) * X; - if (Mises_stress(se) > simcoon::iota) { - return aniso_criteria ? dDrucker_ani_stress(se, DFA_params, prager_b, prager_n) - : dDrucker_stress(se, prager_b, prager_n); + const ContinuumTangent ct = compute_tangent_operator( + tangent_mode, Bhat, kappa_j, dPhidsigma_l, Ds_j, L, + [&]() -> std::vector { // lazy: evaluated only in algorithmic mode + // Simo-Hughes algorithmic tangent (closest-point), 3-mechanism. dLambda/dsigma by central + // FD of the transformation flows: forward Hcur(sigma)*dDrucker(sigma); reorientation + // xi_start*dDrucker(sigma_eff), sigma_eff = sigma-(1+lambda1Reo)*X; plus the analytic linear + // DM term. ETMean, X, lambda1Reo held fixed -> transformation/back-strain state-coupling is + // the deferred term (closest-point/CPP rework, future release). + auto lambdaTF_at = [&](const vec &s) -> vec { + return sma_transformation_flow(s, sigmacrit, Hmin, Hmax, k1, + aniso_criteria, DFA_params, + prager_b, prager_n); + }; + auto lambdaReo_raw_at = [&](const vec &s) -> vec { + vec se = s - (1. + lambda1Reo) * X; + if (Mises_stress(se) > simcoon::iota) { + return aniso_criteria ? dDrucker_ani_stress(se, DFA_params, prager_b, prager_n) + : dDrucker_stress(se, prager_b, prager_n); + } + return zeros(6); + }; + const double hfd = 1.e-5 * (norm(stress, 2) + 1.); + mat dLambdaF = zeros(6, 6), dLambdaReo = zeros(6, 6); + for (int c = 0; c < 6; c++) { + vec sp = stress, sm = stress; + sp(c) += hfd; + sm(c) -= hfd; + dLambdaF.col(c) = (lambdaTF_at(sp) - lambdaTF_at(sm)) / (2. * hfd); + dLambdaReo.col(c) = xi_start * (lambdaReo_raw_at(sp) - lambdaReo_raw_at(sm)) / (2. * hfd); } - return zeros(6); - }; - const double hfd = 1.e-5 * (norm(stress, 2) + 1.); - mat dLambdaF = zeros(6, 6), dLambdaReo = zeros(6, 6); - for (int c = 0; c < 6; c++) { - vec sp = stress, sm = stress; - sp(c) += hfd; - sm(c) -= hfd; - dLambdaF.col(c) = (lambdaTF_at(sp) - lambdaTF_at(sm)) / (2. * hfd); - dLambdaReo.col(c) = xi_start * (lambdaReo_raw_at(sp) - lambdaReo_raw_at(sm)) / (2. * hfd); - } - dLambdaF += DM; - const std::vector dLambda_dsigma_l = { dLambdaF, -1. * DM, dLambdaReo }; - ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L, dLambda_dsigma_l); - } else { - ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); - } + dLambdaF += DM; + const std::vector dLambda_dsigma_l = { dLambdaF, -1. * DM, dLambdaReo }; + return dLambda_dsigma_l; + }); Lt = ct.Lt; // ---- Energy partition (SMA: Wm_ir is always 0; everything is either recoverable or dissipated) ---- diff --git a/src/Continuum_mechanics/Umat/Modular/hardening.cpp b/src/Continuum_mechanics/Umat/Modular/hardening.cpp index 64ad953c3..13c539c06 100644 --- a/src/Continuum_mechanics/Umat/Modular/hardening.cpp +++ b/src/Continuum_mechanics/Umat/Modular/hardening.cpp @@ -70,25 +70,50 @@ void LinearHardening::configure(const arma::vec& props, int& offset) { offset += 1; } -// PowerLawHardening +// PowerLawHardening — onset regularization for m < 1 (rationale and the SMA +// lagrange_pow analogy are in the header Doxygen). Implementation notes only: +// the p <= 0 branch extends R linearly (slope a_reg_) so a transient negative +// FB iterate meets a finite, consistent slope instead of pow(negative, m). +namespace { +constexpr double p_reg_powerlaw = 1.0e-6; ///< onset regularization cutoff (see header) +} + void PowerLawHardening::configure(const arma::vec& props, int& offset) { k_ = props(offset); m_ = props(offset + 1); offset += 2; + // Precompute the onset-blend coefficients (value AND slope share them, so + // the C1 match between R and dR_dp cannot drift). + if (m_ < 1.0) { + a_reg_ = k_ * std::pow(p_reg_powerlaw, m_ - 1.0) * (2.0 - m_); + b_reg_ = k_ * std::pow(p_reg_powerlaw, m_ - 2.0) * (m_ - 1.0); + } } double PowerLawHardening::R(double p) const { - if (p > simcoon::iota) { + if (m_ >= 1.0) { + return (p > 0.0) ? k_ * std::pow(p, m_) : 0.0; + } + if (p >= p_reg_powerlaw) { return k_ * std::pow(p, m_); } - return 0.0; + if (p <= 0.0) { + return a_reg_ * p; + } + return a_reg_ * p + b_reg_ * p * p; } double PowerLawHardening::dR_dp(double p) const { - if (p > simcoon::iota) { + if (m_ >= 1.0) { + return (p > 0.0) ? k_ * m_ * std::pow(p, m_ - 1.0) : 0.0; + } + if (p >= p_reg_powerlaw) { return k_ * m_ * std::pow(p, m_ - 1.0); } - return 0.0; + if (p <= 0.0) { + return a_reg_; + } + return a_reg_ + 2.0 * b_reg_ * p; } // VoceHardening diff --git a/src/Continuum_mechanics/Umat/Modular/legacy_adapters.cpp b/src/Continuum_mechanics/Umat/Modular/legacy_adapters.cpp new file mode 100644 index 000000000..4d422c2e6 --- /dev/null +++ b/src/Continuum_mechanics/Umat/Modular/legacy_adapters.cpp @@ -0,0 +1,229 @@ +/* This file is part of simcoon. + +simcoon is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +simcoon is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with simcoon. If not, see . + +*/ + +/** + * @file legacy_adapters.cpp + * @brief Implementation of the legacy-name props translators + */ + +#include +#include +#include +#include + +using namespace arma; + +namespace simcoon { + +namespace { + +// Modular props stream (configure_from_props): +// [el_type, conv, el params..., alphas..., n_mech, mech blocks...] +// Plasticity block: [0, yield, iso, kin, N_iso, N_kin, sigma_Y, +// yield params, iso params, kin params] +// Viscoelastic block: [1, N, (E_i, nu_i, etaB_i, etaS_i) x N] + +vec translate_ELISO(const vec& p) { + // legacy: E nu alpha + return vec{0, 0, p(0), p(1), p(2), 0}; +} + +vec translate_ELIST(const vec& p) { + // legacy: axis EL ET nuTL nuTT GLT alpha_L alpha_T (axis FIRST) + return vec{2, 0, p(1), p(2), p(3), p(4), p(5), p(6), p(7), p(0), 0}; +} + +vec translate_ELORT(const vec& p) { + // legacy: E1 E2 E3 nu12 nu13 nu23 G12 G13 G23 alpha1 alpha2 alpha3 + return vec{3, 0, p(0), p(1), p(2), p(3), p(4), p(5), p(6), p(7), p(8), + p(9), p(10), p(11), 0}; +} + +vec translate_EPKCP(const vec& p) { + // legacy: E nu alpha sigmaY k m kX; legacy Prager X = kX*a (tensorial), + // modular X = (2/3) C a -> C = 1.5 kX + return vec{0, 0, p(0), p(1), p(2), + 1, + 0, 0, 2, 1, 1, 1, // plasticity, Mises, PowerLaw, Prager + p(3), p(4), p(5), 1.5 * p(6)}; +} + +vec translate_EPHIL(const vec& p) { + // legacy: E nu alpha | sigmaY k m | F G H L M N (EPTRI shares this) + return vec{0, 0, p(0), p(1), p(2), + 1, + 0, 3, 2, 0, 1, 0, // plasticity, Hill, PowerLaw, no kin + p(3), + p(6), p(7), p(8), p(9), p(10), p(11), + p(4), p(5)}; +} + +// Chaboche-family head: E nu G alpha | sigmaY Q b | C1 D1 C2 D2 | criterion... +// (cubic elasticity, Voce iso, 2 AF backstresses) +vec chaboche_family(const vec& p, int yield_type, int n_crit) { + // 14 head slots (elasticity 6 + n_mech + mech type + 5 config + sigma_Y) + // + criterion params + Voce (2) + two AF terms (4) + vec out(20 + static_cast(n_crit)); + out(0) = 1; out(1) = 0; // cubic, EnuG + out(2) = p(0); out(3) = p(1); out(4) = p(2); out(5) = p(3); + out(6) = 1; // n_mech + out(7) = 0; // plasticity + out(8) = yield_type; out(9) = 3; out(10) = 3; // yield, Voce, Chaboche + out(11) = 1; out(12) = 2; // N_iso, N_kin + out(13) = p(4); // sigma_Y + for (int i = 0; i < n_crit; ++i) { + out(14 + static_cast(i)) = p(11 + static_cast(i)); + } + const uword o = 14 + static_cast(n_crit); + out(o) = p(5); out(o + 1) = p(6); // Q, b + out(o + 2) = p(7); out(o + 3) = p(8); // C1, D1 + out(o + 4) = p(9); out(o + 5) = p(10); // C2, D2 + return out; +} + +vec translate_EPHAC(const vec& p) { return chaboche_family(p, 3, 6); } +vec translate_EPANI(const vec& p) { return chaboche_family(p, 5, 9); } +vec translate_EPDFA(const vec& p) { return chaboche_family(p, 4, 7); } + +vec translate_EPCHG(const vec& p) { + // legacy: E nu G alpha | sigmaY N_iso N_kin criteria | (Q,b)xN_iso | + // (C,D)xN_kin | criterion params + const int N_iso = static_cast(p(5)); + const int N_kin = static_cast(p(6)); + const int crit_legacy = static_cast(p(7)); + // legacy criteria codes: 0 = Mises, 1 = Hill, 2 = DFA, 3 = anisotropic + static const int yield_map[4] = {0, 3, 4, 5}; + static const int n_crit_map[4] = {0, 6, 7, 9}; + if (crit_legacy < 0 || crit_legacy > 3) { + throw std::runtime_error("EPCHG: unknown criteria code " + + std::to_string(crit_legacy)); + } + const int n_crit = n_crit_map[crit_legacy]; + const uword legacy_crit_off = 8 + 2 * static_cast(N_iso + N_kin); + + // The legacy N-term isotropic hardening couples every term through a + // SINGLE Hp (dHp/dp = sum_i b_i (Q_i - Hp)) — mathematically ONE + // effective Voce with b_eff = sum(b_i), Q_eff = sum(b_i Q_i)/sum(b_i), + // NOT the standard combined-Voce sum (proven by the Phase-1 equivalence + // test at 2.6e-4). Map accordingly. + double b_eff = 0.0, bq = 0.0; + for (int i = 0; i < N_iso; ++i) { + const double Q_i = p(8 + 2 * static_cast(i)); + const double b_i = p(9 + 2 * static_cast(i)); + b_eff += b_i; + bq += b_i * Q_i; + } + const double Q_eff = (b_eff > 0.0) ? bq / b_eff : 0.0; + + // 14 head slots + criterion params + effective Voce (2) + 2*N_kin + vec out(16 + 2 * static_cast(N_kin) + static_cast(n_crit)); + out(0) = 1; out(1) = 0; + out(2) = p(0); out(3) = p(1); out(4) = p(2); out(5) = p(3); + out(6) = 1; + out(7) = 0; + out(8) = yield_map[crit_legacy]; + out(9) = 3; out(10) = 3; // Voce (effective), Chaboche + out(11) = 1; out(12) = N_kin; + out(13) = p(4); + uword o = 14; + for (int i = 0; i < n_crit; ++i) { + out(o++) = p(legacy_crit_off + static_cast(i)); + } + out(o++) = Q_eff; + out(o++) = b_eff; + for (int i = 0; i < 2 * N_kin; ++i) { + out(o++) = p(8 + 2 * static_cast(N_iso) + static_cast(i)); + } + return out; +} + +vec translate_EPHIN(const vec& p) { + // legacy: E nu alpha N | (sigmaY k m F G H L M N)xN -> N Hill mechanisms + const int N = static_cast(p(3)); + vec out(5 + 1 + static_cast(N) * 15); + out(0) = 0; out(1) = 0; + out(2) = p(0); out(3) = p(1); out(4) = p(2); + out(5) = N; + uword o = 6; + for (int i = 0; i < N; ++i) { + const uword b = 4 + static_cast(i) * 9; + out(o++) = 0; // plasticity + out(o++) = 3; out(o++) = 2; out(o++) = 0; // Hill, PowerLaw, no kin + out(o++) = 1; out(o++) = 0; // N_iso, N_kin + out(o++) = p(b); // sigma_Y + for (int j = 3; j < 9; ++j) { // F G H L M N + out(o++) = p(b + static_cast(j)); + } + out(o++) = p(b + 1); out(o++) = p(b + 2); // k, m + } + return out; +} + + +const std::map& registry() { + static const std::map reg = { + {"ELISO", translate_ELISO}, + {"ELIST", translate_ELIST}, + {"ELORT", translate_ELORT}, + {"EPKCP", translate_EPKCP}, + {"EPHIL", translate_EPHIL}, + {"EPTRI", translate_EPHIL}, + {"EPHAC", translate_EPHAC}, + {"EPANI", translate_EPANI}, + {"EPDFA", translate_EPDFA}, + {"EPCHG", translate_EPCHG}, + {"EPHIN", translate_EPHIN}, + }; + return reg; +} + +} // namespace + +bool has_legacy_adapter(const std::string& umat_name) { + return registry().count(umat_name) > 0; +} + +void umat_legacy_modular( + const std::string& umat_name, + const arma::vec& Etot, const arma::vec& DEtot, + arma::vec& sigma, arma::mat& Lt, arma::mat& L, const arma::mat& DR, + const int& /*nprops*/, const arma::vec& props, + const int& nstatev, arma::vec& statev, + const double& T, const double& DT, const double& Time, const double& DTime, + double& Wm, double& Wm_r, double& Wm_ir, double& Wm_d, + const int& ndi, const int& nshr, const bool& start, double& tnew_dt, + const int& tangent_mode) { + + const auto it = registry().find(umat_name); + if (it == registry().end()) { + throw std::runtime_error("umat_legacy_modular: no adapter registered for '" + + umat_name + "'"); + } + const vec props_mod = it->second(props); + try { + umat_modular(umat_name, Etot, DEtot, sigma, Lt, L, DR, + static_cast(props_mod.n_elem), props_mod, + nstatev, statev, + T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, + ndi, nshr, start, tnew_dt, tangent_mode); + } catch (const std::runtime_error& e) { + throw std::runtime_error("'" + umat_name + "' (modular adapter): " + + e.what()); + } +} + +} // namespace simcoon diff --git a/src/Continuum_mechanics/Umat/Modular/modular_umat.cpp b/src/Continuum_mechanics/Umat/Modular/modular_umat.cpp index 65e26afe4..fb609f444 100644 --- a/src/Continuum_mechanics/Umat/Modular/modular_umat.cpp +++ b/src/Continuum_mechanics/Umat/Modular/modular_umat.cpp @@ -36,6 +36,12 @@ along with simcoon. If not, see . namespace simcoon { +namespace { +// Per-increment plastic-multiplier runaway cap for the committed-state guard +// in ModularUMAT::run (see the reject block there for the rationale). +constexpr double Ds_cap_plastic = 1.0; +} // namespace + // ========== Constructor ========== ModularUMAT::ModularUMAT() @@ -276,6 +282,13 @@ void ModularUMAT::run( T_init_ = statev(0); if (start) { T_init_ = T; + // Legacy contract: the cumulative work accumulators are RESET on + // the start increment (every legacy kernel zeroes them in its + // if(start) block); stale caller-supplied values must not leak in. + Wm = 0.0; + Wm_r = 0.0; + Wm_ir = 0.0; + Wm_d = 0.0; } } else { // Unpack state variables @@ -312,7 +325,27 @@ void ModularUMAT::run( // (true divergence -> NaN/Inf) is unusable and triggers a step cut. arma::vec Ds_total = arma::zeros(n_total); return_mapping(Etot, DEtot, sigma, T_init_, T, DT, DTime, ndi, Ds_total); - if (!sigma.is_finite()) { + + // Reject unusable committed states with a step cut: (a) non-finite stress + // (true divergence); (b) a pathological PLASTIC multiplier beyond + // Ds_cap_plastic — the first FB runaway excursion (traced: 0.83 -> 433 -> + // 4e13) must be caught before it saturates the hardening state, whose + // garbage tangent would reseed the divergence on every solver retry. + // (Negative multipliers are handled at the source: PlasticityMechanism + // projects the FB update onto p >= p_start, and PowerLawHardening is + // C1-regularized at onset, so no negative-Ds check is needed here.) + // Plasticity rows only: damage rows are energy-release-typed + // (Phi = Y - Y_max, MPa scale) and legitimately exceed this bound. + bool reject = !sigma.is_finite(); + for (size_t m = 0; !reject && m < mechanisms_.size(); ++m) { + if (mechanisms_[m]->type() != MechanismType::PLASTICITY) continue; + const int n = mechanisms_[m]->num_constraints(); + if (n == 0) continue; + const auto Ds_m = Ds_total.subvec(mech_offset_[m], + mech_offset_[m] + n - 1); + reject = (Ds_m.max() > Ds_cap_plastic); + } + if (reject) { // Ask the global solver to halve the increment and retry. statev is // left at its incoming values (pack_all is skipped) so the retry // restarts from the correct state; Lt is set elastic to keep the @@ -326,30 +359,27 @@ void ModularUMAT::run( Lt = L; // Start with elastic stiffness compute_tangent(sigma, Ds_total, Lt, tangent_mode); - // Compute work quantities - // Elastic strain - arma::vec E_inel = arma::zeros(6); - for (const auto& mech : mechanisms_) { - E_inel += mech->inelastic_strain(); - } - arma::vec Eel = Etot + DEtot - elasticity_.alpha() * (T - T_init_) - E_inel; + // Work quantities — CUMULATIVE in/out, the legacy UMAT contract + // (Wm += increment each call; the solver reports the path integral). + // Total mechanical work increment: trapezoidal sigma:dE on the total + // strain increment, exactly as the legacy kernels. + const double Wm_inc = 0.5 * arma::dot(sigma_start_ + sigma, DEtot); - // Elastic work (recoverable) - double Wm_r_new = 0.5 * arma::dot(sigma, Eel); - Wm_r = Wm_r_new - 0.5 * arma::dot(sigma_start_, Eel); - - // Dissipated and stored work from mechanisms - Wm_ir = 0.0; - Wm_d = 0.0; + // Stored/dissipated increments from the mechanisms; the recoverable part + // closes the energy balance (guarantees Wm = Wm_r + Wm_ir + Wm_d and + // reduces to the legacy elastic trapezoid when no mechanism is present). + double Wm_ir_inc = 0.0, Wm_d_inc = 0.0; for (const auto& mech : mechanisms_) { double Wm_r_m = 0.0, Wm_ir_m = 0.0, Wm_d_m = 0.0; mech->compute_work(sigma_start_, sigma, Wm_r_m, Wm_ir_m, Wm_d_m); - Wm_ir += Wm_ir_m; - Wm_d += Wm_d_m; + Wm_ir_inc += Wm_ir_m; + Wm_d_inc += Wm_d_m; } - // Total mechanical work - Wm = Wm_r + Wm_ir + Wm_d; + Wm += Wm_inc; + Wm_ir += Wm_ir_inc; + Wm_d += Wm_d_inc; + Wm_r += Wm_inc - Wm_ir_inc - Wm_d_inc; // Pack state variables statev(0) = T_init_; @@ -507,11 +537,26 @@ void ModularUMAT::compute_tangent( const arma::mat& L = elasticity_.L(); Lt = L; + if (tangent_mode == tangent_none) { + // Explicit integration: elastic operator, no assembly. + return; + } + if (tangent_mode == tangent_closest_point) { + throw std::invalid_argument( + "ModularUMAT::compute_tangent: tangent_closest_point (3) is " + "reserved and not implemented in this release"); + } + if (tangent_mode != tangent_continuum && tangent_mode != tangent_algorithmic) { + throw std::invalid_argument( + "ModularUMAT::compute_tangent: unknown tangent_mode " + + std::to_string(tangent_mode)); + } + // Mechanisms opting into the algorithmic assembly: stress-dependent Phi // AND an analytic flow Hessian. Others (viscoelastic, damage, Hessian-less // criteria) keep their continuum tangent_contribution in every mode. std::vector algo; - if (tangent_mode == 1) { + if (tangent_mode == tangent_algorithmic) { for (size_t m = 0; m < mechanisms_.size(); ++m) { if (mechanisms_[m]->dLambda_dsigma(sigma) != nullptr && !mechanisms_[m]->dPhi_dsigma(sigma).empty()) { diff --git a/src/Continuum_mechanics/Umat/Modular/plasticity_mechanism.cpp b/src/Continuum_mechanics/Umat/Modular/plasticity_mechanism.cpp index 8ca40752d..431c9302e 100644 --- a/src/Continuum_mechanics/Umat/Modular/plasticity_mechanism.cpp +++ b/src/Continuum_mechanics/Umat/Modular/plasticity_mechanism.cpp @@ -251,16 +251,23 @@ void PlasticityMechanism::update( const arma::vec& ds, int offset ) { - // Apply the FB correction UNCONDITIONALLY, including ds < 0: negative - // per-iteration corrections walk back an overshoot (Fischer-Burmeister - // enforces Dp >= 0 at convergence, not per iteration; legacy CCP loops - // apply s_j += ds_j directly). Gating on dp > iota froze the state after - // any overshoot — the loop then spun to maxiter with a constant ~1 MPa - // yield-surface violation and a 12x slowdown. + // Apply the FB correction PROJECTED onto Dp >= 0: negative per-iteration + // corrections walk back an overshoot (gating on dp > iota froze the state + // after any overshoot — maxiter spins with a ~1 MPa yield violation and a + // 12x slowdown), but the multiplier never drops below its start-of- + // increment value. Without the projection a tiny negative Dp is a SPURIOUS + // Fischer-Burmeister root whenever Phi > 0 is large (phi(Phi, Dp) ~ Dp for + // |Dp| << Phi) — reached in practice for near-singular hardening slopes, + // e.g. power-law R = k p^m with m < 1 at first yield (p < 0, Phi -> +100 + // MPa, mechanism inert). double dp = ds(offset); - // Update accumulated plastic strain + // Update accumulated plastic strain (projected: p never below p_start) double& p = ivc_.get("p").scalar(); + const double p_start = ivc_.get("p").scalar_start(); + if (p + dp < p_start) { + dp = p_start - p; + } p += dp; // Update plastic strain diff --git a/src/Continuum_mechanics/Umat/Thermomechanical/Plasticity/plastic_isotropic_ccp.cpp b/src/Continuum_mechanics/Umat/Thermomechanical/Plasticity/plastic_isotropic_ccp.cpp index 4fb8f29d1..e1bb2386e 100755 --- a/src/Continuum_mechanics/Umat/Thermomechanical/Plasticity/plastic_isotropic_ccp.cpp +++ b/src/Continuum_mechanics/Umat/Thermomechanical/Plasticity/plastic_isotropic_ccp.cpp @@ -237,23 +237,33 @@ void umat_plasticity_iso_CCP_T(const vec &Etot, const vec &DEtot, vec &sigma, do Bhat(0, 0) = sum(dPhidsigma%kappa_j[0]) - K(0,0); const std::vector dPhidsigma_l = { dPhidsigma }; - ContinuumTangent ct; - if (tangent_mode == 1) { - // Simo-Hughes algorithmic tangent (J2): dLambda_eps/dsigma = deta_stress(sigma). - // NOTE: only the mechanical block dSdE is algorithmically corrected. The thermal - // cross-tangents below (dSdT/drdE/drdT) are still assembled from the raw kappa_j and L - // (continuum form); their fully consistent kappa-tilde/L-tilde version is part of the - // closest-point (CPP) rework, future release. - const std::vector dLambda_dsigma_l = { deta_stress(sigma) }; - ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L, dLambda_dsigma_l); - } else { - ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); - } + // tangent_none must NOT zero P_epsilon/invBhat here: these sensitivities + // feed the PHYSICAL heat source r and its linearization (drdE/drdT), not + // just the Newton operator. Explicit-integration callers get the continuum + // operator in the thermomechanical kernels (the mechanical-only kernels + // honor tangent_none). + const int tangent_mode_eff = (tangent_mode == tangent_none) + ? tangent_continuum : tangent_mode; + const ContinuumTangent ct = compute_tangent_operator( + tangent_mode_eff, Bhat, kappa_j, dPhidsigma_l, Ds_j, L, + [&]() -> std::vector { // lazy: evaluated only in algorithmic mode + // Simo-Hughes algorithmic tangent (J2): dLambda_eps/dsigma = deta_stress(sigma). + // NOTE: only the mechanical block dSdE is algorithmically corrected. The thermal + // cross-tangents below (dSdT/drdE/drdT) are still assembled from the raw kappa_j and L + // (continuum form); their fully consistent kappa-tilde/L-tilde version is part of the + // closest-point (CPP) rework, future release. + const std::vector dLambda_dsigma_l = { deta_stress(sigma) }; + return dLambda_dsigma_l; + }); dSdE = ct.Lt; const std::vector& P_epsilon = ct.P_epsilon; std::vector P_theta(1); - P_theta[0] = dPhidtheta - sum(dPhidsigma%(L*alpha)); + // Consistency relation: P_theta = invBhat * (dPhi/dtheta - dPhi/dsigma:L:alpha) + // (units 1/K; cf. the SMA thermomechanical kernel). invBhat is active-set + // masked, so elastic steps correctly give P_theta = 0 — the previous form + // omitted invBhat (units 1/MPa missing) and polluted elastic steps. + P_theta[0] = ct.invBhat(0, 0) * (dPhidtheta - sum(dPhidsigma%(L*alpha))); dSdT = -1.*L*alpha - (kappa_j[0]*P_theta[0]); diff --git a/src/Continuum_mechanics/Umat/Thermomechanical/Plasticity/plastic_kin_iso_ccp.cpp b/src/Continuum_mechanics/Umat/Thermomechanical/Plasticity/plastic_kin_iso_ccp.cpp index 4c30c6436..d36e4e920 100755 --- a/src/Continuum_mechanics/Umat/Thermomechanical/Plasticity/plastic_kin_iso_ccp.cpp +++ b/src/Continuum_mechanics/Umat/Thermomechanical/Plasticity/plastic_kin_iso_ccp.cpp @@ -244,23 +244,33 @@ void umat_plasticity_kin_iso_CCP_T(const vec &Etot, const vec &DEtot, vec &sigma Bhat(0, 0) = sum(dPhidsigma%kappa_j[0]) - K(0,0); const std::vector dPhidsigma_l = { dPhidsigma }; - ContinuumTangent ct; - if (tangent_mode == 1) { - // Simo-Hughes algorithmic tangent (closest-point), J2 flow on (sigma-X). - // Backstress state-coupling deferred (CPP, future release). - // NOTE: only the mechanical block dSdE is algorithmically corrected. The thermal - // cross-tangents below (dSdT/drdE/drdT) keep the continuum form (raw kappa_j, L); - // their consistent kappa-tilde/L-tilde version is part of the CPP rework. - const std::vector dLambda_dsigma_l = { deta_stress(sigma - X) }; - ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L, dLambda_dsigma_l); - } else { - ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); - } + // tangent_none must NOT zero P_epsilon/invBhat here: these sensitivities + // feed the PHYSICAL heat source r and its linearization (drdE/drdT), not + // just the Newton operator. Explicit-integration callers get the continuum + // operator in the thermomechanical kernels (the mechanical-only kernels + // honor tangent_none). + const int tangent_mode_eff = (tangent_mode == tangent_none) + ? tangent_continuum : tangent_mode; + const ContinuumTangent ct = compute_tangent_operator( + tangent_mode_eff, Bhat, kappa_j, dPhidsigma_l, Ds_j, L, + [&]() -> std::vector { // lazy: evaluated only in algorithmic mode + // Simo-Hughes algorithmic tangent (closest-point), J2 flow on (sigma-X). + // Backstress state-coupling deferred (CPP, future release). + // NOTE: only the mechanical block dSdE is algorithmically corrected. The thermal + // cross-tangents below (dSdT/drdE/drdT) keep the continuum form (raw kappa_j, L); + // their consistent kappa-tilde/L-tilde version is part of the CPP rework. + const std::vector dLambda_dsigma_l = { deta_stress(sigma - X) }; + return dLambda_dsigma_l; + }); dSdE = ct.Lt; const std::vector& P_epsilon = ct.P_epsilon; std::vector P_theta(1); - P_theta[0] = dPhidtheta - sum(dPhidsigma%(L*alpha)); + // Consistency relation: P_theta = invBhat * (dPhi/dtheta - dPhi/dsigma:L:alpha) + // (units 1/K; cf. the SMA thermomechanical kernel). invBhat is active-set + // masked, so elastic steps correctly give P_theta = 0 — the previous form + // omitted invBhat (units 1/MPa missing) and polluted elastic steps. + P_theta[0] = ct.invBhat(0, 0) * (dPhidtheta - sum(dPhidsigma%(L*alpha))); dSdT = -1.*L*alpha - (kappa_j[0]*P_theta[0]); diff --git a/src/Continuum_mechanics/Umat/Thermomechanical/SMA/unified_T.cpp b/src/Continuum_mechanics/Umat/Thermomechanical/SMA/unified_T.cpp index 51f320b59..42a47bd23 100755 --- a/src/Continuum_mechanics/Umat/Thermomechanical/SMA/unified_T.cpp +++ b/src/Continuum_mechanics/Umat/Thermomechanical/SMA/unified_T.cpp @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -612,37 +613,45 @@ void umat_sma_unified_T_T(const string &umat_name, const vec &Etot, const vec &D Bhat(1,1) = sum(dPhiRdsigma%kappa_j[1]) - K(1,1); const std::vector dPhidsigma_l = { dPhiFdsigma, dPhiRdsigma }; - ContinuumTangent ct; - if (tangent_mode == 1) { - // Simo-Hughes algorithmic tangent (closest-point). dLambda^F/dsigma by central finite - // difference of the transformation flow Hcur(sigma)*dDrucker(sigma) + analytic linear DM; - // ETMean held fixed (transformation-state coupling deferred to CPP, future release). - // NOTE: only the mechanical block dSdE is algorithmically corrected. The thermal - // cross-tangents below (dSdT/drdE/drdT) keep the continuum form (raw kappa_j, L); - // their consistent kappa-tilde/L-tilde version is part of the CPP rework. - auto lambdaTF_at = [&](const vec &s) -> vec { - double sstar = Mises_stress(s) - sigmacrit; - if (sstar < 0.) sstar = 0.; - double Hc = Hmin + (Hmax - Hmin) * (1. - exp(-1. * k1 * sstar)); - if (aniso_criteria) { - return Hc * dDrucker_ani_stress(s, DFA_params, prager_b, prager_n); + // tangent_none must NOT zero P_epsilon/invBhat here: these sensitivities + // feed the PHYSICAL heat source r and its linearization (drdE/drdT), not + // just the Newton operator. Explicit-integration callers get the continuum + // operator in the thermomechanical kernels (the mechanical-only kernels + // honor tangent_none). + // tangent_algorithmic is ALSO clamped to continuum for this kernel: the + // finite-difference flow Hessian makes the local transformation system + // near-singular on the plateau (rcond ~ 1e-17 — approx-solved state then + // NaN-poisons the mixture stiffness and aborts the solve; LAPACK-backend + // dependent). Re-enable together with the exact CPP Hessian rework. + const int tangent_mode_eff = (tangent_mode == tangent_none || + tangent_mode == tangent_algorithmic) + ? tangent_continuum : tangent_mode; + const ContinuumTangent ct = compute_tangent_operator( + tangent_mode_eff, Bhat, kappa_j, dPhidsigma_l, Ds_j, L, + [&]() -> std::vector { // lazy: evaluated only in algorithmic mode + // Simo-Hughes algorithmic tangent (closest-point). dLambda^F/dsigma by central finite + // difference of the transformation flow Hcur(sigma)*dDrucker(sigma) + analytic linear DM; + // ETMean held fixed (transformation-state coupling deferred to CPP, future release). + // NOTE: only the mechanical block dSdE is algorithmically corrected. The thermal + // cross-tangents below (dSdT/drdE/drdT) keep the continuum form (raw kappa_j, L); + // their consistent kappa-tilde/L-tilde version is part of the CPP rework. + auto lambdaTF_at = [&](const vec &s) -> vec { + return sma_transformation_flow(s, sigmacrit, Hmin, Hmax, k1, + aniso_criteria, DFA_params, + prager_b, prager_n); + }; + const double hfd = 1.e-5 * (norm(sigma, 2) + 1.); + mat dLambdaF = zeros(6, 6); + for (int c = 0; c < 6; c++) { + vec sp = sigma, sm = sigma; + sp(c) += hfd; + sm(c) -= hfd; + dLambdaF.col(c) = (lambdaTF_at(sp) - lambdaTF_at(sm)) / (2. * hfd); } - return Hc * dDrucker_stress(s, prager_b, prager_n); - }; - const double hfd = 1.e-5 * (norm(sigma, 2) + 1.); - mat dLambdaF = zeros(6, 6); - for (int c = 0; c < 6; c++) { - vec sp = sigma, sm = sigma; - sp(c) += hfd; - sm(c) -= hfd; - dLambdaF.col(c) = (lambdaTF_at(sp) - lambdaTF_at(sm)) / (2. * hfd); - } - dLambdaF += DM; - const std::vector dLambda_dsigma_l = { dLambdaF, -1. * DM }; - ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L, dLambda_dsigma_l); - } else { - ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); - } + dLambdaF += DM; + const std::vector dLambda_dsigma_l = { dLambdaF, -1. * DM }; + return dLambda_dsigma_l; + }); dSdE = ct.Lt; const std::vector& P_epsilon = ct.P_epsilon; const mat& invBhat = ct.invBhat; diff --git a/src/Continuum_mechanics/Umat/tangent_assembly.cpp b/src/Continuum_mechanics/Umat/tangent_assembly.cpp index 948f1064c..7865408ce 100644 --- a/src/Continuum_mechanics/Umat/tangent_assembly.cpp +++ b/src/Continuum_mechanics/Umat/tangent_assembly.cpp @@ -25,6 +25,7 @@ #include #include +#include namespace simcoon { @@ -51,7 +52,19 @@ ContinuumTangent assemble_continuum_tangent( // mask(i,j) = op(i)*op(j); Bbar = mask \circ Bhat + diag(1-op). const arma::mat mask = op * op.t(); const arma::mat Bbar = mask % Bhat + arma::diagmat(1.0 - op); - arma::mat invBhat = mask % arma::inv(Bbar); // zero out inactive rows/cols + arma::mat invBbar; + if (!arma::inv(invBbar, Bbar) || !invBbar.is_finite()) { + // Degenerate hardening system (e.g. SMA transformation plateau, + // Bhat -> 0): fall back to the elastic operator for this increment + // instead of poisoning Lt/P with inf (the solver's own K inversion + // would then throw and abort the whole solve). + ContinuumTangent out; + out.Lt = L; + out.P_epsilon.assign(Nmech, arma::zeros(6)); + out.invBhat.zeros(Nmech, Nmech); + return out; + } + arma::mat invBhat = mask % invBbar; // zero out inactive rows/cols // Stack \partial \Phi^m gradients into a 6\times Nmech matrix so the double sum over // (l, m) becomes one GEMM: P = (L \cdot \partial \Phi ) \cdot invBhat. @@ -84,8 +97,11 @@ ContinuumTangent assemble_continuum_tangent( out.P_epsilon.assign(1, arma::zeros(6)); out.invBhat.zeros(1, 1); - if (Ds <= simcoon::iota) { - // Mechanism inactive — invBhat masked to 0, P_eps = 0, Lt = L. + if (Ds <= simcoon::iota || std::abs(Bhat_scalar) < simcoon::iota || + !std::isfinite(Bhat_scalar)) { + // Mechanism inactive, or degenerate hardening (Bhat -> 0, e.g. SMA + // transformation plateau): invBhat masked to 0, P_eps = 0, Lt = L — + // 1/Bhat would poison Lt with inf and abort the solve downstream. out.Lt = L; return out; } @@ -128,7 +144,15 @@ ContinuumTangent assemble_algorithmic_tangent( return assemble_continuum_tangent(Bhat_continuum, kappa_j, dPhidsigma_l, Ds_j, L); } - const arma::mat Minv = arma::inv(I6 + L * sumDsLambdaSigma); + // The \partial \Lambda /\partial \sigma blocks may come from finite differences (SMA + // transformation flow) and can be ill-conditioned near activation + // boundaries; whether inv() flags such a matrix as singular is + // LAPACK-backend dependent. Fall back to the (always well-posed) + // continuum operator rather than aborting the whole solve. + arma::mat Minv; + if (!arma::inv(Minv, I6 + L * sumDsLambdaSigma)) { + return assemble_continuum_tangent(Bhat_continuum, kappa_j, dPhidsigma_l, Ds_j, L); + } // Algorithmic operators: \tilde{L} = M^{-1} L, \tilde{\kappa}^j = M^{-1} \kappa^j, // \tilde{B}^{lj} = Bhat_continuum^{lj} + \partial \Phi^l \cdot (M^{-1} - I) \cdot \kappa^j (Bhat_continuum = \partial \Phi \cdot \kappa - K). @@ -166,11 +190,78 @@ ContinuumTangent assemble_algorithmic_tangent( { return assemble_continuum_tangent(Bhat_scalar, kappa, dPhidsigma, Ds, L); } - const arma::mat Minv = arma::inv(arma::eye(6, 6) + L * (Ds * dLambda_dsigma)); + arma::mat Minv; + if (!arma::inv(Minv, arma::eye(6, 6) + L * (Ds * dLambda_dsigma))) { + // Ill-conditioned FD Hessian (backend-dependent detection): fall back + // to the continuum operator instead of aborting the solve. + return assemble_continuum_tangent(Bhat_scalar, kappa, dPhidsigma, Ds, L); + } const arma::mat L_tilde = Minv * L; const arma::vec kappa_t = Minv * kappa; const double Bhat_t = Bhat_scalar + arma::dot(dPhidsigma, (Minv - arma::eye(6, 6)) * kappa); return assemble_continuum_tangent(Bhat_t, kappa_t, dPhidsigma, Ds, L_tilde); } + + +ContinuumTangent compute_tangent_operator( + int tangent_mode, + const arma::mat& Bhat, + const std::vector& kappa_j, + const std::vector& dPhidsigma_l, + const arma::vec& Ds_j, + const arma::mat& L, + const HessianProvider& dLambda_dsigma) { + + if (tangent_mode == simcoon::tangent_none) { + // Explicit integration: elastic operator, zeroed sensitivities so the + // thermomechanical P_theta algebra degrades consistently. + ContinuumTangent ct; + ct.Lt = L; + ct.P_epsilon.assign(kappa_j.size(), arma::zeros(6)); + ct.invBhat = arma::zeros(Bhat.n_rows, Bhat.n_cols); + return ct; + } + if (tangent_mode == simcoon::tangent_continuum) { + return assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); + } + if (tangent_mode == simcoon::tangent_algorithmic) { + if (!dLambda_dsigma) { + // Flow independent of stress: the algorithmic operator IS the + // continuum one. + return assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L); + } + return assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma_l, Ds_j, L, + dLambda_dsigma()); + } + if (tangent_mode == simcoon::tangent_closest_point) { + throw std::invalid_argument( + "compute_tangent_operator: tangent_closest_point (3) is reserved " + "and not implemented in this release"); + } + throw std::invalid_argument("compute_tangent_operator: unknown tangent_mode " + + std::to_string(tangent_mode)); +} + +ContinuumTangent compute_tangent_operator( + int tangent_mode, + double Bhat_scalar, + const arma::vec& kappa, + const arma::vec& dPhidsigma, + double Ds, + const arma::mat& L, + const std::function& dLambda_dsigma) { + + HessianProvider provider = nullptr; + if (dLambda_dsigma) { + provider = [&dLambda_dsigma]() { + return std::vector{dLambda_dsigma()}; + }; + } + arma::mat Bhat(1, 1); + Bhat(0, 0) = Bhat_scalar; + return compute_tangent_operator(tangent_mode, Bhat, {kappa}, {dPhidsigma}, + arma::vec{Ds}, L, provider); +} + } // namespace simcoon diff --git a/src/Continuum_mechanics/Umat/umat_smart.cpp b/src/Continuum_mechanics/Umat/umat_smart.cpp index 2d0fcb4a7..bbcb3d9c4 100644 --- a/src/Continuum_mechanics/Umat/umat_smart.cpp +++ b/src/Continuum_mechanics/Umat/umat_smart.cpp @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -33,6 +34,7 @@ #include #include +#include #include #include #include @@ -46,18 +48,8 @@ #include #include -#include -#include -#include #include -#include -#include -#include -#include -#include #include -#include -#include #include #include #include @@ -66,6 +58,7 @@ #include #include #include +#include #include #include @@ -245,6 +238,12 @@ void select_umat_T(phase_characteristics &rve, const mat &DR,const double &Time, exit(0); } } + // Thermomechanical route is small strain (F = I, J = 1): the UMATs return Cauchy sigma; + // mirror the mechanical stress-route convention (see select_umat_M/_finite) so the + // Kirchhoff-route consumers (output tau/J, set_start, sinks) stay correct: tau = J sigma = sigma, + // PKII = sigma. Without this the thermomechanical outputs read an empty tau (zero stress). + umat_T->tau = umat_T->sigma; + umat_T->PKII = umat_T->sigma; rve.local2global(); } @@ -253,7 +252,7 @@ void select_umat_M_finite(phase_characteristics &rve, const mat &DR,const double { std::map list_umat; - list_umat = {{"UMEXT",0},{"UMABA",1},{"ELISO",2},{"ELIST",3},{"ELORT",4},{"HYPOO",5},{"EPICP",6},{"EPKCP",7},{"SNTVE",8},{"NEOHI",9},{"NEOHC",10},{"MOORI",11},{"YEOHH",12},{"ISHAH",13},{"GETHH",14},{"SWANH",15},{"EPHIL",16},{"EPTRI",16},{"EPHAC",17},{"EPANI",18},{"EPDFA",19},{"EPCHG",20},{"EPHIN",21}}; + list_umat = {{"UMEXT",0},{"UMABA",1},{"ELISO",201},{"ELIST",201},{"ELORT",201},{"HYPOO",5},{"EPICP",6},{"EPKCP",201},{"SNTVE",8},{"NEOHI",9},{"NEOHC",10},{"MOORI",11},{"YEOHH",12},{"ISHAH",13},{"GETHH",14},{"SWANH",15},{"EPHIL",201},{"EPTRI",201},{"EPHAC",201},{"EPANI",201},{"EPDFA",201},{"EPCHG",201},{"EPHIN",201},{"MODUL",200}}; rve.global2local(); auto umat_M = std::dynamic_pointer_cast(rve.sptr_sv_local); @@ -264,18 +263,6 @@ void select_umat_M_finite(phase_characteristics &rve, const mat &DR,const double */ break; } - case 2: { - umat_elasticity_iso(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 3: { - umat_elasticity_trans_iso(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 4: { - umat_elasticity_ortho(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } case 5: { umat_hypoelasticity_ortho(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->F0, umat_M->F1, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); break; @@ -284,14 +271,34 @@ void select_umat_M_finite(phase_characteristics &rve, const mat &DR,const double umat_plasticity_iso_CCP(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); break; } - case 7: { - umat_plasticity_kin_iso_CCP(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } case 8: { umat_saint_venant(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->F0, umat_M->F1, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); break; } + case 201: { + // Legacy names served by the modular engine on the log-strain + // measures (etot/Detot), exactly like EPICP above. + umat_legacy_modular(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); + break; + } + case 200: { + // MODUL under NLGEOM is a Hencky hyperelastic composition: + // sigma = L : (ln V - sum eps_inel) is a genuine stored-energy + // law ONLY when the accumulated corotational strain is exactly + // the logarithmic strain, i.e. corate 3 (log_R). Any other + // corate degrades it to a non-integrable hypoelastic rate + // (spurious dissipation in closed cycles), so it is rejected + // rather than silently accepted. + if (corate_type != 3) { + throw simcoon::exception_solver( + "MODUL under finite strain requires corate_type = 3 " + "(log_R): the modular composition is hyperelastic in " + "the logarithmic strain; got corate_type = " + + std::to_string(corate_type)); + } + umat_modular(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); + break; + } case 9: { umat_neo_hookean_incomp(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->F0, umat_M->F1, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); break; @@ -306,30 +313,6 @@ void select_umat_M_finite(phase_characteristics &rve, const mat &DR,const double // EPICP (case 6) above. These were absent from this finite dispatcher, so a // missing-key lookup returned 0 and they silently fell through to case 0 // (no-op) -> zero stress under NLGEOM. Registered here to fix that. - case 16: { - umat_plasticity_hill_isoh_CCP(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 17: { - umat_hill_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 18: { - umat_ani_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 19: { - umat_dfa_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 20: { - umat_generic_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 21: { - umat_plasticity_hill_isoh_CCP_N(rve.sptr_matprops->umat_name, umat_M->etot, umat_M->Detot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } default: { cout << "Error: The choice of Umat could not be found in the umat library :" << rve.sptr_matprops->umat_name << "\n"; exit(0); @@ -339,8 +322,15 @@ void select_umat_M_finite(phase_characteristics &rve, const mat &DR,const double // tau is the canonical Kirchhoff route stress (Wm stays on the Kirchhoff route). Small-strain/ // log-strain boxes already return Kirchhoff (sigma = L:(ln V - hp), no 1/J); genuine finite boxes // return Cauchy, mapped to tau here. Cauchy is a derived OUTPUT (tau/J), never on the route. - const std::set kirchhoff_box = {2,3,4,6,7,16,17,18,19,20,21}; // HYPOO(5) kept in the Cauchy group for now - if (kirchhoff_box.count(list_umat[rve.sptr_matprops->umat_name]) > 0) + // Keyed on umat NAMES, not dispatch ids: the ids are renumbered when + // kernels move (the legacy->201 remap orphaned the previous id-keyed + // set, silently giving every 201 adapter a spurious Cauchy->Kirchhoff + // x J conversion under NLGEOM). HYPOO kept in the Cauchy group for now. + static const std::set kirchhoff_box = { + "EPICP", "MODUL", + "ELISO", "ELIST", "ELORT", "EPKCP", "EPHIL", "EPTRI", "EPHAC", + "EPANI", "EPDFA", "EPCHG", "EPHIN"}; // log-strain boxes: sigma out IS Kirchhoff + if (kirchhoff_box.count(rve.sptr_matprops->umat_name) > 0) umat_M->tau = umat_M->sigma; // box output is already the Kirchhoff stress else umat_M->tau = t2v_stress(Cauchy2Kirchoff(v2t_stress(umat_M->sigma), umat_M->F1)); // genuine Cauchy -> Kirchhoff @@ -363,7 +353,7 @@ void select_umat_M(phase_characteristics &rve, const mat &DR,const double &Time, std::map list_umat; - list_umat = {{"UMEXT",0},{"UMABA",1},{"ELISO",2},{"ELIST",3},{"ELORT",4},{"EPICP",5},{"EPKCP",6},{"EPCHA",7},{"SMAUT",8},{"SMANI",8},{"SMADI",8},{"SMADC",8},{"SMAAI",8},{"SMAAC",8},{"SMRDI",9},{"SMRDC",9},{"SMRAI",9},{"SMRAC",9},{"LLDM0",10},{"ZENER",11},{"ZENNK",12},{"PRONK",13},{"EPHIL",17},{"EPTRI",17},{"EPHAC",18},{"EPANI",19},{"EPDFA",20},{"EPCHG",21},{"EPHIN",22},{"SMAMO",23},{"SMAMC",24},{"MIHEN",100},{"MIMTN",101},{"MISCN",103},{"MIPLN",104},{"MODUL",200}}; //TODO_2.0 remove SMAUT, SMANI, after 2.0 release + list_umat = {{"UMEXT",0},{"UMABA",1},{"ELISO",201},{"ELIST",201},{"ELORT",201},{"EPICP",5},{"EPKCP",201},{"EPCHA",7},{"SMAUT",8},{"SMANI",8},{"SMADI",8},{"SMADC",8},{"SMAAI",8},{"SMAAC",8},{"SMRDI",9},{"SMRDC",9},{"SMRAI",9},{"SMRAC",9},{"LLDM0",10},{"ZENER",11},{"ZENNK",12},{"PRONK",13},{"EPHIL",201},{"EPTRI",201},{"EPHAC",201},{"EPANI",201},{"EPDFA",201},{"EPCHG",201},{"EPHIN",201},{"SMAMO",23},{"SMAMC",24},{"MIHEN",100},{"MIMTN",101},{"MISCN",103},{"MIPLN",104},{"MODUL",200}}; //TODO_2.0 remove SMAUT, SMANI, after 2.0 release rve.global2local(); auto umat_M = std::dynamic_pointer_cast(rve.sptr_sv_local); @@ -415,26 +405,10 @@ void select_umat_M(phase_characteristics &rve, const mat &DR,const double &Time, abaqus_umat->umat_abaqus(rve, DR, Time, DTime, ndi, nshr, start, solver_type, tnew_dt); break; } - case 2: { - umat_elasticity_iso(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 3: { - umat_elasticity_trans_iso(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 4: { - umat_elasticity_ortho(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } case 5: { umat_plasticity_iso_CCP(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); break; } - case 6: { - umat_plasticity_kin_iso_CCP(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } case 7: { umat_plasticity_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); break; @@ -463,30 +437,6 @@ void select_umat_M(phase_characteristics &rve, const mat &DR,const double &Time, umat_prony_Nfast(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); break; } - case 17: { - umat_plasticity_hill_isoh_CCP(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 18: { - umat_hill_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 19: { - umat_ani_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 20: { - umat_dfa_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 21: { - umat_generic_chaboche_CCP(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } - case 22: { - umat_plasticity_hill_isoh_CCP_N(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); - break; - } case 23: case 24: { // SMAMO (isotropic) and SMAMC (cubic) both use unified umat_sma_mono umat_sma_mono(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); @@ -497,6 +447,13 @@ void select_umat_M(phase_characteristics &rve, const mat &DR,const double &Time, umat_modular(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); break; } + case 201: { + // Legacy names served by the modular engine: props are translated + // by the per-name adapter (legacy_adapters.cpp), state/outputs + // flow through umat_modular untouched. + umat_legacy_modular(rve.sptr_matprops->umat_name, umat_M->Etot, umat_M->DEtot, umat_M->sigma, umat_M->Lt, umat_M->L, DR, rve.sptr_matprops->nprops, rve.sptr_matprops->props, umat_M->nstatev, umat_M->statev, umat_M->T, umat_M->DT, Time, DTime, umat_M->Wm(0), umat_M->Wm(1), umat_M->Wm(2), umat_M->Wm(3), ndi, nshr, start, tnew_dt, umat_M->tangent_mode); + break; + } case 100: case 101: case 103: case 104: { umat_multi(rve, DR, Time, DTime, ndi, nshr, start, solver_type, tnew_dt, list_umat[rve.sptr_matprops->umat_name]); break; diff --git a/src/Simulation/Solver/solver.cpp b/src/Simulation/Solver/solver.cpp index 8e6b4ec16..eb679ccef 100755 --- a/src/Simulation/Solver/solver.cpp +++ b/src/Simulation/Solver/solver.cpp @@ -15,12 +15,13 @@ */ -///@file constitutive.hpp +///@file solver.cpp ///@brief solver: solve the mechanical thermomechanical equilibrium // // for a homogeneous loading path, allowing repeatable steps ///@version 1.9 #include +#include #include #include #include @@ -46,71 +47,96 @@ #include #include #include +#include using namespace std; using namespace arma; +namespace { + +// Single definition of the step-cut decision: bisect the increment unless it +// is already at its minimal fraction. Returns whether the cut was applied — +// call sites decide what a refusal means (throw a typed error, rethrow, ...). +inline bool try_step_cut(const double &Dtinc_cur, const double &Dn_mini, + const double &div_tnew_dt, double &tnew_dt) { + if (fabs(Dtinc_cur - Dn_mini) > simcoon::iota) { + tnew_dt = div_tnew_dt; + return true; + } + return false; +} + +// Step-cut-or-rethrow policy shared by every recoverable-failure catch in the +// solver Newton loops. Must only be called from inside a catch block. +inline void step_cut_or_rethrow(const double &Dtinc_cur, const double &Dn_mini, + const double &div_tnew_dt, double &tnew_dt, + int &compteur) { + if (try_step_cut(Dtinc_cur, Dn_mini, div_tnew_dt, tnew_dt)) { + compteur = 0; + } else { + throw; + } +} + +} // namespace + namespace simcoon{ -void solver(const string &umat_name, const vec &props, const unsigned int &nstatev, const double &psi_rve, const double &theta_rve, const double &phi_rve, const int &solver_type, const int &corate_type, const double &div_tnew_dt_solver, const double &mul_tnew_dt_solver, const int &miniter_solver, const int &maxiter_solver, const int &inforce_solver, const double &precision_solver, const double &lambda_solver, const std::string &path_data, const std::string &path_results, const std::string &pathfile, const std::string &outputfile, const int &tangent_mode) { +int solver_run(std::vector &blocks, const double &T_init, const solver_output &so, const string &umat_name, const vec &props, const unsigned int &nstatev, const double &psi_rve, const double &theta_rve, const double &phi_rve, const int &solver_type, const int &corate_type, const solver_params &ctrl, solver_results_sink &sink) { - //Check if the required directories exist: - if(!filesystem::is_directory(path_data)) { - cout << "error: the folder for the data, " << path_data << ", is not present" << endl; - return; + if (ctrl.tangent_mode < simcoon::tangent_none || ctrl.tangent_mode > simcoon::tangent_algorithmic) { + throw std::invalid_argument("solver: tangent_mode must be 0 (none), 1 (continuum) or 2 (algorithmic); got " + + std::to_string(ctrl.tangent_mode) + " (3 = closest-point is reserved)"); } - if(!filesystem::is_directory(path_results)) { - cout << "The folder for the results, " << path_results << ", is not present and has been created" << endl; - filesystem::create_directory(path_results); + // tabular (mode 3) steps carry an ABSOLUTE time column: repeating them (ncycle > 1) + // is ill-defined (and generate() consumes the '2' hold flags on the first pass) + for (const auto &bl : blocks) { + if (bl.ncycle > 1) { + for (const auto &sptr : bl.steps) { + if (sptr->mode == 3) { + throw simcoon::exception_solver("block " + std::to_string(bl.number) + ": tabular (mode 3) steps cannot be cycled (ncycle > 1); unroll the cycles into explicit steps"); + } + } + } } - - std::string ext_filename = outputfile.substr(outputfile.length()-4,outputfile.length()); - std::string filename = outputfile.substr(0,outputfile.length()-4); //to remove the extension - - std::string outputfile_global = filename + "_global" + ext_filename; - std::string outputfile_local = filename + "_local" + ext_filename; - - std::string output_info_file = "output.dat"; - + + // aliases keep the extracted historical solver() body below textually identical + const double &div_tnew_dt_solver = ctrl.div_tnew_dt; + const double &mul_tnew_dt_solver = ctrl.mul_tnew_dt; + const int &miniter_solver = ctrl.miniter; + const int &maxiter_solver = ctrl.maxiter; + const int &inforce_solver = ctrl.inforce; + const double &precision_solver = ctrl.precision; + const double &lambda_solver = ctrl.lambda; + const int &tangent_mode = ctrl.tangent_mode; + ///Usefull UMAT variables int ndi = 3; - int nshr = 3; - std::vector blocks; //loading blocks + int nshr = 3; phase_characteristics rve; // Representative volume element - + unsigned int size_meca = 0; //6 for small perturbation, 9 for finite deformation bool start = true; double Time = 0.; double DTime = 0.; - double T_init = 0.; double tnew_dt = 1.; - + mat C = zeros(6,6); //Stiffness dS/dE mat c = zeros(6,6); //stifness dtau/deps mat DR = eye(3,3); mat R = eye(3,3); - + // mat dSdE = zeros(6,6); // mat dSdT = zeros(1,6); mat dQdE = zeros(6,1); mat dQdT = zeros(1,1); - - //read the material properties - //Read the loading path - read_path(blocks, T_init, path_data, pathfile); - - ///Material properties reading, use "material.dat" to specify parameters values + + ///Material properties rve.sptr_matprops->update(0, umat_name, 1, psi_rve, theta_rve, phi_rve, props.n_elem, props); - + //Output int o_ncount = 0; double o_tcount = 0.; - - solver_output so(blocks.size()); - read_output(so, blocks.size(), nstatev, path_data, output_info_file); - - //Check output and step files - check_path_output(blocks, so); double error = 0.; vec residual; @@ -190,16 +216,11 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } else if ((solver_type < 0)||(solver_type > 2)) { cout << "Error, the solver type is not properly defined"; - return; + return 1; } - + if(start) { - //Use the number of phases saved to define the files - rve.define_output(path_results, outputfile_global, "global"); - rve.define_output(path_results, outputfile_local, "local"); - //Write the initial results -// rve.output(so, -1, -1, -1, -1, Time, "global"); -// rve.output(so, -1, -1, -1, -1, Time, "local"); + sink.init(rve); } //Set the start values of sigma_start=sigma and statev_start=statev for all phases rve.set_start(corate_type); //DEtot = 0 and DT = 0 and DR = 0 so we can use it safely here @@ -230,8 +251,7 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat sptr_meca->generate_kin(Time, sv_M->F0, sv_M->T); } else { - cout << "error in Simulation/Solver/solver.cpp: control_type should be a int value in a range of 1 to 5" << endl; - exit(0); + throw simcoon::exception_solver("error in Simulation/Solver/solver.cpp: control_type should be a int value in a range of 1 to 6"); } nK = sum(sptr_meca->cBC_meca); @@ -407,8 +427,7 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } } else { - cout << "error , Those control types are inteded for use in strain-controlled loading only" << endl; - exit(0); + throw simcoon::exception_solver("error, control types 5 and 6 are intended for use in strain-controlled loading only"); } while((error > precision_solver)&&(compteur < maxiter_solver)) { @@ -442,7 +461,16 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat ///jacobian inversion bool inv_success = inv(invK, K); if (!inv_success) { - throw simcoon::exception_solver("Singular Jacobian matrix during Newton-Raphson iteration."); + // Degenerate tangent at the trial state (e.g. a + // branch-flip excursion under stress control): bisect + // the increment; at the minimal fraction fall through + // to the existing inforce path rather than throwing + // (a hard throw here overrides the inforce contract and + // is platform-fragile — LAPACK-backend-dependent + // singularity detection). + try_step_cut(Dtinc_cur, sptr_meca->Dn_mini, div_tnew_dt_solver, tnew_dt); + compteur = maxiter_solver; + break; } /// Prediction of the component of the strain tensor @@ -462,7 +490,7 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } Delta = -invK * residual; } - + if (blocks[i].control_type == 1) { sv_M->DR = eye(3,3); sv_M->DEtot += Delta; @@ -644,40 +672,34 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } } } - else return; - + else return 1; + } else { tnew_dt = div_tnew_dt_solver; } } - + if((compteur < miniter_solver)&&(tnew_dt >= 1.)) { tnew_dt = mul_tnew_dt_solver; } compteur = 0; } + // Recoverable failures of the trial state — F-reconstruction + // (sqrtmat/expmat), singular inverse in the kinematics or the + // tangent assembly, singular return-map Jacobian (FB det) — + // are bisected away; anything else propagates. catch (const simcoon::exception_sqrtmat_sympd &) { - // F-reconstruction (ER_to_F: sqrtmat_sympd of 2E+I, control_type 2) failed - // because the controlled Green-Lagrange strain pushed 2E+I out of positive- - // definiteness. Bisect the increment and retry instead of aborting the whole - // run; only give up (rethrow) once the step is already at its minimal fraction. - if (fabs(Dtinc_cur - sptr_meca->Dn_mini) > simcoon::iota) { - tnew_dt = div_tnew_dt_solver; - compteur = 0; - } else { - throw; - } + step_cut_or_rethrow(Dtinc_cur, sptr_meca->Dn_mini, div_tnew_dt_solver, tnew_dt, compteur); } catch (const simcoon::exception_expmat_sym &) { - // V-reconstruction (eR_to_F: expmat_sym of ln V, control_type 3) failed; same - // step-cut policy as the sqrtmat_sympd path above. - if (fabs(Dtinc_cur - sptr_meca->Dn_mini) > simcoon::iota) { - tnew_dt = div_tnew_dt_solver; - compteur = 0; - } else { - throw; - } + step_cut_or_rethrow(Dtinc_cur, sptr_meca->Dn_mini, div_tnew_dt_solver, tnew_dt, compteur); + } + catch (const simcoon::exception_inv &) { + step_cut_or_rethrow(Dtinc_cur, sptr_meca->Dn_mini, div_tnew_dt_solver, tnew_dt, compteur); + } + catch (const simcoon::exception_det &) { + step_cut_or_rethrow(Dtinc_cur, sptr_meca->Dn_mini, div_tnew_dt_solver, tnew_dt, compteur); } sptr_meca->assess_inc(tnew_dt, tinc, Dtinc, rve ,Time, DTime, DR, corate_type); @@ -696,9 +718,8 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat //Write the results if (((so.o_type(i) == 1)&&(o_ncount == so.o_nfreq(i)))||(((so.o_type(i) == 2)&&(fabs(o_tcount - so.o_tfreq(i)) < 1.E-12)))) { - rve.output(so, i, n, j, inc, Time, "global"); - rve.output(so, i, n, j, inc, Time, "local"); - + sink.record(rve, so, i, n, j, inc, Time); + if (so.o_type(i) == 1) { o_ncount = 0; } @@ -706,13 +727,13 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat o_tcount = 0.; } } - + tinc = 0.; inc++; } - + } - + } break; } @@ -774,16 +795,11 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } else if ((solver_type < 0)||(solver_type > 2)) { cout << "Error, the solver type is not properly defined"; - return; + return 1; } - + if(start) { - //Use the number of phases saved to define the files - rve.define_output(path_results, outputfile_global, "global"); - rve.define_output(path_results, outputfile_local, "local"); - //Write the initial results -// rve.output(so, -1, -1, -1, -1, Time, "global"); -// rve.output(so, -1, -1, -1, -1, Time, "local"); + sink.init(rve); } //Set the start values of sigma_start=sigma and statev_start=statev for all phases rve.set_start(corate_type); //DEtot = 0 and DT = 0 so we can use it safely here @@ -821,7 +837,8 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } while (tinc<1.) { - + + try { sptr_thermomeca->compute_inc(tnew_dt, inc, tinc, Dtinc, Dtinc_cur, inforce_solver); if(nK + sptr_thermomeca->cBC_T == 0){ @@ -864,9 +881,9 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } else { cout << "error : The Thermal BC is not recognized\n"; - return; + return 1; } - + while((error > precision_solver)&&(compteur < maxiter_solver)) { if(solver_type != 1){ @@ -878,7 +895,11 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat ///jacobian inversion bool inv_success = inv(invK, K); if (!inv_success) { - throw simcoon::exception_solver("Singular Jacobian matrix during thermomechanical Newton-Raphson iteration."); + // Same cut-then-inforce policy as the mechanical loop + // (no throw at Dn_mini — respects the inforce contract). + try_step_cut(Dtinc_cur, sptr_thermomeca->Dn_mini, div_tnew_dt_solver, tnew_dt); + compteur = maxiter_solver; + break; } /// Prediction of the component of the strain tensor @@ -899,7 +920,6 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat sigma_in_red(6) = -1.*sv_T->r_in; Delta = -invK * residual; } - for(int k = 0 ; k < 6 ; k++) { sv_T->DEtot(k) += Delta(k); @@ -954,7 +974,7 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } else { cout << "error : The Thermal BC is not recognized\n"; - return; + return 1; } compteur++; @@ -1005,19 +1025,34 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } } } - else return; - + else return 1; + } else { tnew_dt = div_tnew_dt_solver; } } - + if((compteur < miniter_solver)&&(tnew_dt >= 1.)) { tnew_dt = mul_tnew_dt_solver; } compteur = 0; - + } + // Same recoverable-failure set and step-cut policy as the + // mechanical Newton loop above. + catch (const simcoon::exception_sqrtmat_sympd &) { + step_cut_or_rethrow(Dtinc_cur, sptr_thermomeca->Dn_mini, div_tnew_dt_solver, tnew_dt, compteur); + } + catch (const simcoon::exception_expmat_sym &) { + step_cut_or_rethrow(Dtinc_cur, sptr_thermomeca->Dn_mini, div_tnew_dt_solver, tnew_dt, compteur); + } + catch (const simcoon::exception_inv &) { + step_cut_or_rethrow(Dtinc_cur, sptr_thermomeca->Dn_mini, div_tnew_dt_solver, tnew_dt, compteur); + } + catch (const simcoon::exception_det &) { + step_cut_or_rethrow(Dtinc_cur, sptr_thermomeca->Dn_mini, div_tnew_dt_solver, tnew_dt, compteur); + } + sptr_thermomeca->assess_inc(tnew_dt, tinc, Dtinc, rve ,Time, DTime, DR, corate_type); //start variables ready for the next increment @@ -1033,9 +1068,9 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat //Write the results if (((so.o_type(i) == 1)&&(o_ncount == so.o_nfreq(i)))||(((so.o_type(i) == 2)&&(fabs(o_tcount - so.o_tfreq(i)) < 1.E-12)))) { - - rve.output(so, i, n, j, inc, Time, "global"); - rve.output(so, i, n, j, inc, Time, "local"); + + sink.record(rve, so, i, n, j, inc, Time); + if (so.o_type(i) == 1) { o_ncount = 0; } @@ -1043,13 +1078,13 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat o_tcount = 0.; } } - + tinc = 0.; inc++; } - + } - + } break; } @@ -1060,7 +1095,59 @@ void solver(const string &umat_name, const vec &props, const unsigned int &nstat } //end of blocks loops } - + + return 0; +} + +void solver(const string &umat_name, const vec &props, const unsigned int &nstatev, const double &psi_rve, const double &theta_rve, const double &phi_rve, const int &solver_type, const int &corate_type, const double &div_tnew_dt_solver, const double &mul_tnew_dt_solver, const int &miniter_solver, const int &maxiter_solver, const int &inforce_solver, const double &precision_solver, const double &lambda_solver, const std::string &path_data, const std::string &path_results, const std::string &pathfile, const std::string &outputfile, const int &tangent_mode) { + if (tangent_mode < simcoon::tangent_none || tangent_mode > simcoon::tangent_algorithmic) { + throw std::invalid_argument("solver: tangent_mode must be 0 (none), 1 (continuum) or 2 (algorithmic); got " + + std::to_string(tangent_mode) + " (3 = closest-point is reserved)"); + } + + //Check if the required directories exist: + if(!filesystem::is_directory(path_data)) { + cout << "error: the folder for the data, " << path_data << ", is not present" << endl; + return; + } + if(!filesystem::is_directory(path_results)) { + cout << "The folder for the results, " << path_results << ", is not present and has been created" << endl; + filesystem::create_directory(path_results); + } + + std::string ext_filename = outputfile.substr(outputfile.length()-4,outputfile.length()); + std::string filename = outputfile.substr(0,outputfile.length()-4); //to remove the extension + + std::string outputfile_global = filename + "_global" + ext_filename; + std::string outputfile_local = filename + "_local" + ext_filename; + + std::string output_info_file = "output.dat"; + + std::vector blocks; //loading blocks + double T_init = 0.; + + //Read the loading path + read_path(blocks, T_init, path_data, pathfile); + + solver_output so(blocks.size()); + read_output(so, blocks.size(), nstatev, path_data, output_info_file); + + //Check output and step files + check_path_output(blocks, so); + + solver_params ctrl; + ctrl.div_tnew_dt = div_tnew_dt_solver; + ctrl.mul_tnew_dt = mul_tnew_dt_solver; + ctrl.miniter = miniter_solver; + ctrl.maxiter = maxiter_solver; + ctrl.inforce = inforce_solver; + ctrl.precision = precision_solver; + ctrl.lambda = lambda_solver; + ctrl.tangent_mode = tangent_mode; + + solver_file_sink sink(path_results, outputfile_global, outputfile_local); + //status intentionally ignored: the historical file-driven solver() returned void on early aborts + solver_run(blocks, T_init, so, umat_name, props, nstatev, psi_rve, theta_rve, phi_rve, solver_type, corate_type, ctrl, sink); } } //namespace simcoon diff --git a/src/Simulation/Solver/solver_sink.cpp b/src/Simulation/Solver/solver_sink.cpp new file mode 100644 index 000000000..ab92f0a45 --- /dev/null +++ b/src/Simulation/Solver/solver_sink.cpp @@ -0,0 +1,104 @@ +/* This file is part of simcoon. + + simcoon is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + simcoon is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with simcoon. If not, see . + + */ + +///@file solver_sink.cpp +///@brief Results sinks for solver_run (see solver_sink.hpp) + +#include +#include +#include +#include +#include +#include + +using namespace std; +using namespace arma; + +namespace simcoon{ + +solver_file_sink::solver_file_sink(const std::string &mpath_results, const std::string &moutputfile_global, const std::string &moutputfile_local) + : path_results(mpath_results), outputfile_global(moutputfile_global), outputfile_local(moutputfile_local) {} + +void solver_file_sink::init(phase_characteristics &rve) { + rve.define_output(path_results, outputfile_global, "global"); + rve.define_output(path_results, outputfile_local, "local"); +} + +void solver_file_sink::record(phase_characteristics &rve, const solver_output &so, const int &kblock, const int &kcycle, const int &kstep, const int &kinc, const double &Time) { + rve.output(so, kblock, kcycle, kstep, kinc, Time, "global"); + rve.output(so, kblock, kcycle, kstep, kinc, Time, "local"); +} + +void solver_memory_sink::init(phase_characteristics &rve) { + if (std::dynamic_pointer_cast(rve.sptr_sv_global) != nullptr) + sv_type = 2; + else if (std::dynamic_pointer_cast(rve.sptr_sv_global) != nullptr) + sv_type = 1; +} + +void solver_memory_sink::record(phase_characteristics &rve, const solver_output &so, const int &kblock, const int &kcycle, const int &kstep, const int &kinc, const double &Time) { + (void)so; + auto sv = rve.sptr_sv_global; + // defensive re-detection of the state-variable type (runs are single-type: + // the solver_run binding rejects mixed mechanical/thermomechanical blocks) + auto sv_T = std::dynamic_pointer_cast(sv); + std::shared_ptr sv_M; + if (sv_T == nullptr) { + sv_M = std::dynamic_pointer_cast(sv); + } + sv_type = (sv_T != nullptr) ? 2 : ((sv_M != nullptr) ? 1 : 0); + + blocks_i.push_back(kblock); + cycles_i.push_back(kcycle); + steps_i.push_back(kstep); + incs_i.push_back(kinc); + time.push_back(Time); + + Etot.push_back(sv->Etot); + etot.push_back(sv->etot); + PKII.push_back(sv->PKII); + tau.push_back(sv->tau); + // consistent with phase_characteristics::output (o_stress_type 4); the thermomechanical + // route sets tau = sigma (F = I) in select_umat_T, so this holds for both block types + sigma.push_back(sv->tau / det(sv->F1)); + F1.push_back(sv->F1); + R.push_back(sv->R); + DR.push_back(sv->DR); + T.push_back(sv->T); + statev.push_back(sv->statev); + + if (sv_T != nullptr) { + Wm.push_back(sv_T->Wm); + Wt.push_back(sv_T->Wt); + Q.push_back(sv_T->Q); + r.push_back(sv_T->r); + if (record_tangent) { + dSdE.push_back(sv_T->dSdE); + dSdT.push_back(sv_T->dSdT); + drdE.push_back(sv_T->drdE); + drdT.push_back(sv_T->drdT); + } + } + else if (sv_M != nullptr) { + Wm.push_back(sv_M->Wm); + if (record_tangent) { + Lt.push_back(sv_M->Lt); + } + } +} + +} //namespace simcoon diff --git a/src/Simulation/Solver/step.cpp b/src/Simulation/Solver/step.cpp index 1ca1ee182..593412dc2 100755 --- a/src/Simulation/Solver/step.cpp +++ b/src/Simulation/Solver/step.cpp @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include @@ -109,8 +110,9 @@ step::step(const step& st) times = st.times; BC_Time = st.BC_Time; - + file = st.file; + tab_data = st.tab_data; } /*! @@ -137,6 +139,52 @@ void step::generate() times = zeros(ninc); } +//------------------------------------------------------------- +int step::mode3_ninc() const +//------------------------------------------------------------- +{ + if (tab_data.n_rows > 0) { + return static_cast(tab_data.n_rows); + } + int n = 0; + string buffer; + ifstream pathinc(file, ios::in); + if(!pathinc) + { + cout << "Error: cannot open the file " << file << "\n Please check if the file is correct and if you have added the extension\n"; + } + while (!pathinc.eof()) + { + getline (pathinc,buffer); + if (buffer != "") { + n++; + } + } + return n; +} + +//------------------------------------------------------------- +mat step::mode3_rows(const unsigned int &size_BC) const +//------------------------------------------------------------- +{ + if (tab_data.n_rows > 0) { + if (tab_data.n_cols != size_BC) { + throw simcoon::exception_solver("step " + std::to_string(number) + " (mode 3): tab_data has " + std::to_string(tab_data.n_cols) + " columns but the control flags require " + std::to_string(size_BC)); + } + return tab_data; + } + mat rows = zeros(ninc, size_BC); + string buffer; + ifstream pathinc(file, ios::in); + for (int i = 0; i < ninc; i++) { + pathinc >> buffer; + for (unsigned int j = 0; j < size_BC; j++) { + pathinc >> rows(i,j); + } + } + return rows; +} + //---------------------------------------------------------------------- void step::compute_inc(double &tnew_dt, const int &inc, double &tinc, double &Dtinc, double &Dtinc_cur, const int &inforce_solver) { //---------------------------------------------------------------------- @@ -194,9 +242,10 @@ step& step::operator = (const step& st) times = st.times; BC_Time = st.BC_Time; - + file = st.file; - + tab_data = st.tab_data; + return *this; } diff --git a/src/Simulation/Solver/step_meca.cpp b/src/Simulation/Solver/step_meca.cpp index 2f0188834..36bc9f19f 100755 --- a/src/Simulation/Solver/step_meca.cpp +++ b/src/Simulation/Solver/step_meca.cpp @@ -1,579 +1,614 @@ -/* This file is part of simcoon. - - simcoon is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - simcoon is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with simcoon. If not, see . - - */ - -///@file step_meca.cpp -///@brief object that defines a mechanical step -///@version 1.0 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace std; -using namespace arma; - -namespace simcoon{ - -//=====Private methods for ellipsoid_characteristics=================================== - -//=====Public methods for ellipsoid_characteristics============================================ - -//@brief default constructor -//------------------------------------------------------------- -step_meca::step_meca() : step() -//------------------------------------------------------------- -{ - BC_T = 0.; - cBC_T = 0; -} - -step_meca::step_meca(const unsigned int &control_type) : step() -{ - if (control_type == 5 || control_type == 6) { //Control with F (4) or gradU (5) - cBC_meca = zeros >(9); - BC_meca = zeros(9); - } - else { - cBC_meca = zeros >(6); - BC_meca = zeros(6); - } - BC_T = 0.; - cBC_T = 0; - BC_w = zeros(3,3); - BC_R = eye(3,3); -} - - -/*! - \brief Constructor with parameters - cBC_meca = mcBC_meca; Type of boundary conditions - BC_meca = mBC_meca; Target values of the BC - BC_T = mBC_T; target temperature - Etot = mEtot; current strain - sigma = msigma; current stress - T = mT; current temperature - */ - -//------------------------------------------------------------- -step_meca::step_meca(const int &mnumber, const double &mDn_init, const double &mDn_mini, const double &mDn_inc, const int &mmode, const unsigned int &mcontrol_type, const Col &mcBC_meca, const vec &mBC_meca, const mat &mmecas, const mat &mBC_mecas, const double &mBC_T, const int &mcBC_T, const vec &mTs, const vec &mBC_Ts, const mat &mBC_w, const mat &mBC_R) : step(mnumber, mDn_init, mDn_mini, mDn_inc, mmode, mcontrol_type) -//------------------------------------------------------------- -{ - cBC_meca = mcBC_meca; - BC_meca = mBC_meca; - mecas = mmecas; - BC_mecas = mBC_mecas; - BC_T = mBC_T; - cBC_T = mcBC_T; - Ts = mTs; - BC_Ts = mBC_Ts; - BC_w = mBC_w; - BC_R = mBC_R; -} - -/*! - \brief Copy constructor - \param bl block object to duplicate - */ - -//------------------------------------------------------ -step_meca::step_meca(const step_meca& stm) : step(stm) -//------------------------------------------------------ -{ - cBC_meca = stm.cBC_meca; - BC_meca = stm.BC_meca; - mecas = stm.mecas; - BC_mecas = stm.mecas; - BC_T = stm.BC_T; - cBC_T = stm.cBC_T; - Ts = stm.Ts; - BC_Ts = stm.BC_Ts; - BC_w = stm.BC_w; - BC_R = stm.BC_R; -} - -/*! - \brief destructor - */ - -step_meca::~step_meca() {} - -//------------------------------------------------------------- -void step_meca::generate(const double &mTime, const vec &mEtot, const vec &msigma, const double &mT) -//------------------------------------------------------------- -{ - assert(control_type <= 4); - - //This in for the case of an incremental path file, to get the number of increments - string buffer; - ifstream pathinc; - if(mode == 3){ - ninc = 0; - pathinc.open(file, ios::in); - if(!pathinc) - { - cout << "Error: cannot open the file " << file << "\n Please check if the file is correct and is you have added the extension\n"; - } - //read the file to get the number of increments - while (!pathinc.eof()) - { - getline (pathinc,buffer); - if (buffer != "") { - ninc++; - } - } - pathinc.close(); - } - - step::generate(); - - Ts = zeros(ninc); - BC_Ts = zeros(ninc); - unsigned int size_meca = BC_meca.n_elem; - mecas = zeros(ninc, size_meca); - BC_mecas = zeros(ninc, size_meca); - - vec inc_coef = ones(ninc); //If the mode is equal to 2, this is a sinuasoidal load control mode - if (mode == 2) { - double sum_ = 0.; - for(int k = 0 ; k < ninc ; k++){ - inc_coef(k) = cos(simcoon::pi+ (k+1)*2.*simcoon::pi/(ninc+1))+1.; - sum_ += inc_coef(k); - } - inc_coef = inc_coef*ninc/sum_; - } - - if (mode < 3) { - for (int i=0; i> buffer; - for (unsigned int j=0; j> BC_file(j); - } - - times(i) = (BC_file(0) - BC_file_n(0)); - kT = 0; - if (cBC_T == 0) { - Ts(i) = BC_file(kT+1) - BC_file_n(kT+1); - BC_Ts(i) = BC_file(kT+1); - kT++; - } - else if(cBC_T == 2) { - Ts(i) = 0.; - BC_Ts(i) = 0.; - } - - for(unsigned int k = 0 ; k < size_meca ; k++) { - if (cBC_meca(k) < 2){ - mecas(i,k) = BC_file(kT+1) - BC_file_n(kT+1); - BC_mecas(i,k) = BC_file(kT+1); - kT++; - } - else if (cBC_meca(k) == 2){ - mecas(i,k) = 0.; - BC_mecas(i,k) = 0.; - } - } - BC_file_n = BC_file; - - } - //At the end, everything static becomes a stress-controlled with zeros - for(unsigned int k = 0 ; k < size_meca ; k++) { - if (cBC_meca(k) == 2) - cBC_meca(k) = 1; - } - - } - else{ - cout << "\nError: The mode of the step number " << number << " does not correspond to an existing loading mode.\n"; - } - -} - -//------------------------------------------------------------- -void step_meca::generate_kin(const double &mTime, const mat &mF, const double &mT) -//------------------------------------------------------------- -{ - unsigned int size_meca = 9; - assert(control_type > 4); - for (unsigned int k=0; k> buffer; - for (unsigned int j=0; j> BC_file(j); - } - - times(i) = (BC_file(0) - BC_file_n(0)); - kT = 0; - if (cBC_T == 0) { - Ts(i) = BC_file(kT+1) - BC_file_n(kT+1); - BC_Ts(i) = BC_file(kT+1); - kT++; - } - else if(cBC_T == 2) { - Ts(i) = 0.; - BC_Ts(i) = 0.; - } - - for(unsigned int k = 0 ; k < size_meca ; k++) { - if (cBC_meca(k) < 2){ - mecas(i,k) = BC_file(kT+1) - BC_file_n(kT+1); - BC_mecas(i,k) = BC_file(kT+1); - kT++; - } - else if (cBC_meca(k) == 2){ - mecas(i,k) = 0.; - BC_mecas(i,k) = 0.; - } - } - BC_file_n = BC_file; - } - //At the end, everything static becomes a deformation-controlled with zeros - for(unsigned int k = 0 ; k < size_meca ; k++) { - if (cBC_meca(k) == 2) - cBC_meca(k) = 0; - } - - } - else{ - cout << "\nError: The mode of the step number " << number << " does not correspond to an existing loading mode.\n"; - } - -} - - /*! - \brief Standard operator = for block - */ - - //---------------------------------------------------------------------- -void step_meca::assess_inc(const double &tnew_dt, double &tinc, const double &Dtinc, phase_characteristics &rve, double &Time, const double &DTime, const mat &DR, const int &corate_type) { - - if(tnew_dt < 1.){ - rve.to_start(); - } - else { - tinc += Dtinc; - Time += DTime; - BC_R = BC_R*DR; - rve.set_start(corate_type); - } -} - -//---------------------------------------------------------------------- -step_meca& step_meca::operator = (const step_meca& stm) -//---------------------------------------------------------------------- -{ -// assert(stm.ninc>0); -// assert(stm.mode>0); - - number = stm.number; - Dn_init = stm.Dn_init; - Dn_mini = stm.Dn_mini; - Dn_inc = stm.Dn_inc; - ninc = stm.ninc; - mode = stm.mode; - - BC_Time = stm.BC_Time; - times = stm.times; - file = stm.file; - - cBC_meca = stm.cBC_meca; - BC_meca = stm.BC_meca; - mecas = stm.mecas; - BC_T = stm.BC_T; - cBC_T = stm.cBC_T; - Ts = stm.Ts; - BC_w = stm.BC_w; - BC_R = stm.BC_R; - - return *this; -} - -//-------------------------------------------------------------------------- -ostream& operator << (ostream& s, const step_meca& stm) -//-------------------------------------------------------------------------- -{ - - s << "\tDisplay info on the step " << stm.number << "\n"; - s << "\tLoading mode: " << stm.mode << "\n"; - s << "\tMechanical step \n\t"; - - Col temp; - temp = zeros >(6); - temp(0) = 0; - temp(1) = 3; - temp(2) = 1; - temp(3) = 4; - temp(4) = 5; - temp(5) = 2; - - unsigned int size_meca = stm.BC_meca.n_elem; - if (stm.mode == 3) { - - if(stm.control_type == 5) { - s << "Control: " << stm.control_type << " : Transformation gradient F\n"; - } - else if (stm.control_type == 6) { - s << "Control: " << stm.control_type << " : gradient of displacement gradU\n"; - } - else { - if(stm.control_type == 1) { s << "Control: " << stm.control_type << " : small strain hyp.\n";} - if(stm.control_type == 2) { s << "Control: " << stm.control_type << " : Green-Lag / PKII\n";} - if(stm.control_type == 3) { s << "Control: " << stm.control_type << " : True strain / stress\n";} - for(unsigned int k = 0 ; k < size_meca ; k++) { - if(stm.cBC_meca(temp(k)) == 0) - s << "E " << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); - else if(stm.cBC_meca(temp(k)) == 1) - s << "S " << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); - else if(stm.cBC_meca(temp(k)) == 2) - s << 0 << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); - } - } - cout << "Temperature: "; - if(stm.cBC_T == 0) - s << "T\n"; - else if(stm.cBC_T == 2) - s << 0 << "\n"; - } - else { - - s << "\tTime of the step " << stm.BC_Time << " s\n\t"; - s << "\tInitial fraction: " << stm.Dn_init << "\tMinimal fraction: " << stm.Dn_mini << "\tIncrement fraction: " << stm.Dn_inc << "\n\t"; - - if(stm.control_type == 5) { - s << "Control: " << stm.control_type << " : Eulerian velocity L\n"; - for(unsigned int k = 0 ; k . + + */ + +///@file step_meca.cpp +///@brief object that defines a mechanical step +///@version 1.0 + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; +using namespace arma; + +namespace simcoon{ + +//=====Private methods for ellipsoid_characteristics=================================== + +//=====Public methods for ellipsoid_characteristics============================================ + +//@brief default constructor +//------------------------------------------------------------- +step_meca::step_meca() : step() +//------------------------------------------------------------- +{ + BC_T = 0.; + cBC_T = 0; +} + +step_meca::step_meca(const unsigned int &control_type) : step() +{ + if (control_type == 5 || control_type == 6) { //Control with F (4) or gradU (5) + cBC_meca = zeros >(9); + BC_meca = zeros(9); + } + else { + cBC_meca = zeros >(6); + BC_meca = zeros(6); + } + BC_T = 0.; + cBC_T = 0; + BC_w = zeros(3,3); + BC_R = eye(3,3); +} + + +/*! + \brief Constructor with parameters + cBC_meca = mcBC_meca; Type of boundary conditions + BC_meca = mBC_meca; Target values of the BC + BC_T = mBC_T; target temperature + Etot = mEtot; current strain + sigma = msigma; current stress + T = mT; current temperature + */ + +//------------------------------------------------------------- +step_meca::step_meca(const int &mnumber, const double &mDn_init, const double &mDn_mini, const double &mDn_inc, const int &mmode, const unsigned int &mcontrol_type, const Col &mcBC_meca, const vec &mBC_meca, const mat &mmecas, const mat &mBC_mecas, const double &mBC_T, const int &mcBC_T, const vec &mTs, const vec &mBC_Ts, const mat &mBC_w, const mat &mBC_R) : step(mnumber, mDn_init, mDn_mini, mDn_inc, mmode, mcontrol_type) +//------------------------------------------------------------- +{ + cBC_meca = mcBC_meca; + BC_meca = mBC_meca; + mecas = mmecas; + BC_mecas = mBC_mecas; + BC_T = mBC_T; + cBC_T = mcBC_T; + Ts = mTs; + BC_Ts = mBC_Ts; + BC_w = mBC_w; + BC_R = mBC_R; +} + +/*! + \brief Copy constructor + \param bl block object to duplicate + */ + +//------------------------------------------------------ +step_meca::step_meca(const step_meca& stm) : step(stm) +//------------------------------------------------------ +{ + cBC_meca = stm.cBC_meca; + BC_meca = stm.BC_meca; + mecas = stm.mecas; + BC_mecas = stm.mecas; + BC_T = stm.BC_T; + cBC_T = stm.cBC_T; + Ts = stm.Ts; + BC_Ts = stm.BC_Ts; + BC_w = stm.BC_w; + BC_R = stm.BC_R; +} + +/*! + \brief destructor + */ + +step_meca::~step_meca() {} + +//------------------------------------------------------------- +void step_meca::generate(const double &mTime, const vec &mEtot, const vec &msigma, const double &mT) +//------------------------------------------------------------- +{ + assert(control_type <= 4); + + //For an incremental (mode 3) step, the number of increments comes from the table + if(mode == 3){ + ninc = mode3_ninc(); + } + + step::generate(); + + Ts = zeros(ninc); + BC_Ts = zeros(ninc); + unsigned int size_meca = BC_meca.n_elem; + mecas = zeros(ninc, size_meca); + BC_mecas = zeros(ninc, size_meca); + + vec inc_coef = ones(ninc); //If the mode is equal to 2, this is a sinuasoidal load control mode + if (mode == 2) { + double sum_ = 0.; + for(int k = 0 ; k < ninc ; k++){ + inc_coef(k) = cos(simcoon::pi+ (k+1)*2.*simcoon::pi/(ninc+1))+1.; + sum_ += inc_coef(k); + } + inc_coef = inc_coef*ninc/sum_; + } + + if (mode < 3) { + for (int i=0; i 0 && tab_rows(0,0) < BC_file_n(0)) { + // Legacy mode-3 FILE convention: the time axis restarts at each step + // (first row = anchor at the current state). Shift the axis so it + // continues from the current time. In-memory tab_data keeps the strict + // absolute-time contract (see solver/blocks.py). + BC_file_n(0) = tab_rows(0,0); + } + + //For mode 3, no rotation is considered yet + for (int i=0; i 0, rotation +// per step < 180 deg). Returns false when the iteration does not converge; +// the caller falls back to arma::logmat. +bool real_logmat_3x3(const arma::mat &A_in, arma::mat &logA) { + const arma::mat I = arma::eye(3, 3); + arma::mat A = A_in; + int k = 0; + // Square-root until A is close to I (log converges fast there). + while (arma::norm(A - I, 2) > 0.25) { + if (++k > 40) return false; + arma::mat Y = A, Z = I; // Denman-Beavers: Y -> sqrt(A) + bool converged = false; + for (int it = 0; it < 60; ++it) { + arma::mat Zi, Yi; + if (!arma::inv(Zi, Z) || !arma::inv(Yi, Y)) return false; + const arma::mat Yn = 0.5 * (Y + Zi); + const arma::mat Zn = 0.5 * (Z + Yi); + converged = arma::norm(Yn - Y, 2) <= 1e-14 * arma::norm(Yn, 2); + Y = Yn; Z = Zn; + if (converged) break; + } + if (!converged || !Y.is_finite()) return false; + A = Y; + } + // Gregory (atanh) series: log A = 2 * sum z^(2m+1)/(2m+1), z = (A-I)(A+I)^-1. + arma::mat ApIi; + if (!arma::inv(ApIi, A + I)) return false; + const arma::mat z = (A - I) * ApIi; + const arma::mat z2 = z * z; + arma::mat S = arma::zeros(3, 3); + arma::mat P = z; + for (int m = 0; m < 12; ++m) { + S += P / static_cast(2 * m + 1); + P = P * z2; + } + logA = std::ldexp(2.0, k) * S; // 2 * 2^k * S + return logA.is_finite(); +} + +} // namespace + +//------------------------------------------------------------- +void step_meca::generate_kin(const double &mTime, const mat &mF, const double &mT) +//------------------------------------------------------------- +{ + unsigned int size_meca = 9; + assert(control_type > 4); + for (unsigned int k=0; k 0 && tab_rows(0,0) < BC_file_n(0)) { + // Legacy mode-3 FILE convention: the time axis restarts at each step + // (first row = anchor at the current state). Shift the axis so it + // continues from the current time. In-memory tab_data keeps the strict + // absolute-time contract (see solver/blocks.py). + BC_file_n(0) = tab_rows(0,0); + } + + for (int i=0; i0); +// assert(stm.mode>0); + + number = stm.number; + Dn_init = stm.Dn_init; + Dn_mini = stm.Dn_mini; + Dn_inc = stm.Dn_inc; + ninc = stm.ninc; + mode = stm.mode; + + BC_Time = stm.BC_Time; + times = stm.times; + file = stm.file; + + cBC_meca = stm.cBC_meca; + BC_meca = stm.BC_meca; + mecas = stm.mecas; + BC_T = stm.BC_T; + cBC_T = stm.cBC_T; + Ts = stm.Ts; + BC_w = stm.BC_w; + BC_R = stm.BC_R; + + return *this; +} + +//-------------------------------------------------------------------------- +ostream& operator << (ostream& s, const step_meca& stm) +//-------------------------------------------------------------------------- +{ + + s << "\tDisplay info on the step " << stm.number << "\n"; + s << "\tLoading mode: " << stm.mode << "\n"; + s << "\tMechanical step \n\t"; + + Col temp; + temp = zeros >(6); + temp(0) = 0; + temp(1) = 3; + temp(2) = 1; + temp(3) = 4; + temp(4) = 5; + temp(5) = 2; + + unsigned int size_meca = stm.BC_meca.n_elem; + if (stm.mode == 3) { + + if(stm.control_type == 5) { + s << "Control: " << stm.control_type << " : Transformation gradient F\n"; + } + else if (stm.control_type == 6) { + s << "Control: " << stm.control_type << " : gradient of displacement gradU\n"; + } + else { + if(stm.control_type == 1) { s << "Control: " << stm.control_type << " : small strain hyp.\n";} + if(stm.control_type == 2) { s << "Control: " << stm.control_type << " : Green-Lag / PKII\n";} + if(stm.control_type == 3) { s << "Control: " << stm.control_type << " : True strain / stress\n";} + for(unsigned int k = 0 ; k < size_meca ; k++) { + if(stm.cBC_meca(temp(k)) == 0) + s << "E " << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); + else if(stm.cBC_meca(temp(k)) == 1) + s << "S " << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); + else if(stm.cBC_meca(temp(k)) == 2) + s << 0 << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); + } + } + cout << "Temperature: "; + if(stm.cBC_T == 0) + s << "T\n"; + else if(stm.cBC_T == 2) + s << 0 << "\n"; + } + else { + + s << "\tTime of the step " << stm.BC_Time << " s\n\t"; + s << "\tInitial fraction: " << stm.Dn_init << "\tMinimal fraction: " << stm.Dn_mini << "\tIncrement fraction: " << stm.Dn_inc << "\n\t"; + + if(stm.control_type == 5) { + s << "Control: " << stm.control_type << " : Eulerian velocity L\n"; + for(unsigned int k = 0 ; k . - - */ - -///@file step_thermomeca.hpp -///@brief object that defines a thermomechanical step -///@version 1.0 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace std; -using namespace arma; - -namespace simcoon{ - -//=====Private methods for ellipsoid_characteristics=================================== - -//=====Public methods for ellipsoid_characteristics============================================ - -//@brief default constructor -//------------------------------------------------------------- -step_thermomeca::step_thermomeca() : step() -//------------------------------------------------------------- -{ - BC_T = 0.; - cBC_T = 0; -} - -step_thermomeca::step_thermomeca(const unsigned int &control_type) : step() -{ - if (control_type == 4 || control_type == 5) { //Control with F (4) or gradU (5) - cBC_meca = zeros >(9); - BC_meca = zeros(9); - } - else { - cBC_meca = zeros >(6); - BC_meca = zeros(6); - } - BC_T = 0.; - cBC_T = 0; - BC_w = zeros(3,3); - BC_R = eye(3,3); -} - -/*! - \brief Constructor with parameters - cBC_meca = mcBC_meca; Type of mechanical boundary conditions - BC_meca = mBC_meca; Target values of the mechanical BC - cBC_meca = mcBC_meca; Type of thermal boundary conditions - BC_T = mBC_T; target values of the thermal BC - */ - -//------------------------------------------------------------- -step_thermomeca::step_thermomeca(const int &mnumber, const double &mDn_init, const double &mDn_mini, const double &mDn_inc, const int &mmode, const unsigned int &mcontrol_type, const Col &mcBC_meca, const vec &mBC_meca, const mat &mmecas, const mat &mBC_mecas, const double &mBC_T, const int &mcBC_T, const vec &mTs, const vec &mBC_Ts, const mat &mBC_w, const mat &mBC_R) : step(mnumber, mDn_init, mDn_mini, mDn_inc, mmode, mcontrol_type) -//------------------------------------------------------------- -{ - cBC_meca = mcBC_meca; - BC_meca = mBC_meca; - mecas = mmecas; - BC_mecas = mBC_mecas; - BC_T = mBC_T; - cBC_T = mcBC_T; - Ts = mTs; - BC_Ts = mBC_Ts; - BC_w = mBC_w; - BC_R = mBC_R; -} - -/*! - \brief Copy constructor - \param bl block object to duplicate - */ - -//------------------------------------------------------ -step_thermomeca::step_thermomeca(const step_thermomeca& stm) : step(stm) -//------------------------------------------------------ -{ - cBC_meca = stm.cBC_meca; - BC_meca = stm.BC_meca; - mecas = stm.mecas; - BC_mecas = stm.mecas; - BC_T = stm.BC_T; - cBC_T = stm.cBC_T; - Ts = stm.Ts; - BC_Ts = stm.BC_Ts; - BC_w = stm.BC_w; - BC_R = stm.BC_R; -} - -/*! - \brief destructor - */ - -step_thermomeca::~step_thermomeca() {} - -//------------------------------------------------------------- -void step_thermomeca::generate(const double &mTime, const vec &mEtot, const vec &msigma, const double &mT) -//------------------------------------------------------------- -{ - - assert(control_type <= 3); - - //This in for the case of an incremental path file, to get the number of increments - string buffer; - ifstream pathinc; - if(mode == 3){ - ninc = 0; - pathinc.open(file, ios::in); - if(!pathinc) - { - cout << "Error: cannot open the file << " << file << "\n Please check if the file is correct and is you have added the extension\n"; - } - //read the file to get the number of increments - while (!pathinc.eof()) - { - getline (pathinc,buffer); - if (buffer != "") { - ninc++; - } - } - pathinc.close(); - } - - step::generate(); - - Ts = zeros(ninc); - BC_Ts = zeros(ninc); - unsigned int size_meca = BC_meca.n_elem; - mecas = zeros(ninc, size_meca); - BC_mecas = zeros(ninc, size_meca); - - vec inc_coef = ones(ninc); - if (mode == 2) { - double sum_ = 0.; - for(int k = 0 ; k < ninc ; k++){ - inc_coef(k) = cos(simcoon::pi+ (k+1)*2.*simcoon::pi/(ninc+1))+1.; - sum_ += inc_coef(k); - } - inc_coef = inc_coef*ninc/sum_; - } - - if (mode < 3) { - for (int i=0; i 2 ) { - size_BC--; - } - - vec BC_file_n = zeros(size_BC); //vector that temporarly stores the previous values - vec BC_file = zeros(size_BC); //vector that temporarly stores the values - - BC_file_n(0) = mTime; - int kT = 0; - if (cBC_T == 0) { - BC_file_n(kT+1) = mT; - kT++; - } - else if (cBC_T == 1) { - BC_file_n(kT+1) = 0.; //Heat flux does not depend on any previous condition - kT++; - } - - for (unsigned int k=0; k> buffer; - for (unsigned int j=0; j> BC_file(j); - } - - times(i) = (BC_file(0) - BC_file_n(0)); - kT = 0; - if (cBC_T == 0) { - Ts(i) = BC_file(kT+1) - BC_file_n(kT+1); - BC_Ts(i) = BC_file(kT+1); - kT++; - } - else if (cBC_T == 1) { - Ts(i) = BC_file(kT+1); //Case of Heat, direct quantity - BC_Ts(i) = BC_file(kT+1); - kT++; - } - else if(cBC_T == 2) { - Ts(i) = 0.; - BC_Ts(i) = 0.; - } - - for(unsigned int k = 0 ; k < size_meca ; k++) { - if (cBC_meca(k) < 2){ - mecas(i,k) = BC_file(kT+1) - BC_file_n(kT+1); - BC_mecas(i,k) = BC_file(kT+1); - kT++; - } - else if (cBC_meca(k) == 2){ - mecas(i,k) = 0.; - BC_mecas(i,k) = 0.; - } - } - BC_file_n = BC_file; - } - //At the end, everything static becomes a stress-controlled with zeros - for(unsigned int k = 0 ; k < size_meca ; k++) { - if (cBC_meca(k) == 2) - cBC_meca(k) = 1; - } - //And everything thermally static is an isothermal path - if (cBC_T == 2) { - cBC_T = 0; - } - - } - else { - cout << "\nError: The mode of the step number " << number << " does not correspond to an existing loading mode.\n"; - } - -} - -/*! - \brief Standard operator = for block - */ - -//------------------------------------------------------------- -void step_thermomeca::generate_kin(const double &mTime, const mat &mF, const double &mT) -//------------------------------------------------------------- -{ - - unsigned int size_meca = 9; - assert(control_type > 3); - for (unsigned int k=0; k> buffer; - for (unsigned int j=0; j> BC_file(j); - } - - times(i) = (BC_file(0) - BC_file_n(0)); - kT = 0; - if (cBC_T == 0) { - Ts(i) = BC_file(kT+1) - BC_file_n(kT+1); - BC_Ts(i) = BC_file(kT+1); - kT++; - } - else if(cBC_T == 2) { - Ts(i) = 0.; - BC_Ts(i) = 0.; - } - - for(unsigned int k = 0 ; k < size_meca ; k++) { - if (cBC_meca(k) < 2){ - mecas(i,k) = BC_file(kT+1) - BC_file_n(kT+1); - BC_mecas(i,k) = BC_file(kT+1); - kT++; - } - else if (cBC_meca(k) == 2){ - mecas(i,k) = 0.; - BC_mecas(i,k) = 0.; - } - } - BC_file_n = BC_file; - } - //At the end, everything static becomes a deformation-controlled with zeros - for(unsigned int k = 0 ; k < size_meca ; k++) { - if (cBC_meca(k) == 2) - cBC_meca(k) = 0; - } - //And everything thermally static is an isothermal path - if (cBC_T == 2) { - cBC_T = 0; - } - - } - else{ - cout << "\nError: The mode of the step number " << number << " does not correspond to an existing loading mode.\n"; - } - -} - -//---------------------------------------------------------------------- -void step_thermomeca::assess_inc(const double &tnew_dt, double &tinc, const double &Dtinc, phase_characteristics &rve, double &Time, const double &DTime, const mat &DR, const int &corate_type) { - - if(tnew_dt < 1.){ - rve.to_start(); - } - else { - tinc += Dtinc; - Time += DTime; - BC_R = BC_R*DR; - rve.set_start(corate_type); - } -} - -//---------------------------------------------------------------------- -step_thermomeca& step_thermomeca::operator = (const step_thermomeca& stm) -//---------------------------------------------------------------------- -{ -// assert(stm.ninc>0); -// assert(stm.mode>0); - - number = stm.number; - Dn_init = stm.Dn_init; - Dn_mini = stm.Dn_mini; - Dn_inc = stm.Dn_inc; - ninc = stm.ninc; - mode = stm.mode; - - BC_Time = stm.BC_Time; - times = stm.times; - file = stm.file; - - cBC_meca = stm.cBC_meca; - BC_meca = stm.BC_meca; - mecas = stm.mecas; - BC_T = stm.BC_T; - cBC_T = stm.cBC_T; - Ts = stm.Ts; - BC_w = stm.BC_w; - BC_R = stm.BC_R; - - return *this; -} - -//-------------------------------------------------------------------------- -ostream& operator << (ostream& s, const step_thermomeca& stm) -//-------------------------------------------------------------------------- -{ - s << "\tDisplay info on the step " << stm.number << "\n"; - s << "\tLoading mode: " << stm.mode << "\n"; - s << "\tThermomechanical step \n\t"; - - Col temp; - temp = zeros >(6); - temp(0) = 0; - temp(1) = 3; - temp(2) = 1; - temp(3) = 4; - temp(4) = 5; - temp(5) = 2; - - unsigned int size_meca = stm.BC_meca.n_elem; - if (stm.mode == 3) { - - if(stm.control_type == 4) { - s << "Control: " << stm.control_type << " : Transformation gradient F\n"; - } - else if (stm.control_type == 5) { - s << "Control: " << stm.control_type << " : gradient of displacement gradU\n"; - } - else { - if(stm.control_type == 1) { s << "Control: " << stm.control_type << " : small strain hyp.\n";} - if(stm.control_type == 2) { s << "Control: " << stm.control_type << " : Green-Lag / PKII\n";} - if(stm.control_type == 3) { s << "Control: " << stm.control_type << " : True strain / stress\n";} - for(unsigned int k = 0 ; k < size_meca ; k++) { - if(stm.cBC_meca(temp(k)) == 0) - s << "E " << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); - else if(stm.cBC_meca(temp(k)) == 1) - s << "S " << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); - else if(stm.cBC_meca(temp(k)) == 2) - s << 0 << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); - } - } - cout << "Temperature: "; - if(stm.cBC_T == 0) - s << "T\n"; - else if(stm.cBC_T == 1) - s << "Q\n"; - else if(stm.cBC_T == 2) - s << 0 << "\n"; - else if(stm.cBC_T == 3) - s << "convexion with Tau = " << stm.BC_T << "\n"; - } - else { - - s << "\tTime of the step " << stm.BC_Time << " s\n\t"; - s << "\tInitial fraction: " << stm.Dn_init << "\tMinimal fraction: " << stm.Dn_mini << "\tIncrement fraction: " << stm.Dn_inc << "\n\t"; - if(stm.control_type == 4) { - s << "Control: " << stm.control_type << " : Transformation gradient F\n"; - for(unsigned int k = 0 ; k . + + */ + +///@file step_thermomeca.hpp +///@brief object that defines a thermomechanical step +///@version 1.0 + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; +using namespace arma; + +namespace simcoon{ + +//=====Private methods for ellipsoid_characteristics=================================== + +//=====Public methods for ellipsoid_characteristics============================================ + +//@brief default constructor +//------------------------------------------------------------- +step_thermomeca::step_thermomeca() : step() +//------------------------------------------------------------- +{ + BC_T = 0.; + cBC_T = 0; +} + +step_thermomeca::step_thermomeca(const unsigned int &control_type) : step() +{ + if (control_type == 4 || control_type == 5) { //Control with F (4) or gradU (5) + cBC_meca = zeros >(9); + BC_meca = zeros(9); + } + else { + cBC_meca = zeros >(6); + BC_meca = zeros(6); + } + BC_T = 0.; + cBC_T = 0; + BC_w = zeros(3,3); + BC_R = eye(3,3); +} + +/*! + \brief Constructor with parameters + cBC_meca = mcBC_meca; Type of mechanical boundary conditions + BC_meca = mBC_meca; Target values of the mechanical BC + cBC_meca = mcBC_meca; Type of thermal boundary conditions + BC_T = mBC_T; target values of the thermal BC + */ + +//------------------------------------------------------------- +step_thermomeca::step_thermomeca(const int &mnumber, const double &mDn_init, const double &mDn_mini, const double &mDn_inc, const int &mmode, const unsigned int &mcontrol_type, const Col &mcBC_meca, const vec &mBC_meca, const mat &mmecas, const mat &mBC_mecas, const double &mBC_T, const int &mcBC_T, const vec &mTs, const vec &mBC_Ts, const mat &mBC_w, const mat &mBC_R) : step(mnumber, mDn_init, mDn_mini, mDn_inc, mmode, mcontrol_type) +//------------------------------------------------------------- +{ + cBC_meca = mcBC_meca; + BC_meca = mBC_meca; + mecas = mmecas; + BC_mecas = mBC_mecas; + BC_T = mBC_T; + cBC_T = mcBC_T; + Ts = mTs; + BC_Ts = mBC_Ts; + BC_w = mBC_w; + BC_R = mBC_R; +} + +/*! + \brief Copy constructor + \param bl block object to duplicate + */ + +//------------------------------------------------------ +step_thermomeca::step_thermomeca(const step_thermomeca& stm) : step(stm) +//------------------------------------------------------ +{ + cBC_meca = stm.cBC_meca; + BC_meca = stm.BC_meca; + mecas = stm.mecas; + BC_mecas = stm.mecas; + BC_T = stm.BC_T; + cBC_T = stm.cBC_T; + Ts = stm.Ts; + BC_Ts = stm.BC_Ts; + BC_w = stm.BC_w; + BC_R = stm.BC_R; +} + +/*! + \brief destructor + */ + +step_thermomeca::~step_thermomeca() {} + +//------------------------------------------------------------- +void step_thermomeca::generate(const double &mTime, const vec &mEtot, const vec &msigma, const double &mT) +//------------------------------------------------------------- +{ + + assert(control_type <= 3); + + //For an incremental (mode 3) step, the number of increments comes from the table + if(mode == 3){ + ninc = mode3_ninc(); + } + + step::generate(); + + Ts = zeros(ninc); + BC_Ts = zeros(ninc); + unsigned int size_meca = BC_meca.n_elem; + mecas = zeros(ninc, size_meca); + BC_mecas = zeros(ninc, size_meca); + + vec inc_coef = ones(ninc); + if (mode == 2) { + double sum_ = 0.; + for(int k = 0 ; k < ninc ; k++){ + inc_coef(k) = cos(simcoon::pi+ (k+1)*2.*simcoon::pi/(ninc+1))+1.; + sum_ += inc_coef(k); + } + inc_coef = inc_coef*ninc/sum_; + } + + if (mode < 3) { + for (int i=0; i= 2 ) { //no thermal column for a constant-temperature (2) or convection (3) step + size_BC--; + } + + vec BC_file_n = zeros(size_BC); //vector that temporarly stores the previous values + vec BC_file = zeros(size_BC); //vector that temporarly stores the values + + BC_file_n(0) = mTime; + int kT = 0; + if (cBC_T == 0) { + BC_file_n(kT+1) = mT; + kT++; + } + else if (cBC_T == 1) { + BC_file_n(kT+1) = 0.; //Heat flux does not depend on any previous condition + kT++; + } + + for (unsigned int k=0; k 0 && tab_rows(0,0) < BC_file_n(0)) { + // Legacy mode-3 FILE convention: the time axis restarts at each step + // (first row = anchor at the current state). Shift the axis so it + // continues from the current time. In-memory tab_data keeps the strict + // absolute-time contract (see solver/blocks.py). + BC_file_n(0) = tab_rows(0,0); + } + + //For mode 3, no rotation is considered yet + for (int i=0; i 3); + for (unsigned int k=0; k 0 && tab_rows(0,0) < BC_file_n(0)) { + // Legacy mode-3 FILE convention: the time axis restarts at each step + // (first row = anchor at the current state). Shift the axis so it + // continues from the current time. In-memory tab_data keeps the strict + // absolute-time contract (see solver/blocks.py). + BC_file_n(0) = tab_rows(0,0); + } + + for (int i=0; i0); +// assert(stm.mode>0); + + number = stm.number; + Dn_init = stm.Dn_init; + Dn_mini = stm.Dn_mini; + Dn_inc = stm.Dn_inc; + ninc = stm.ninc; + mode = stm.mode; + + BC_Time = stm.BC_Time; + times = stm.times; + file = stm.file; + + cBC_meca = stm.cBC_meca; + BC_meca = stm.BC_meca; + mecas = stm.mecas; + BC_T = stm.BC_T; + cBC_T = stm.cBC_T; + Ts = stm.Ts; + BC_w = stm.BC_w; + BC_R = stm.BC_R; + + return *this; +} + +//-------------------------------------------------------------------------- +ostream& operator << (ostream& s, const step_thermomeca& stm) +//-------------------------------------------------------------------------- +{ + s << "\tDisplay info on the step " << stm.number << "\n"; + s << "\tLoading mode: " << stm.mode << "\n"; + s << "\tThermomechanical step \n\t"; + + Col temp; + temp = zeros >(6); + temp(0) = 0; + temp(1) = 3; + temp(2) = 1; + temp(3) = 4; + temp(4) = 5; + temp(5) = 2; + + unsigned int size_meca = stm.BC_meca.n_elem; + if (stm.mode == 3) { + + if(stm.control_type == 4) { + s << "Control: " << stm.control_type << " : Transformation gradient F\n"; + } + else if (stm.control_type == 5) { + s << "Control: " << stm.control_type << " : gradient of displacement gradU\n"; + } + else { + if(stm.control_type == 1) { s << "Control: " << stm.control_type << " : small strain hyp.\n";} + if(stm.control_type == 2) { s << "Control: " << stm.control_type << " : Green-Lag / PKII\n";} + if(stm.control_type == 3) { s << "Control: " << stm.control_type << " : True strain / stress\n";} + for(unsigned int k = 0 ; k < size_meca ; k++) { + if(stm.cBC_meca(temp(k)) == 0) + s << "E " << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); + else if(stm.cBC_meca(temp(k)) == 1) + s << "S " << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); + else if(stm.cBC_meca(temp(k)) == 2) + s << 0 << (((k==0)||(k==2)||(k==5)) ? "\n\t" : "\t"); + } + } + cout << "Temperature: "; + if(stm.cBC_T == 0) + s << "T\n"; + else if(stm.cBC_T == 1) + s << "Q\n"; + else if(stm.cBC_T == 2) + s << 0 << "\n"; + else if(stm.cBC_T == 3) + s << "convexion with Tau = " << stm.BC_T << "\n"; + } + else { + + s << "\tTime of the step " << stm.BC_Time << " s\n\t"; + s << "\tInitial fraction: " << stm.Dn_init << "\tMinimal fraction: " << stm.Dn_mini << "\tIncrement fraction: " << stm.Dn_inc << "\n\t"; + if(stm.control_type == 4) { + s << "Control: " << stm.control_type << " : Transformation gradient F\n"; + for(unsigned int k = 0 ; k sigma. const double h = 1.0e-8; @@ -1479,7 +1480,7 @@ TEST(ModularUMATTangent, AlgorithmicMatchesFiniteDifference) { for (int i = 0; i < 6; ++i) { vec DEp = DEtot2; DEp(i) += h; - const vec sig_p = run_one_increment_epvoce(statev1, Etot, DEp, 0, Lt_dummy); + const vec sig_p = run_one_increment_epvoce(statev1, Etot, DEp, tangent_continuum, Lt_dummy); FD.col(i) = (sig_p - sigma_base) / h; } @@ -1493,6 +1494,20 @@ TEST(ModularUMATTangent, AlgorithmicMatchesFiniteDifference) { // refresh_state (CPP contract): rebuilds p, EP and the AF back-strain from // the START values under a total Dp — the backward-Euler closed form, not an // incremental update. Verified against the implicit relation. + +// tangent_none: no assembly — Lt must remain the ELASTIC operator after a +// plastic increment (explicit-integration contract of the 2.0 mode 0). +TEST(ModularUMATTangent, NoneModeReturnsElasticOperator) { + vec Etot = zeros(6); + vec DEtot = {0.003, -0.0009, -0.0009, 0.0005, 0.0, 0.0}; // plastic step + mat Lt(6, 6); + vec statev0 = zeros(20); + run_one_increment_epvoce(statev0, Etot, DEtot, tangent_none, Lt); + const mat L_el = L_iso(210000.0, 0.3, "Enu"); + EXPECT_LT(norm(Lt - L_el, "fro") / norm(L_el, "fro"), 1e-12) + << "tangent_none must leave Lt = elastic L"; +} + TEST(ModularUMATTangent, RefreshStateBackwardEulerAF) { PlasticityMechanism pm(YieldType::VON_MISES, IsoHardType::LINEAR, KinHardType::ARMSTRONG_FREDERICK); diff --git a/test/Libraries/Umat/Treference_umats.cpp b/test/Libraries/Umat/Treference_umats.cpp new file mode 100644 index 000000000..56714d3cd --- /dev/null +++ b/test/Libraries/Umat/Treference_umats.cpp @@ -0,0 +1,173 @@ +/* This file is part of simcoon. + +simcoon is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +simcoon is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with simcoon. If not, see . + +*/ + +///@file Treference_umats.cpp +///@brief Independent-physics validation of the modular adapters. +/// +/// The legacy UMAT kernels removed in the modular rationalization are kept +/// VERBATIM under reference_kernels/ and compiled ONLY into this test. Each +/// adapter-served name is driven through a cyclic strain path side by side +/// with its reference kernel; the stress histories must match within the +/// tolerances established by the Phase-1 equivalence campaign (bit-identical +/// for the power-law/elastic families; Voce incremental-vs-closed-form +/// integration differences for the Chaboche family). + +#include +#include +#include +#include + +#include +#include + +#include "reference_kernels/elastic_isotropic.hpp" +#include "reference_kernels/elastic_transverse_isotropic.hpp" +#include "reference_kernels/elastic_orthotropic.hpp" +#include "reference_kernels/plastic_kin_iso_ccp.hpp" +#include "reference_kernels/Hill_isoh.hpp" +#include "reference_kernels/Hill_chaboche_ccp.hpp" +#include "reference_kernels/Ani_chaboche_ccp.hpp" +#include "reference_kernels/DFA_chaboche_ccp.hpp" +#include "reference_kernels/Generic_chaboche_ccp.hpp" +#include "reference_kernels/Hill_isoh_Nfast.hpp" + +using namespace arma; +using namespace simcoon; + +namespace { + +// Standard-signature UMAT entry (reference kernel or adapter). +using UmatFn = std::function; + +// Drive one kernel through a cyclic confined-uniaxial strain path +// (E11: 0 -> +amp -> -amp -> 0, other components held at zero) and return the +// sigma11 history. tangent_continuum on both sides for determinism. +vec drive(const UmatFn& umat, const std::string& name, const vec& props, + int nstatev, double amp, int n_quarter) { + vec Etot = zeros(6); + vec sigma = zeros(6); + vec statev = zeros(nstatev); + mat Lt(6, 6), L(6, 6); + const mat DR = eye(3, 3); + double T = 293., DT = 0., Time = 0., DTime = 1.; + double Wm = 0., Wm_r = 0., Wm_ir = 0., Wm_d = 0.; + double tnew_dt = 1.; + + const int n_total = 4 * n_quarter; + vec s11(n_total); + const double de = amp / n_quarter; + bool start = true; + for (int i = 0; i < n_total; ++i) { + // quarter 1: load +, quarters 2-3: unload to -amp, quarter 4: back to 0 + const double d = (i < n_quarter) ? de + : (i < 3 * n_quarter) ? -de + : de; + vec DEtot = zeros(6); + DEtot(0) = d; + umat(name, Etot, DEtot, sigma, Lt, L, DR, + static_cast(props.n_elem), props, nstatev, statev, + T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, + 3, 3, start, tnew_dt, tangent_continuum); + Etot += DEtot; + Time += DTime; + start = false; + s11(i) = sigma(0); + } + return s11; +} + +void expect_equiv(const UmatFn& reference, const std::string& name, + const vec& props, int nstatev, double rel_tol, + double amp = 0.02, int n_quarter = 25) { + const vec ref = drive(reference, name, props, nstatev, amp, n_quarter); + const vec mod = drive(umat_legacy_modular, name, props, nstatev, amp, n_quarter); + const double peak = std::max(std::abs(ref.max()), std::abs(ref.min())); + ASSERT_GT(peak, 0.); + const double dev = abs(ref - mod).max() / peak; + EXPECT_LT(dev, rel_tol) << name << ": adapter deviates from the reference " + << "kernel by " << dev; +} + +} // namespace + +TEST(Treference_umats, ELISO_matches_reference) { + expect_equiv(umat_elasticity_iso, "ELISO", {210000., 0.3, 1.2e-5}, 1, 1e-9); +} + +TEST(Treference_umats, ELIST_matches_reference) { + expect_equiv(umat_elasticity_trans_iso, "ELIST", + {3, 230000., 15000., 0.02, 0.4, 50000., 0., 0.}, 1, 1e-9); +} + +TEST(Treference_umats, ELORT_matches_reference) { + expect_equiv(umat_elasticity_ortho, "ELORT", + {70000., 30000., 15000., 0.3, 0.3, 0.3, + 8000., 6000., 5000., 1e-5, 2e-5, 3e-5}, 1, 1e-9); +} + +TEST(Treference_umats, EPKCP_matches_reference) { + // m = 1 avoids the power-law p=0 tangent singularity (proven bit-identical) + expect_equiv(umat_plasticity_kin_iso_CCP, "EPKCP", + {210000., 0.3, 0., 300., 1000., 1.0, 20000.}, 33, 1e-9); +} + +TEST(Treference_umats, EPHIL_matches_reference) { + expect_equiv(umat_plasticity_hill_isoh_CCP, "EPHIL", + {210000., 0.3, 0., 300., 5000., 1.0, + 0.5, 0.4, 0.6, 1.5, 1.5, 1.5}, 33, 1e-9); +} + +TEST(Treference_umats, EPHAC_matches_reference) { + // Voce: legacy incremental Hp vs modular closed form -> small drift + expect_equiv(umat_hill_chaboche_CCP, "EPHAC", + {210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 0.5, 0.4, 0.6, 1.5, 1.5, 1.5}, 33, 2e-3); +} + +TEST(Treference_umats, EPANI_matches_reference) { + expect_equiv(umat_ani_chaboche_CCP, "EPANI", + {210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 1.2, 1.1, 1.1, -0.6, -0.6, -0.5, 1.6, 1.5, 1.4}, 33, 2e-3); +} + +TEST(Treference_umats, EPDFA_matches_reference) { + expect_equiv(umat_dfa_chaboche_CCP, "EPDFA", + {210000., 0.3, 85000., 0., 300., 200., 20., + 30000., 172., 19500., 301., + 0.5, 0.4, 0.6, 1.5, 1.5, 1.5, 0.1}, 33, 2e-3); +} + +TEST(Treference_umats, EPCHG_matches_reference) { + expect_equiv(umat_generic_chaboche_CCP, "EPCHG", + {210000., 0.3, 85000., 0., 300., 2, 2, 0, + 150., 15., 50., 40., 30000., 172., 19500., 301.}, 33, 2e-3); +} + +TEST(Treference_umats, EPHIN_matches_reference) { + // N = 1 only: the reference kernel is defective for N >= 2 (returns NaN + // even for identical or never-active second surfaces) — the modular + // engine is the correct implementation there. + expect_equiv(umat_plasticity_hill_isoh_CCP_N, "EPHIN", + {210000., 0.3, 0., 1, + 300., 3000., 1.0, 0.5, 0.4, 0.6, 1.5, 1.5, 1.5}, 33, 1e-9); +} diff --git a/test/Libraries/Umat/Ttangent_EPCHA.cpp b/test/Libraries/Umat/Ttangent_EPCHA.cpp index 129636dff..3976a5841 100644 --- a/test/Libraries/Umat/Ttangent_EPCHA.cpp +++ b/test/Libraries/Umat/Ttangent_EPCHA.cpp @@ -75,8 +75,8 @@ bool verbose() { return std::getenv("SIMCOON_TEST_VERBOSE") != nullptr; } TEST(Ttangent_EPCHA, parity_elastic_step) { const vec DEtot = {1.e-4, -0.3e-4, -0.3e-4, 0., 0., 0.}; - Out c = run_epcha(DEtot, 0); - Out a = run_epcha(DEtot, 1); + Out c = run_epcha(DEtot, simcoon::tangent_continuum); + Out a = run_epcha(DEtot, simcoon::tangent_algorithmic); ASSERT_FALSE(c.plastic); EXPECT_LT(norm(c.Lt - a.Lt, "fro"), 1.e-12); } @@ -84,15 +84,15 @@ TEST(Ttangent_EPCHA, parity_elastic_step) TEST(Ttangent_EPCHA, algorithmic_tangent_better_than_continuum) { const vec Deps = {5.e-3, -1.e-3, 0.5e-3, 2.e-3, 0., 0.}; - Out c = run_epcha(Deps, 0); - Out a = run_epcha(Deps, 1); + Out c = run_epcha(Deps, simcoon::tangent_continuum); + Out a = run_epcha(Deps, simcoon::tangent_algorithmic); ASSERT_TRUE(a.plastic); const double h = 1.e-7; mat J_ref(6, 6); for (int j = 0; j < 6; ++j) { vec Dp = Deps; Dp(j) += h; vec Dm = Deps; Dm(j) -= h; - J_ref.col(j) = (run_epcha(Dp, 0).sigma - run_epcha(Dm, 0).sigma) / (2. * h); + J_ref.col(j) = (run_epcha(Dp, simcoon::tangent_continuum).sigma - run_epcha(Dm, simcoon::tangent_continuum).sigma) / (2. * h); } const double err_algo = norm(a.Lt - J_ref, "fro"); const double err_cont = norm(c.Lt - J_ref, "fro"); @@ -110,8 +110,8 @@ TEST(Ttangent_EPCHA, convergence_no_worse_than_continuum) vec Deps0 = solve(L, sig_t); Deps0 *= 1.2; Deps0(3) += 3.e-3; Deps0(4) += 1.5e-3; Deps0(1) += 1.e-3; - auto r_cont = stress_target_newton(sig_t, Deps0, 0, 40); - auto r_algo = stress_target_newton(sig_t, Deps0, 1, 40); + auto r_cont = stress_target_newton(sig_t, Deps0, simcoon::tangent_continuum, 40); + auto r_algo = stress_target_newton(sig_t, Deps0, simcoon::tangent_algorithmic, 40); if (verbose()) std::cout << "[Ttangent_EPCHA] final residual cont=" << r_cont.back() << " algo=" << r_algo.back() << "\n"; diff --git a/test/Libraries/Umat/Ttangent_EPHIL.cpp b/test/Libraries/Umat/Ttangent_EPHIL.cpp index 478d42ba2..8484d9cd3 100644 --- a/test/Libraries/Umat/Ttangent_EPHIL.cpp +++ b/test/Libraries/Umat/Ttangent_EPHIL.cpp @@ -17,12 +17,12 @@ ///@file Ttangent_EPHIL.cpp ///@brief Tier-B acceptance test: the EPHIL (Hill anisotropic plasticity) algorithmic -/// tangent (tangent_mode==1) is symmetric, substantially closer to the discrete-map +/// tangent (algorithmic mode (tangent_algorithmic)) is symmetric, substantially closer to the discrete-map /// Jacobian than the continuum tangent, and converges in fewer Newton iterations. /// It is machine-exact for isotropic Hill (== J2); for ANISOTROPIC Hill the CCP /// integrator differs from a closest-point projection, so exactness is deferred to /// the CPP return-map rework (see the NOTE above the Jacobian test). -/// Drives the real umat_plasticity_hill_isoh_CCP. +/// Drives the EPHIL name through the modular adapter path. ///@version 1.0 #include @@ -32,7 +32,7 @@ #include #include -#include +#include using namespace std; using namespace arma; @@ -57,7 +57,7 @@ Out run_ephil(const vec &DEtot, int tangent_mode) { double T = 293.15, DT = 0., Time = 0., DTime = 1.; double Wm = 0., Wm_r = 0., Wm_ir = 0., Wm_d = 0., tnew_dt = 1.; - umat_plasticity_hill_isoh_CCP("EPHIL", Etot, DEtot, sigma, Lt, L, DR, nprops, props, + umat_legacy_modular("EPHIL", Etot, DEtot, sigma, Lt, L, DR, nprops, props, nstatev, statev, T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, 3, 3, true, tnew_dt, tangent_mode); return {sigma, Lt, statev(1) > simcoon::iota}; @@ -82,8 +82,8 @@ bool verbose() { return std::getenv("SIMCOON_TEST_VERBOSE") != nullptr; } TEST(Ttangent_EPHIL, parity_elastic_step) { const vec DEtot = {1.e-4, -0.3e-4, -0.3e-4, 0., 0., 0.}; - Out c = run_ephil(DEtot, 0); - Out a = run_ephil(DEtot, 1); + Out c = run_ephil(DEtot, simcoon::tangent_continuum); + Out a = run_ephil(DEtot, simcoon::tangent_algorithmic); ASSERT_FALSE(c.plastic) << "Parity step unexpectedly yielded."; EXPECT_LT(norm(c.Lt - a.Lt, "fro"), 1.e-12); } @@ -97,8 +97,8 @@ TEST(Ttangent_EPHIL, parity_elastic_step) TEST(Ttangent_EPHIL, algorithmic_tangent_better_than_continuum) { const vec Deps = {5.e-3, -1.e-3, 0.5e-3, 2.e-3, 0., 0.}; - Out c = run_ephil(Deps, 0); - Out a = run_ephil(Deps, 1); + Out c = run_ephil(Deps, simcoon::tangent_continuum); + Out a = run_ephil(Deps, simcoon::tangent_algorithmic); ASSERT_TRUE(a.plastic) << "Test set-up did not yield - increase Deps."; const double h = 1.e-7; @@ -106,7 +106,7 @@ TEST(Ttangent_EPHIL, algorithmic_tangent_better_than_continuum) for (int j = 0; j < 6; ++j) { vec Dp = Deps; Dp(j) += h; vec Dm = Deps; Dm(j) -= h; - J_ref.col(j) = (run_ephil(Dp, 0).sigma - run_ephil(Dm, 0).sigma) / (2. * h); + J_ref.col(j) = (run_ephil(Dp, simcoon::tangent_continuum).sigma - run_ephil(Dm, simcoon::tangent_continuum).sigma) / (2. * h); } const double err_algo = norm(a.Lt - J_ref, "fro"); const double err_cont = norm(c.Lt - J_ref, "fro"); @@ -134,8 +134,8 @@ TEST(Ttangent_EPHIL, convergence_rate_continuum_vs_algorithmic) Deps0(1) += 1.e-3; const int max_iter = 30; - auto r_cont = stress_target_newton(sigma_target, Deps0, 0, max_iter); - auto r_algo = stress_target_newton(sigma_target, Deps0, 1, max_iter); + auto r_cont = stress_target_newton(sigma_target, Deps0, simcoon::tangent_continuum, max_iter); + auto r_algo = stress_target_newton(sigma_target, Deps0, simcoon::tangent_algorithmic, max_iter); if (verbose()) { std::cout << "\n[Ttangent_EPHIL] residual history (cont vs algo):\n"; diff --git a/test/Libraries/Umat/Ttangent_EPICP.cpp b/test/Libraries/Umat/Ttangent_EPICP.cpp index 370fca687..fdd54e518 100644 --- a/test/Libraries/Umat/Ttangent_EPICP.cpp +++ b/test/Libraries/Umat/Ttangent_EPICP.cpp @@ -17,8 +17,8 @@ ///@file Ttangent_EPICP.cpp ///@brief Tier-A acceptance test: the EPICP (J2 isotropic plasticity) algorithmic -/// tangent (tangent_mode==1) is the exact Jacobian of the discrete return map -/// and converges Q-quadratically, while tangent_mode==0 stays the continuum tangent. +/// tangent (algorithmic mode (tangent_algorithmic)) is the exact Jacobian of the discrete return map +/// and converges Q-quadratically, while tangent_continuum stays the continuum tangent. /// Drives the real umat_plasticity_iso_CCP, toggling tangent_mode. ///@version 1.0 @@ -88,8 +88,8 @@ bool verbose() { return std::getenv("SIMCOON_TEST_VERBOSE") != nullptr; } TEST(Ttangent_EPICP, parity_elastic_step) { const vec DEtot = {1.e-4, -0.3e-4, -0.3e-4, 0., 0., 0.}; // Mises ~ 7 MPa << sigmaY - EpicpOut c = run_epicp(DEtot, 0); - EpicpOut a = run_epicp(DEtot, 1); + EpicpOut c = run_epicp(DEtot, simcoon::tangent_continuum); + EpicpOut a = run_epicp(DEtot, simcoon::tangent_algorithmic); ASSERT_FALSE(c.plastic) << "Parity step unexpectedly yielded."; EXPECT_LT(norm(c.Lt - a.Lt, "fro"), 1.e-12); } @@ -101,8 +101,8 @@ TEST(Ttangent_EPICP, parity_elastic_step) TEST(Ttangent_EPICP, algorithmic_tangent_is_exact_jacobian) { const vec Deps = {5.e-3, -1.e-3, 0.5e-3, 2.e-3, 0., 0.}; // non-radial -> yields - EpicpOut c = run_epicp(Deps, 0); - EpicpOut a = run_epicp(Deps, 1); + EpicpOut c = run_epicp(Deps, simcoon::tangent_continuum); + EpicpOut a = run_epicp(Deps, simcoon::tangent_algorithmic); ASSERT_TRUE(a.plastic) << "Test set-up did not yield - increase Deps."; const double h = 1.e-7; @@ -110,7 +110,7 @@ TEST(Ttangent_EPICP, algorithmic_tangent_is_exact_jacobian) for (int j = 0; j < 6; ++j) { vec Dp = Deps; Dp(j) += h; vec Dm = Deps; Dm(j) -= h; - J_ref.col(j) = (run_epicp(Dp, 0).sigma - run_epicp(Dm, 0).sigma) / (2. * h); + J_ref.col(j) = (run_epicp(Dp, simcoon::tangent_continuum).sigma - run_epicp(Dm, simcoon::tangent_continuum).sigma) / (2. * h); } const double err_algo = norm(a.Lt - J_ref, "fro"); @@ -139,8 +139,8 @@ TEST(Ttangent_EPICP, convergence_rate_continuum_vs_algorithmic) Deps0(1) += 1.e-3; const int max_iter = 30; - auto r_cont = stress_target_newton(sigma_target, Deps0, 0, max_iter); - auto r_algo = stress_target_newton(sigma_target, Deps0, 1, max_iter); + auto r_cont = stress_target_newton(sigma_target, Deps0, simcoon::tangent_continuum, max_iter); + auto r_algo = stress_target_newton(sigma_target, Deps0, simcoon::tangent_algorithmic, max_iter); if (verbose()) { std::cout << "\n[Ttangent_EPICP] residual history (cont vs algo):\n"; diff --git a/test/Libraries/Umat/Ttutorial_umat.cpp b/test/Libraries/Umat/Ttutorial_umat.cpp new file mode 100644 index 000000000..778d94a55 --- /dev/null +++ b/test/Libraries/Umat/Ttutorial_umat.cpp @@ -0,0 +1,169 @@ +/* This file is part of simcoon. + +simcoon is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +simcoon is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with simcoon. If not, see . + +*/ + +///@file Ttutorial_umat.cpp +///@brief Validation of the tutorial J2 UMAT (examples/umat_tutorial/). +/// +/// Three checks, mirroring the tutorial's claims: +/// 1. Equivalence with the kept EPICP reference (m = 1 makes the legacy +/// power law R = k p^m exactly the tutorial's linear hardening H = k). +/// 2. The hand-built analytical continuum tangent equals the shared +/// assemble_continuum_tangent operator AND its closed-form +/// specialization L - 4mu^2/(3mu+H) Lambda o Lambda. +/// 3. The algorithmic tangent equals the finite-difference Jacobian of the +/// discrete stress update (exact for J2 radial return). + +#include +#include + +#include +#include +#include +#include +#include +#include + +#include "umat_tutorial_J2.hpp" + +using namespace arma; +using namespace simcoon; + +namespace { + +const vec PROPS_TUTORIAL = {210000., 0.3, 1.2e-5, 300., 10000.}; // E nu alpha sY H +const vec PROPS_EPICP = {210000., 0.3, 1.2e-5, 300., 10000., 1.0}; // ... k m=1 + +struct Out { + vec sigma = zeros(6); + mat Lt = zeros(6, 6); + vec statev; +}; + +// Drive a kernel over a strain increment sequence; return the final state. +template +Out run(Fn&& umat, const vec& props, int nstatev, + const std::vector& increments, int tangent_mode) { + Out o; + o.statev = zeros(nstatev); + vec Etot = zeros(6); + mat L(6, 6); + const mat DR = eye(3, 3); + double T = 293., DT = 0., Time = 0., DTime = 1.; + double Wm = 0., Wm_r = 0., Wm_ir = 0., Wm_d = 0.; + double tnew_dt = 1.; + bool start = true; + for (const vec& DEtot : increments) { + umat("TUTO", Etot, DEtot, o.sigma, o.Lt, L, DR, + static_cast(props.n_elem), props, nstatev, o.statev, + T, DT, Time, DTime, Wm, Wm_r, Wm_ir, Wm_d, + 3, 3, start, tnew_dt, tangent_mode); + Etot += DEtot; + Time += DTime; + start = false; + } + return o; +} + +std::vector cyclic_path(double amp, int n_quarter) { + std::vector incs; + const double de = amp / n_quarter; + for (int i = 0; i < 4 * n_quarter; ++i) { + vec d = zeros(6); + d(0) = (i < n_quarter) ? de : (i < 3 * n_quarter) ? -de : de; + d(3) = 0.3 * d(0); // add shear so the flow direction is non-trivial + incs.push_back(d); + } + return incs; +} + +} // namespace + +TEST(Ttutorial_umat, matches_EPICP_reference) { + const auto path = cyclic_path(0.02, 25); + const Out tut = run(umat_tutorial_J2, PROPS_TUTORIAL, 8, path, + tangent_continuum); + const Out ref = run(umat_plasticity_iso_CCP, PROPS_EPICP, 8, path, + tangent_continuum); + const double peak = std::max(std::abs(ref.sigma.max()), + std::abs(ref.sigma.min())); + ASSERT_GT(peak, 300.); + // EPICP iterates its CCP loop to 1e-9; the tutorial's radial return is + // exact — they agree to the CCP tolerance. + EXPECT_LT(norm(tut.sigma - ref.sigma, 2) / peak, 1e-8); + EXPECT_NEAR(tut.statev(1), ref.statev(1), 1e-8); // accumulated p +} + +TEST(Ttutorial_umat, analytic_continuum_tangent_closed_form) { + // Single plastic step; compare the UMAT's tangent to the closed form + // L - 4 mu^2/(3 mu + H) Lambda o Lambda built independently here. + const double E = PROPS_TUTORIAL(0), nu = PROPS_TUTORIAL(1); + const double H = PROPS_TUTORIAL(4); + const double mu = E / (2. * (1. + nu)); + + vec DE = {0.004, -0.001, -0.001, 0.001, 0., 0.}; + const Out o = run(umat_tutorial_J2, PROPS_TUTORIAL, 8, {DE}, + tangent_continuum); + + const vec Lam = eta_stress(o.sigma); // radial return: same direction + const mat L = L_iso(E, nu, "Enu"); + // CONVENTION LESSON: the closed form L - 4mu^2/(3mu+H) Lambda o Lambda + // holds for the TENSORIAL Lambda. In Voigt components the outer product + // must use the STRESS-Voigt normal (shear NOT doubled): kappa = L:Lambda + // = 2 mu Lambda lands in stress Voigt, and eta_stress() returns the + // ENGINEERING (doubled-shear) normal — using it directly overweights the + // shear block of the rank-1 correction by up to 4x. + vec Lam_sv = Lam; + Lam_sv.rows(3, 5) *= 0.5; // engineering -> stress Voigt + const mat Lt_closed = + L - (4. * mu * mu / (3. * mu + H)) * (Lam_sv * Lam_sv.t()); + + EXPECT_LT(norm(o.Lt - Lt_closed, "fro") / norm(L, "fro"), 1e-9) + << "hand-built tangent != closed form"; + + // ... and to the shared continuum assembly used by production kernels. + const vec kappa = L * Lam; + const ContinuumTangent ct = assemble_continuum_tangent( + dot(Lam, kappa) + H, kappa, Lam, 1.0, L); + EXPECT_LT(norm(o.Lt - ct.Lt, "fro") / norm(L, "fro"), 1e-9) + << "hand-built tangent != assemble_continuum_tangent"; +} + +TEST(Ttutorial_umat, algorithmic_tangent_matches_finite_difference) { + // Build a plastic state, then FD the discrete map sigma(Etot + DEtot) + // around a further plastic increment; the algorithmic tangent must be + // its exact Jacobian (J2 radial return: CCP == CPP). + vec DE1 = {0.003, -0.0009, -0.0009, 0.0005, 0., 0.}; + vec DE2 = {0.001, -0.0003, -0.0003, 0.0002, 0., 0.}; + + const Out base = run(umat_tutorial_J2, PROPS_TUTORIAL, 8, {DE1, DE2}, + tangent_algorithmic); + + const double h = 1e-7; + mat J(6, 6); + for (int j = 0; j < 6; ++j) { + vec dp = DE2, dm = DE2; + dp(j) += h; + dm(j) -= h; + const Out op = run(umat_tutorial_J2, PROPS_TUTORIAL, 8, {DE1, dp}, + tangent_algorithmic); + const Out om = run(umat_tutorial_J2, PROPS_TUTORIAL, 8, {DE1, dm}, + tangent_algorithmic); + J.col(j) = (op.sigma - om.sigma) / (2. * h); + } + EXPECT_LT(norm(base.Lt - J, "fro") / norm(J, "fro"), 1e-5) + << "algorithmic tangent is not the discrete Jacobian"; +} diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Ani_chaboche_ccp.cpp b/test/Libraries/Umat/reference_kernels/Ani_chaboche_ccp.cpp old mode 100755 new mode 100644 similarity index 97% rename from src/Continuum_mechanics/Umat/Mechanical/Plasticity/Ani_chaboche_ccp.cpp rename to test/Libraries/Umat/reference_kernels/Ani_chaboche_ccp.cpp index e2d4f45f4..0642d9afa --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Ani_chaboche_ccp.cpp +++ b/test/Libraries/Umat/reference_kernels/Ani_chaboche_ccp.cpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify @@ -31,7 +35,7 @@ #include #include #include -#include +#include "Ani_chaboche_ccp.hpp" #include using namespace std; diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Ani_chaboche_ccp.hpp b/test/Libraries/Umat/reference_kernels/Ani_chaboche_ccp.hpp old mode 100755 new mode 100644 similarity index 96% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Ani_chaboche_ccp.hpp rename to test/Libraries/Umat/reference_kernels/Ani_chaboche_ccp.hpp index 57c26d06d..4c621c3bd --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Ani_chaboche_ccp.hpp +++ b/test/Libraries/Umat/reference_kernels/Ani_chaboche_ccp.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/DFA_chaboche_ccp.cpp b/test/Libraries/Umat/reference_kernels/DFA_chaboche_ccp.cpp old mode 100755 new mode 100644 similarity index 97% rename from src/Continuum_mechanics/Umat/Mechanical/Plasticity/DFA_chaboche_ccp.cpp rename to test/Libraries/Umat/reference_kernels/DFA_chaboche_ccp.cpp index 4097c3257..638ab7e8e --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/DFA_chaboche_ccp.cpp +++ b/test/Libraries/Umat/reference_kernels/DFA_chaboche_ccp.cpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify @@ -31,7 +35,7 @@ #include #include #include -#include +#include "DFA_chaboche_ccp.hpp" #include using namespace std; diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/DFA_chaboche_ccp.hpp b/test/Libraries/Umat/reference_kernels/DFA_chaboche_ccp.hpp old mode 100755 new mode 100644 similarity index 96% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/DFA_chaboche_ccp.hpp rename to test/Libraries/Umat/reference_kernels/DFA_chaboche_ccp.hpp index a86489bfd..466529e7d --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/DFA_chaboche_ccp.hpp +++ b/test/Libraries/Umat/reference_kernels/DFA_chaboche_ccp.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Generic_chaboche_ccp.cpp b/test/Libraries/Umat/reference_kernels/Generic_chaboche_ccp.cpp old mode 100755 new mode 100644 similarity index 98% rename from src/Continuum_mechanics/Umat/Mechanical/Plasticity/Generic_chaboche_ccp.cpp rename to test/Libraries/Umat/reference_kernels/Generic_chaboche_ccp.cpp index 55ab99884..fff9c486e --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Generic_chaboche_ccp.cpp +++ b/test/Libraries/Umat/reference_kernels/Generic_chaboche_ccp.cpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify @@ -31,7 +35,7 @@ #include #include #include -#include +#include "Generic_chaboche_ccp.hpp" #include using namespace std; diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Generic_chaboche_ccp.hpp b/test/Libraries/Umat/reference_kernels/Generic_chaboche_ccp.hpp old mode 100755 new mode 100644 similarity index 96% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Generic_chaboche_ccp.hpp rename to test/Libraries/Umat/reference_kernels/Generic_chaboche_ccp.hpp index fef88f822..8ee822983 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Generic_chaboche_ccp.hpp +++ b/test/Libraries/Umat/reference_kernels/Generic_chaboche_ccp.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_chaboche_ccp.cpp b/test/Libraries/Umat/reference_kernels/Hill_chaboche_ccp.cpp old mode 100755 new mode 100644 similarity index 97% rename from src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_chaboche_ccp.cpp rename to test/Libraries/Umat/reference_kernels/Hill_chaboche_ccp.cpp index ba4fc2700..c7775b23f --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_chaboche_ccp.cpp +++ b/test/Libraries/Umat/reference_kernels/Hill_chaboche_ccp.cpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify @@ -31,7 +35,7 @@ #include #include #include -#include +#include "Hill_chaboche_ccp.hpp" #include using namespace std; diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_chaboche_ccp.hpp b/test/Libraries/Umat/reference_kernels/Hill_chaboche_ccp.hpp old mode 100755 new mode 100644 similarity index 96% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_chaboche_ccp.hpp rename to test/Libraries/Umat/reference_kernels/Hill_chaboche_ccp.hpp index 1c5173028..f4652334e --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_chaboche_ccp.hpp +++ b/test/Libraries/Umat/reference_kernels/Hill_chaboche_ccp.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh.cpp b/test/Libraries/Umat/reference_kernels/Hill_isoh.cpp old mode 100755 new mode 100644 similarity index 96% rename from src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh.cpp rename to test/Libraries/Umat/reference_kernels/Hill_isoh.cpp index 83e2fce1d..f1dc92e7d --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh.cpp +++ b/test/Libraries/Umat/reference_kernels/Hill_isoh.cpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh.hpp b/test/Libraries/Umat/reference_kernels/Hill_isoh.hpp old mode 100755 new mode 100644 similarity index 97% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh.hpp rename to test/Libraries/Umat/reference_kernels/Hill_isoh.hpp index ea2302945..589564652 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh.hpp +++ b/test/Libraries/Umat/reference_kernels/Hill_isoh.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh_Nfast.cpp b/test/Libraries/Umat/reference_kernels/Hill_isoh_Nfast.cpp old mode 100755 new mode 100644 similarity index 96% rename from src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh_Nfast.cpp rename to test/Libraries/Umat/reference_kernels/Hill_isoh_Nfast.cpp index 5d7e8c37b..359ffda17 --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/Hill_isoh_Nfast.cpp +++ b/test/Libraries/Umat/reference_kernels/Hill_isoh_Nfast.cpp @@ -1,307 +1,311 @@ -/* This file is part of simcoon. - - simcoon is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - simcoon is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with simcoon. If not, see . - - */ - -///@file Iso_Nfast.cpp -///@brief User subroutine for Multiple plasticity model in 3D case -///@author Chemisky, Chatzigeorgiou -///@version 1.0 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace std; -using namespace arma; - -///@brief The Multiple plastic series model requires a number of constants -// ------------------- -///@brief props(0) = E0 Young modulus -///@brief props(1) = nu0 Poisson ratio -///@brief props(2) = alpha_iso CTE -///@brief props(3) = N_plas Number of plastic branches -///@brief props(4+i*3) = sigmaY(i) yield stress limit sigmaY of branch i -///@brief props(4+i*3+1) = k(i) hardening parameter k of branch i -///@brief props(4+i*3+2) = m(i) exponent m of branch i - -///@brief Number of statev required for thermoelastic constitutive law - -namespace simcoon { - -void umat_plasticity_hill_isoh_CCP_N(const string &umat_name, const vec &Etot, const vec &DEtot, vec &stress, mat &Lt, mat &L, const mat &DR, const int &nprops, const vec &props, const int &nstatev, vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode) -{ - - UNUSED(umat_name); - UNUSED(nprops); - UNUSED(nstatev); - UNUSED(Time); - UNUSED(DTime); - UNUSED(nshr); - UNUSED(tnew_dt); - - //From the props to the material properties - double E = props(0); - double nu = props(1); - double alpha_iso = props(2); - int N_plas = int(props(3)); - - vec sigmaY = zeros(N_plas); - vec k = zeros(N_plas); - vec m = zeros(N_plas); - vec F_hill = zeros(N_plas); - vec G_hill = zeros(N_plas); - vec H_hill = zeros(N_plas); - vec L_hill = zeros(N_plas); - vec M_hill = zeros(N_plas); - vec N_hill = zeros(N_plas); - - for (int i=0; i Hill_params(N_plas); - for (int i=0; i EP_branch(N_plas); - vec p = zeros(N_plas); - - for (int i=0; i simcoon::iota) { - dHpdp[i] = m[i]*k[i]*pow(p[i], m[i]-1.0); - Hp[i] = k[i]*pow(p[i], m[i]); - } - else { - dHpdp[i] = 0.; - Hp[i] = 0.; - } - } - std::vector A_p_start(N_plas); - for (int i = 0; i < N_plas; i++) { - A_p_start[i] = -Hp[i]; - } - - //Variables required for the loop - vec s_j = p; - vec Ds_j = zeros(N_plas); - vec ds_j = zeros(N_plas); - - ///Elastic prediction - Accounting for the thermal prediction - vec Eel = Etot + DEtot - alpha*(T+DT-T_init) - EP; - stress = el_pred(L, Eel, ndi); - - //Define the plastic function and the stress - vec Phi = zeros(N_plas); - mat B = zeros(N_plas,N_plas); - vec Y_crit = zeros(N_plas); - - vec dPhidp = zeros(N_plas); - //Compute the explicit flow direction - std::vector Lambdap(N_plas); - std::vector kappa_j(N_plas); - std::vector dPhidsigma(N_plas); - mat K = zeros(N_plas,N_plas); - - for (int i=0; i simcoon::precision_umat)); compteur++) { - - p = s_j; - for (int i=0; i simcoon::iota) { - dHpdp[i] = m[i]*k[i]*pow(p[i], m[i]-1.0); - Hp[i] = k[i]*pow(p[i], m[i]); - } - else { - dHpdp[i] = 0.; - Hp[i] = 0.; - } - - Phi(i) = Hill_stress(stress,Hill_params[i]) - Hp[i] - sigmaY[i]; - Lambdap[i] = dHill_stress(stress,Hill_params[i]); - - dPhidsigma[i] = Lambdap[i]; - dPhidp[i] = -1.*dHpdp[i]; - - kappa_j[i] = L*Lambdap[i]; - K(i,i) = dPhidp[i]; - for (int j=0; j dLambda_dsigma_l(N_plas); - for (int i = 0; i < N_plas; i++) { - dLambda_dsigma_l[i] = ddHill_stress(stress, Hill_params[i]); - } - ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma, Ds_j, L, dLambda_dsigma_l); - } else { - ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma, Ds_j, L); - } - Lt = ct.Lt; - const std::vector& P_epsilon = ct.P_epsilon; - - std::vector A_p(N_plas); - for (int i = 0; i < N_plas; i++) { - A_p[i] = -Hp[i]; - } - - double Dgamma_loc = 0.5*sum((stress_start+stress)%DEP); - for (int i = 0; i < N_plas; i++) { - Dgamma_loc += 0.5*(A_p_start[i] + A_p[i])*Dp[i]; - } - - //Computation of the mechanical and thermal work quantities - Wm += 0.5*sum((stress_start+stress)%DEtot); - Wm_r += 0.5*sum((stress_start+stress)%(DEtot-DEP)); - for (int i = 0; i < N_plas; i++) { - Wm_ir += -0.5*(A_p_start[i] + A_p[i])*Dp[i]; - } - Wm_d += Dgamma_loc; - - ///@brief statev evolving variables - //statev - statev(0) = T_init; - - statev(1) = EP(0); - statev(2) = EP(1); - statev(3) = EP(2); - statev(4) = EP(3); - statev(5) = EP(4); - statev(6) = EP(5); - - for (int i=0; i. + + */ + +///@file Iso_Nfast.cpp +///@brief User subroutine for Multiple plasticity model in 3D case +///@author Chemisky, Chatzigeorgiou +///@version 1.0 + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; +using namespace arma; + +///@brief The Multiple plastic series model requires a number of constants +// ------------------- +///@brief props(0) = E0 Young modulus +///@brief props(1) = nu0 Poisson ratio +///@brief props(2) = alpha_iso CTE +///@brief props(3) = N_plas Number of plastic branches +///@brief props(4+i*3) = sigmaY(i) yield stress limit sigmaY of branch i +///@brief props(4+i*3+1) = k(i) hardening parameter k of branch i +///@brief props(4+i*3+2) = m(i) exponent m of branch i + +///@brief Number of statev required for thermoelastic constitutive law + +namespace simcoon { + +void umat_plasticity_hill_isoh_CCP_N(const string &umat_name, const vec &Etot, const vec &DEtot, vec &stress, mat &Lt, mat &L, const mat &DR, const int &nprops, const vec &props, const int &nstatev, vec &statev, const double &T, const double &DT, const double &Time, const double &DTime, double &Wm, double &Wm_r, double &Wm_ir, double &Wm_d, const int &ndi, const int &nshr, const bool &start, double &tnew_dt, const int &tangent_mode) +{ + + UNUSED(umat_name); + UNUSED(nprops); + UNUSED(nstatev); + UNUSED(Time); + UNUSED(DTime); + UNUSED(nshr); + UNUSED(tnew_dt); + + //From the props to the material properties + double E = props(0); + double nu = props(1); + double alpha_iso = props(2); + int N_plas = int(props(3)); + + vec sigmaY = zeros(N_plas); + vec k = zeros(N_plas); + vec m = zeros(N_plas); + vec F_hill = zeros(N_plas); + vec G_hill = zeros(N_plas); + vec H_hill = zeros(N_plas); + vec L_hill = zeros(N_plas); + vec M_hill = zeros(N_plas); + vec N_hill = zeros(N_plas); + + for (int i=0; i Hill_params(N_plas); + for (int i=0; i EP_branch(N_plas); + vec p = zeros(N_plas); + + for (int i=0; i simcoon::iota) { + dHpdp[i] = m[i]*k[i]*pow(p[i], m[i]-1.0); + Hp[i] = k[i]*pow(p[i], m[i]); + } + else { + dHpdp[i] = 0.; + Hp[i] = 0.; + } + } + std::vector A_p_start(N_plas); + for (int i = 0; i < N_plas; i++) { + A_p_start[i] = -Hp[i]; + } + + //Variables required for the loop + vec s_j = p; + vec Ds_j = zeros(N_plas); + vec ds_j = zeros(N_plas); + + ///Elastic prediction - Accounting for the thermal prediction + vec Eel = Etot + DEtot - alpha*(T+DT-T_init) - EP; + stress = el_pred(L, Eel, ndi); + + //Define the plastic function and the stress + vec Phi = zeros(N_plas); + mat B = zeros(N_plas,N_plas); + vec Y_crit = zeros(N_plas); + + vec dPhidp = zeros(N_plas); + //Compute the explicit flow direction + std::vector Lambdap(N_plas); + std::vector kappa_j(N_plas); + std::vector dPhidsigma(N_plas); + mat K = zeros(N_plas,N_plas); + + for (int i=0; i simcoon::precision_umat)); compteur++) { + + p = s_j; + for (int i=0; i simcoon::iota) { + dHpdp[i] = m[i]*k[i]*pow(p[i], m[i]-1.0); + Hp[i] = k[i]*pow(p[i], m[i]); + } + else { + dHpdp[i] = 0.; + Hp[i] = 0.; + } + + Phi(i) = Hill_stress(stress,Hill_params[i]) - Hp[i] - sigmaY[i]; + Lambdap[i] = dHill_stress(stress,Hill_params[i]); + + dPhidsigma[i] = Lambdap[i]; + dPhidp[i] = -1.*dHpdp[i]; + + kappa_j[i] = L*Lambdap[i]; + K(i,i) = dPhidp[i]; + for (int j=0; j dLambda_dsigma_l(N_plas); + for (int i = 0; i < N_plas; i++) { + dLambda_dsigma_l[i] = ddHill_stress(stress, Hill_params[i]); + } + ct = assemble_algorithmic_tangent(Bhat, kappa_j, dPhidsigma, Ds_j, L, dLambda_dsigma_l); + } else { + ct = assemble_continuum_tangent(Bhat, kappa_j, dPhidsigma, Ds_j, L); + } + Lt = ct.Lt; + const std::vector& P_epsilon = ct.P_epsilon; + + std::vector A_p(N_plas); + for (int i = 0; i < N_plas; i++) { + A_p[i] = -Hp[i]; + } + + double Dgamma_loc = 0.5*sum((stress_start+stress)%DEP); + for (int i = 0; i < N_plas; i++) { + Dgamma_loc += 0.5*(A_p_start[i] + A_p[i])*Dp[i]; + } + + //Computation of the mechanical and thermal work quantities + Wm += 0.5*sum((stress_start+stress)%DEtot); + Wm_r += 0.5*sum((stress_start+stress)%(DEtot-DEP)); + for (int i = 0; i < N_plas; i++) { + Wm_ir += -0.5*(A_p_start[i] + A_p[i])*Dp[i]; + } + Wm_d += Dgamma_loc; + + ///@brief statev evolving variables + //statev + statev(0) = T_init; + + statev(1) = EP(0); + statev(2) = EP(1); + statev(3) = EP(2); + statev(4) = EP(3); + statev(5) = EP(4); + statev(6) = EP(5); + + for (int i=0; i #include #include -#include +#include "elastic_isotropic.hpp" using namespace std; using namespace arma; diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_isotropic.hpp b/test/Libraries/Umat/reference_kernels/elastic_isotropic.hpp old mode 100755 new mode 100644 similarity index 96% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_isotropic.hpp rename to test/Libraries/Umat/reference_kernels/elastic_isotropic.hpp index 4c58decea..eff452e1e --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_isotropic.hpp +++ b/test/Libraries/Umat/reference_kernels/elastic_isotropic.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/src/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_orthotropic.cpp b/test/Libraries/Umat/reference_kernels/elastic_orthotropic.cpp old mode 100755 new mode 100644 similarity index 90% rename from src/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_orthotropic.cpp rename to test/Libraries/Umat/reference_kernels/elastic_orthotropic.cpp index c10d2a2ba..8e83347b9 --- a/src/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_orthotropic.cpp +++ b/test/Libraries/Umat/reference_kernels/elastic_orthotropic.cpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify @@ -24,7 +28,7 @@ #include #include #include -#include +#include "elastic_orthotropic.hpp" using namespace std; using namespace arma; diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_orthotropic.hpp b/test/Libraries/Umat/reference_kernels/elastic_orthotropic.hpp old mode 100755 new mode 100644 similarity index 95% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_orthotropic.hpp rename to test/Libraries/Umat/reference_kernels/elastic_orthotropic.hpp index 22d1d0ea0..722e040a9 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_orthotropic.hpp +++ b/test/Libraries/Umat/reference_kernels/elastic_orthotropic.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/src/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_transverse_isotropic.cpp b/test/Libraries/Umat/reference_kernels/elastic_transverse_isotropic.cpp old mode 100755 new mode 100644 similarity index 90% rename from src/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_transverse_isotropic.cpp rename to test/Libraries/Umat/reference_kernels/elastic_transverse_isotropic.cpp index 549fe3df4..5ba719fd1 --- a/src/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_transverse_isotropic.cpp +++ b/test/Libraries/Umat/reference_kernels/elastic_transverse_isotropic.cpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify @@ -25,7 +29,7 @@ #include #include #include -#include +#include "elastic_transverse_isotropic.hpp" using namespace std; using namespace arma; diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_transverse_isotropic.hpp b/test/Libraries/Umat/reference_kernels/elastic_transverse_isotropic.hpp old mode 100755 new mode 100644 similarity index 95% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_transverse_isotropic.hpp rename to test/Libraries/Umat/reference_kernels/elastic_transverse_isotropic.hpp index 3dd226715..df049a9e1 --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Elasticity/elastic_transverse_isotropic.hpp +++ b/test/Libraries/Umat/reference_kernels/elastic_transverse_isotropic.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_kin_iso_ccp.cpp b/test/Libraries/Umat/reference_kernels/plastic_kin_iso_ccp.cpp old mode 100755 new mode 100644 similarity index 96% rename from src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_kin_iso_ccp.cpp rename to test/Libraries/Umat/reference_kernels/plastic_kin_iso_ccp.cpp index 6d93b7cb2..f8d051d5c --- a/src/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_kin_iso_ccp.cpp +++ b/test/Libraries/Umat/reference_kernels/plastic_kin_iso_ccp.cpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify @@ -30,7 +34,7 @@ #include #include #include -#include +#include "plastic_kin_iso_ccp.hpp" #include using namespace std; diff --git a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_kin_iso_ccp.hpp b/test/Libraries/Umat/reference_kernels/plastic_kin_iso_ccp.hpp old mode 100755 new mode 100644 similarity index 96% rename from include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_kin_iso_ccp.hpp rename to test/Libraries/Umat/reference_kernels/plastic_kin_iso_ccp.hpp index 7139418be..6bfc7b61e --- a/include/simcoon/Continuum_mechanics/Umat/Mechanical/Plasticity/plastic_kin_iso_ccp.hpp +++ b/test/Libraries/Umat/reference_kernels/plastic_kin_iso_ccp.hpp @@ -1,3 +1,7 @@ +// REFERENCE ORACLE — verbatim copy of the legacy kernel removed in the +// modular rationalization (last dispatched at commit ccfc803a). Compiled +// ONLY into the Treference_umats test to validate the modular adapters +// against independent physics. Do not modify except to keep it compiling. /* This file is part of simcoon. simcoon is free software: you can redistribute it and/or modify diff --git a/testBin/Umats/EPCHA/comparison/simul_1.txt b/testBin/Umats/EPCHA/comparison/simul_1.txt index 30ae1cb16..06bc99d22 100644 --- a/testBin/Umats/EPCHA/comparison/simul_1.txt +++ b/testBin/Umats/EPCHA/comparison/simul_1.txt @@ -1,201 +1,201 @@ -3 1 1 1 0 290 0 0 -7.09e-05 0.000376421 0.000376421 0 0 0 238.68 -1.49796e-05 -1.49796e-05 0 0 0 6.27431 0.265939 0.832803 5.17557 -3 1 1 2 0.005 290 0 0 0.000126 0.000283382 0.000283382 0 0 0 242.467 -1.46387e-05 -1.46387e-05 0 0 0 6.32168 0.279095 0.842166 5.20042 -3 1 1 3 0.01 290 0 0 0.000333 0.000185435 0.000185435 0 0 0 246.355 -1.46382e-05 -1.46382e-05 0 0 0 6.37228 0.293107 0.852101 5.22707 -3 1 1 4 0.015 290 0 0 0.000526 9.39879e-05 9.39879e-05 0 0 0 249.892 -1.46379e-05 -1.46379e-05 0 0 0 6.42016 0.306298 0.861448 5.25242 -3 1 1 5 0.02 290 0 0 0.0007279 -1.79976e-06 -1.79976e-06 0 0 0 253.505 -1.46376e-05 -1.46376e-05 0 0 0 6.47098 0.320207 0.871313 5.27946 -3 1 1 6 0.025 290 0 0 0.0009266 -9.61919e-05 -9.61919e-05 0 0 0 256.976 -1.46373e-05 -1.46373e-05 0 0 0 6.5217 0.333973 0.881109 5.30662 -3 1 1 7 0.03 290 0 0 0.001132 -0.000193891 -0.000193891 0 0 0 260.476 -1.4637e-05 -1.4637e-05 0 0 0 6.57484 0.348262 0.891325 5.33525 -3 1 1 8 0.035 290 0 0 0.00133 -0.000288189 -0.000288189 0 0 0 263.768 -1.46367e-05 -1.46367e-05 0 0 0 6.62674 0.36206 0.90126 5.36342 -3 1 1 9 0.04 290 0 0 0.001533 -0.000384985 -0.000384985 0 0 0 267.061 -1.46364e-05 -1.46364e-05 0 0 0 6.68062 0.376214 0.911533 5.39287 -3 1 1 10 0.045 290 0 0 0.001727 -0.0004776 -0.0004776 0 0 0 270.13 -1.46362e-05 -1.46362e-05 0 0 0 6.73273 0.38972 0.921434 5.42157 -3 1 1 11 0.05 290 0 0 0.001933 -0.000576056 -0.000576056 0 0 0 273.311 -1.46359e-05 -1.4636e-05 0 0 0 6.7887 0.40403 0.932037 5.45264 -3 1 1 12 0.055 290 0 0 0.002134 -0.000672233 -0.000672233 0 0 0 276.337 -1.46357e-05 -1.46357e-05 0 0 0 6.84394 0.417934 0.942469 5.48354 -3 1 1 13 0.06 290 0 0 0.002335 -0.000768518 -0.000768518 0 0 0 279.287 -1.46355e-05 -1.46355e-05 0 0 0 6.89978 0.431766 0.952989 5.51503 -3 1 1 14 0.065 290 0 0 0.002534 -0.000863949 -0.000863949 0 0 0 282.136 -1.46354e-05 -1.46354e-05 0 0 0 6.95564 0.445371 0.963489 5.54678 -3 1 1 15 0.07 290 0 0 0.00274 -0.000962841 -0.000962841 0 0 0 285.012 -1.46352e-05 -1.46352e-05 0 0 0 7.01406 0.459352 0.974446 5.58026 -3 1 1 16 0.075 290 0 0 0.002938 -0.00105799 -0.00105799 0 0 0 287.705 -1.4635e-05 -1.4635e-05 0 0 0 7.07076 0.472671 0.985064 5.61302 -3 1 1 17 0.08 290 0 0 0.003138 -0.0011542 -0.0011542 0 0 0 290.359 -1.46349e-05 -1.46349e-05 0 0 0 7.12857 0.485998 0.995873 5.64669 -3 1 1 18 0.085 290 0 0 0.003332 -0.00124761 -0.00124761 0 0 0 292.87 -1.46347e-05 -1.46347e-05 0 0 0 7.18514 0.498791 1.00644 5.67991 -3 1 1 19 0.09 290 0 0 0.003545 -0.00135028 -0.00135028 0 0 0 295.557 -1.46346e-05 -1.46346e-05 0 0 0 7.24781 0.512685 1.01813 5.71699 -3 1 1 20 0.095 290 0 0 0.003737 -0.0014429 -0.0014429 0 0 0 297.917 -1.53233e-05 -1.53233e-05 0 0 0 7.30478 0.525047 1.02875 5.75098 -3 1 1 21 0.1 290 0 0 0.003942 -0.00154189 -0.00154189 0 0 0 300.375 -1.53231e-05 -1.53231e-05 0 0 0 7.3661 0.538085 1.04017 5.78785 -3 1 1 22 0.105 290 0 0 0.004136 -0.00163565 -0.00163565 0 0 0 302.642 -1.59669e-05 -1.59669e-05 0 0 0 7.4246 0.550251 1.05106 5.82328 -3 1 1 23 0.11 290 0 0 0.004343 -0.00173578 -0.00173578 0 0 0 305.002 -1.59667e-05 -1.59667e-05 0 0 0 7.48749 0.563053 1.06277 5.86167 -3 1 1 24 0.115 290 0 0 0.004549 -0.00183552 -0.00183552 0 0 0 307.288 -1.66626e-05 -1.66626e-05 0 0 0 7.55055 0.575597 1.07451 5.90045 -3 1 1 25 0.12 290 0 0 0.004744 -0.00193 -0.00193 0 0 0 309.398 -1.72227e-05 -1.72227e-05 0 0 0 7.61068 0.587282 1.0857 5.9377 -3 1 1 26 0.125 290 0 0 0.004945 -0.00202747 -0.00202747 0 0 0 311.519 -1.78057e-05 -1.78057e-05 0 0 0 7.67308 0.599137 1.09732 5.97663 -3 1 1 27 0.13 290 0 0 0.00515 -0.00212696 -0.00212696 0 0 0 313.627 -1.83925e-05 -1.83925e-05 0 0 0 7.73716 0.611025 1.10925 6.01688 -3 1 1 28 0.135 290 0 0 0.00535 -0.0022241 -0.0022241 0 0 0 315.631 -1.89087e-05 -1.89087e-05 0 0 0 7.80009 0.622419 1.12098 6.05669 -3 1 1 29 0.14 290 0 0 0.005549 -0.00232082 -0.00232082 0 0 0 317.575 -1.9391e-05 -1.9391e-05 0 0 0 7.86309 0.633556 1.13273 6.09681 -3 1 1 30 0.145 290 0 0 0.005751 -0.00241907 -0.00241907 0 0 0 319.499 -1.98691e-05 -1.98691e-05 0 0 0 7.92744 0.644656 1.14473 6.13805 -3 1 1 31 0.15 290 0 0 0.005952 -0.00251691 -0.00251691 0 0 0 321.366 -2.03151e-05 -2.03151e-05 0 0 0 7.99184 0.655494 1.15676 6.17959 -3 1 1 32 0.155 290 0 0 0.00615 -0.00261335 -0.00261335 0 0 0 323.158 -2.07188e-05 -2.07188e-05 0 0 0 8.05565 0.665966 1.16869 6.22099 -3 1 1 33 0.16 290 0 0 0.006352 -0.0027118 -0.0027118 0 0 0 324.942 -2.11248e-05 -2.11248e-05 0 0 0 8.12111 0.676443 1.18094 6.26373 -3 1 1 34 0.165 290 0 0 0.006553 -0.00280983 -0.00280983 0 0 0 326.672 -2.1503e-05 -2.1503e-05 0 0 0 8.1866 0.686661 1.19321 6.30673 -3 1 1 35 0.17 290 0 0 0.006755 -0.0029084 -0.0029084 0 0 0 328.367 -2.18661e-05 -2.18661e-05 0 0 0 8.25275 0.69672 1.20562 6.35041 -3 1 1 36 0.175 290 0 0 0.006959 -0.00300802 -0.00300802 0 0 0 330.036 -2.22195e-05 -2.22195e-05 0 0 0 8.31991 0.706669 1.21824 6.39501 -3 1 1 37 0.18 290 0 0 0.007154 -0.0031033 -0.0031033 0 0 0 331.592 -2.2511e-05 -2.2511e-05 0 0 0 8.38442 0.715977 1.23037 6.43807 -3 1 1 38 0.185 290 0 0 0.007357 -0.00320254 -0.00320254 0 0 0 333.172 -2.28221e-05 -2.28221e-05 0 0 0 8.45189 0.725467 1.24308 6.48334 -3 1 1 39 0.19 290 0 0 0.007556 -0.00329988 -0.00329988 0 0 0 334.683 -2.30988e-05 -2.30988e-05 0 0 0 8.51834 0.734567 1.25562 6.52815 -3 1 1 40 0.195 290 0 0 0.00776 -0.00339972 -0.00339972 0 0 0 336.193 -2.33802e-05 -2.33802e-05 0 0 0 8.58677 0.743694 1.26856 6.57452 -3 1 1 41 0.2 290 0 0 0.007962 -0.00349864 -0.00349864 0 0 0 337.652 -2.36379e-05 -2.36379e-05 0 0 0 8.65483 0.752528 1.28144 6.62086 -3 1 1 42 0.205 290 0 0 0.008162 -0.00359663 -0.00359663 0 0 0 339.061 -2.38738e-05 -2.38738e-05 0 0 0 8.7225 0.76108 1.29428 6.66714 -3 1 1 43 0.21 290 0 0 0.008359 -0.00369319 -0.00369319 0 0 0 340.416 -2.40865e-05 -2.40865e-05 0 0 0 8.78943 0.769314 1.307 6.71312 -3 1 1 44 0.215 290 0 0 0.008567 -0.0037952 -0.0037952 0 0 0 341.812 -2.43228e-05 -2.43228e-05 0 0 0 8.86038 0.777813 1.32051 6.76206 -3 1 1 45 0.22 290 0 0 0.008759 -0.0038894 -0.0038894 0 0 0 343.069 -2.44977e-05 -2.44977e-05 0 0 0 8.92613 0.785473 1.33306 6.8076 -3 1 1 46 0.225 290 0 0 0.008965 -0.00399052 -0.00399052 0 0 0 344.387 -2.47017e-05 -2.47017e-05 0 0 0 8.99694 0.793508 1.34659 6.85684 -3 1 1 47 0.23 290 0 0 0.009171 -0.00409168 -0.00409168 0 0 0 345.672 -2.48936e-05 -2.48936e-05 0 0 0 9.06802 0.801351 1.36021 6.90646 -3 1 1 48 0.235 290 0 0 0.009368 -0.00418847 -0.00418847 0 0 0 346.872 -2.50515e-05 -2.50515e-05 0 0 0 9.13623 0.808672 1.3733 6.95426 -3 1 1 49 0.24 290 0 0 0.009567 -0.00428628 -0.00428628 0 0 0 348.055 -2.52049e-05 -2.52049e-05 0 0 0 9.20538 0.815895 1.38661 7.00288 -3 1 1 50 0.245 290 0 0 0.00977 -0.00438609 -0.00438609 0 0 0 349.235 -2.53583e-05 -2.53583e-05 0 0 0 9.27615 0.823089 1.40025 7.05281 -3 1 1 51 0.25 290 0 0 0.009963 -0.00448103 -0.00448103 0 0 0 350.33 -2.54824e-05 -2.54824e-05 0 0 0 9.34366 0.829766 1.4133 7.1006 -3 1 1 52 0.255 290 0 0 0.009958 -0.00447953 -0.00447953 0 0 0 349.63 -2.54824e-05 -2.54824e-05 0 0 0 9.34191 0.828016 1.4133 7.1006 -3 1 1 53 0.26 290 0 0 0.009779 -0.00442583 -0.00442583 0 0 0 324.57 -2.54824e-05 -2.54824e-05 0 0 0 9.28157 0.767675 1.4133 7.1006 -3 1 1 54 0.265 290 0 0 0.009587 -0.00436823 -0.00436823 0 0 0 297.69 -2.54824e-05 -2.54824e-05 0 0 0 9.22183 0.707938 1.4133 7.1006 -3 1 1 55 0.27 290 0 0 0.009386 -0.00430793 -0.00430793 0 0 0 269.55 -2.54824e-05 -2.54824e-05 0 0 0 9.16483 0.65093 1.4133 7.1006 -3 1 1 56 0.275 290 0 0 0.009198 -0.00425153 -0.00425153 0 0 0 243.23 -2.54824e-05 -2.54824e-05 0 0 0 9.11662 0.602728 1.4133 7.1006 -3 1 1 57 0.28 290 0 0 0.009002 -0.00419273 -0.00419273 0 0 0 215.79 -2.54824e-05 -2.54824e-05 0 0 0 9.07164 0.557744 1.4133 7.1006 -3 1 1 58 0.285 290 0 0 0.008811 -0.00413543 -0.00413543 0 0 0 189.05 -2.54824e-05 -2.54824e-05 0 0 0 9.03298 0.519082 1.4133 7.1006 -3 1 1 59 0.29 290 0 0 0.008615 -0.00407663 -0.00407663 0 0 0 161.61 -2.54824e-05 -2.54824e-05 0 0 0 8.99861 0.484717 1.4133 7.1006 -3 1 1 60 0.295 290 0 0 0.008422 -0.00401873 -0.00401873 0 0 0 134.59 -2.54824e-05 -2.54824e-05 0 0 0 8.97003 0.456134 1.4133 7.1006 -3 1 1 61 0.3 290 0 0 0.008228 -0.00396053 -0.00396053 0 0 0 107.43 -2.54824e-05 -2.54824e-05 0 0 0 8.94655 0.432658 1.4133 7.1006 -3 1 1 62 0.305 290 0 0 0.00804 -0.00390335 -0.00390335 0 0 0 81.6576 -2.54864e-05 -2.54864e-05 0 0 0 8.92878 0.413648 1.41358 7.10156 -3 1 1 63 0.31 290 0 0 0.007845 -0.00383527 -0.00383527 0 0 0 61.0614 -2.56862e-05 -2.56862e-05 0 0 0 8.91486 0.384796 1.41696 7.11311 -3 1 1 64 0.315 290 0 0 0.007658 -0.00376905 -0.00376905 0 0 0 41.9677 -2.59413e-05 -2.59413e-05 0 0 0 8.90523 0.360894 1.42054 7.1238 -3 1 1 65 0.32 290 0 0 0.007463 -0.00369888 -0.00369888 0 0 0 22.8311 -2.63911e-05 -2.63911e-05 0 0 0 8.89891 0.339327 1.42467 7.13492 -3 1 1 66 0.325 290 0 0 0.007272 -0.00362889 -0.00362889 0 0 0 4.97989 -2.69954e-05 -2.69954e-05 0 0 0 8.89626 0.320872 1.42917 7.14621 -3 1 1 67 0.33 290 0 0 0.007075 -0.0035552 -0.0035552 0 0 0 -12.3923 -2.69925e-05 -2.69925e-05 0 0 0 8.89699 0.303909 1.43435 7.15873 -3 1 1 68 0.335 290 0 0 0.006905 -0.00349021 -0.00349021 0 0 0 -26.3941 -2.76681e-05 -2.76681e-05 0 0 0 8.90028 0.290322 1.43933 7.17063 -3 1 1 69 0.34 290 0 0 0.006742 -0.00342659 -0.00342659 0 0 0 -38.9134 -2.83245e-05 -2.83245e-05 0 0 0 8.90561 0.277816 1.44457 7.18322 -3 1 1 70 0.345 290 0 0 0.006546 -0.00334844 -0.00334844 0 0 0 -52.8057 -2.83195e-05 -2.83195e-05 0 0 0 8.91459 0.263137 1.45148 7.19997 -3 1 1 71 0.35 290 0 0 0.006346 -0.00326671 -0.00326671 0 0 0 -65.6 -2.83147e-05 -2.83147e-05 0 0 0 8.92644 0.248113 1.45926 7.21906 -3 1 1 72 0.355 290 0 0 0.006126 -0.00317467 -0.00317467 0 0 0 -78.1692 -2.83099e-05 -2.83099e-05 0 0 0 8.94225 0.231474 1.46861 7.24217 -3 1 1 73 0.36 290 0 0 0.00591 -0.00308231 -0.00308231 0 0 0 -89.1142 -2.8308e-05 -2.8308e-05 0 0 0 8.96032 0.215169 1.47853 7.26662 -3 1 1 74 0.365 290 0 0 0.005677 -0.00298093 -0.00298093 0 0 0 -99.7009 -2.87471e-05 -2.87471e-05 0 0 0 8.98231 0.198224 1.4899 7.29419 -3 1 1 75 0.37 290 0 0 0.005433 -0.0028733 -0.0028733 0 0 0 -109.759 -2.89348e-05 -2.89348e-05 0 0 0 9.00787 0.18184 1.50238 7.32365 -3 1 1 76 0.375 290 0 0 0.005204 -0.00277129 -0.00277129 0 0 0 -118.501 -2.89836e-05 -2.89836e-05 0 0 0 9.034 0.16823 1.51451 7.35127 -3 1 1 77 0.38 290 0 0 0.004997 -0.00267849 -0.00267849 0 0 0 -125.992 -2.89966e-05 -2.89966e-05 0 0 0 9.05931 0.157677 1.52572 7.37591 -3 1 1 78 0.385 290 0 0 0.004791 -0.00258574 -0.00258574 0 0 0 -133.167 -2.90029e-05 -2.90029e-05 0 0 0 9.086 0.148939 1.53706 7.4 -3 1 1 79 0.39 290 0 0 0.00459 -0.00249493 -0.00249493 0 0 0 -139.95 -2.90062e-05 -2.90062e-05 0 0 0 9.11345 0.142126 1.54828 7.42304 -3 1 1 80 0.395 290 0 0 0.004387 -0.00240296 -0.00240296 0 0 0 -146.62 -2.90085e-05 -2.90085e-05 0 0 0 9.14254 0.136931 1.55975 7.44585 -3 1 1 81 0.4 290 0 0 0.004184 -0.00231075 -0.00231075 0 0 0 -153.128 -2.90103e-05 -2.90103e-05 0 0 0 9.17296 0.133373 1.57134 7.46824 -3 1 1 82 0.405 290 0 0 0.003983 -0.00221925 -0.00221925 0 0 0 -159.425 -2.90117e-05 -2.90117e-05 0 0 0 9.20437 0.131392 1.58294 7.49004 -3 1 1 83 0.41 290 0 0 0.003784 -0.00212846 -0.00212846 0 0 0 -165.525 -2.90128e-05 -2.90128e-05 0 0 0 9.23671 0.130864 1.59453 7.51131 -3 1 1 84 0.415 290 0 0 0.00358 -0.00203521 -0.00203521 0 0 0 -171.646 -2.9014e-05 -2.9014e-05 0 0 0 9.2711 0.131721 1.60653 7.53285 -3 1 1 85 0.42 290 0 0 0.003381 -0.00194406 -0.00194406 0 0 0 -177.49 -2.9015e-05 -2.9015e-05 0 0 0 9.30584 0.13384 1.61834 7.55366 -3 1 1 86 0.425 290 0 0 0.003179 -0.00185135 -0.00185135 0 0 0 -183.297 -2.9016e-05 -2.9016e-05 0 0 0 9.34228 0.137204 1.63043 7.57464 -3 1 1 87 0.43 290 0 0 0.002979 -0.00175939 -0.00175939 0 0 0 -188.925 -2.90169e-05 -2.90169e-05 0 0 0 9.3795 0.141661 1.64251 7.59532 -3 1 1 88 0.435 290 0 0 0.002775 -0.00166542 -0.00166542 0 0 0 -194.544 -2.90178e-05 -2.90178e-05 0 0 0 9.41861 0.147282 1.65495 7.61638 -3 1 1 89 0.44 290 0 0 0.002575 -0.00157312 -0.00157312 0 0 0 -199.933 -2.90186e-05 -2.90186e-05 0 0 0 9.45806 0.153772 1.66725 7.63704 -3 1 1 90 0.445 290 0 0 0.002369 -0.00147788 -0.00147788 0 0 0 -205.364 -2.90195e-05 -2.90195e-05 0 0 0 9.4998 0.161397 1.68002 7.65839 -3 1 1 91 0.45 290 0 0 0.002174 -0.00138756 -0.00138756 0 0 0 -210.392 -2.90202e-05 -2.90202e-05 0 0 0 9.54034 0.169422 1.69222 7.6787 -3 1 1 92 0.455 290 0 0 0.001967 -0.00129152 -0.00129152 0 0 0 -215.615 -2.9021e-05 -2.9021e-05 0 0 0 9.58443 0.17874 1.70528 7.70041 -3 1 1 93 0.46 290 0 0 0.001768 -0.00119903 -0.00119903 0 0 0 -220.522 -2.90217e-05 -2.90217e-05 0 0 0 9.62783 0.188403 1.71794 7.72149 -3 1 1 94 0.465 290 0 0 0.001568 -0.00110592 -0.00110592 0 0 0 -225.345 -2.90223e-05 -2.90223e-05 0 0 0 9.67241 0.198754 1.73076 7.7429 -3 1 1 95 0.47 290 0 0 0.001366 -0.00101173 -0.00101173 0 0 0 -230.107 -2.9023e-05 -2.9023e-05 0 0 0 9.71842 0.209803 1.74383 7.76479 -3 1 1 96 0.475 290 0 0 0.001164 -0.000917374 -0.000917374 0 0 0 -234.762 -2.90236e-05 -2.90236e-05 0 0 0 9.76537 0.221391 1.75699 7.78698 -3 1 1 97 0.48 290 0 0 0.0009631 -0.000823385 -0.000823385 0 0 0 -239.285 -2.90242e-05 -2.90242e-05 0 0 0 9.81298 0.233398 1.77019 7.80939 -3 1 1 98 0.485 290 0 0 0.0007598 -0.000728124 -0.000728124 0 0 0 -243.756 -2.90248e-05 -2.90248e-05 0 0 0 9.86209 0.245988 1.78366 7.83244 -3 1 1 99 0.49 290 0 0 0.0005588 -0.000633792 -0.000633792 0 0 0 -248.075 -2.90253e-05 -2.90253e-05 0 0 0 9.91152 0.258821 1.79707 7.85562 -3 1 1 100 0.495 290 0 0 0.0003567 -0.0005388 -0.0005388 0 0 0 -252.315 -2.90258e-05 -2.90258e-05 0 0 0 9.96208 0.272066 1.81067 7.87935 -3 1 1 101 0.5 290 0 0 0.000161 -0.00044668 -0.00044668 0 0 0 -256.326 -2.90263e-05 -2.90263e-05 0 0 0 10.0119 0.285174 1.82393 7.90274 -3 1 1 102 0.505 290 0 0 -4.58e-05 -0.000349193 -0.000349193 0 0 0 -260.465 -2.90268e-05 -2.90268e-05 0 0 0 10.0653 0.299294 1.83805 7.92794 -3 1 1 103 0.51 290 0 0 -0.000251 -0.000252318 -0.000252318 0 0 0 -264.473 -2.90272e-05 -2.90272e-05 0 0 0 10.1191 0.313532 1.85217 7.95344 -3 1 1 104 0.515 290 0 0 -0.000473 -0.000147358 -0.000147358 0 0 0 -268.701 -2.90278e-05 -2.90278e-05 0 0 0 10.1783 0.329155 1.86757 7.98161 -3 1 1 105 0.52 290 0 0 -0.0006533 -6.19897e-05 -6.19897e-05 0 0 0 -272.048 -2.90281e-05 -2.90281e-05 0 0 0 10.2271 0.341957 1.88016 8.00496 -3 1 1 106 0.525 290 0 0 -0.0008338 2.35771e-05 2.35771e-05 0 0 0 -275.326 -2.90283e-05 -2.90283e-05 0 0 0 10.2765 0.354866 1.89285 8.02876 -3 1 1 107 0.53 290 0 0 -0.001036 0.000119548 0.000119548 0 0 0 -278.916 -2.90286e-05 -2.90286e-05 0 0 0 10.3325 0.369421 1.90716 8.05593 -3 1 1 108 0.535 290 0 0 -0.001266 0.000228862 0.000228862 0 0 0 -282.897 -2.90292e-05 -2.90292e-05 0 0 0 10.3971 0.386065 1.92356 8.08749 -3 1 1 109 0.54 290 0 0 -0.001442 0.000312625 0.000312625 0 0 0 -285.862 -2.90293e-05 -2.90293e-05 0 0 0 10.4472 0.398806 1.9362 8.11216 -3 1 1 110 0.545 290 0 0 -0.001663 0.000417927 0.000417927 0 0 0 -289.501 -2.90298e-05 -2.90298e-05 0 0 0 10.5107 0.414838 1.95218 8.14373 -3 1 1 111 0.55 290 0 0 -0.001853 0.000508575 0.000508575 0 0 0 -292.548 -2.903e-05 -2.903e-05 0 0 0 10.566 0.428592 1.96601 8.17144 -3 1 1 112 0.555 290 0 0 -0.002054 0.00060458 0.00060458 0 0 0 -295.694 -2.90302e-05 -2.90302e-05 0 0 0 10.6252 0.443112 1.98074 8.20131 -3 1 1 113 0.56 290 0 0 -0.002259 0.00070261 0.00070261 0 0 0 -298.823 -2.90305e-05 -2.90305e-05 0 0 0 10.6861 0.457866 1.99586 8.23238 -3 1 1 114 0.565 290 0 0 -0.002461 0.000799317 0.000799317 0 0 0 -301.828 -2.90307e-05 -2.90307e-05 0 0 0 10.7468 0.472327 2.01085 8.26358 -3 1 1 115 0.57 290 0 0 -0.002659 0.000894215 0.000894215 0 0 0 -304.7 -2.90309e-05 -2.90309e-05 0 0 0 10.8068 0.48641 2.02565 8.29475 -3 1 1 116 0.575 290 0 0 -0.002862 0.000991613 0.000991613 0 0 0 -307.571 -2.90311e-05 -2.90311e-05 0 0 0 10.869 0.500746 2.04091 8.3273 -3 1 1 117 0.58 290 0 0 -0.003061 0.00108719 0.00108719 0 0 0 -310.314 -2.90312e-05 -2.90312e-05 0 0 0 10.9304 0.514678 2.05597 8.35979 -3 1 1 118 0.585 290 0 0 -0.003257 0.00118143 0.00118143 0 0 0 -312.949 -2.90314e-05 -2.90314e-05 0 0 0 10.9915 0.528272 2.07089 8.39235 -3 1 1 119 0.59 290 0 0 -0.003458 0.00127817 0.00127817 0 0 0 -315.584 -2.90315e-05 -2.90315e-05 0 0 0 11.0547 0.542072 2.08628 8.42633 -3 1 1 120 0.595 290 0 0 -0.003656 0.00137355 0.00137355 0 0 0 -318.114 -2.90317e-05 -2.90317e-05 0 0 0 11.1174 0.555514 2.10154 8.46036 -3 1 1 121 0.6 290 0 0 -0.003869 0.00147626 0.00147626 0 0 0 -320.767 -2.90318e-05 -2.90318e-05 0 0 0 11.1855 0.569804 2.11805 8.4976 -3 1 1 122 0.605 290 0 0 -0.004064 0.00157038 0.00157038 0 0 0 -323.131 -2.90319e-05 -2.90319e-05 0 0 0 11.2482 0.582708 2.13326 8.53227 -3 1 1 123 0.61 290 0 0 -0.004268 0.00166894 0.00166894 0 0 0 -325.543 -2.9032e-05 -2.9032e-05 0 0 0 11.3144 0.59603 2.14926 8.56912 -3 1 1 124 0.615 290 0 0 -0.004478 0.00177048 0.00177048 0 0 0 -327.961 -2.90322e-05 -2.90322e-05 0 0 0 11.383 0.609545 2.16582 8.60765 -3 1 1 125 0.62 290 0 0 -0.004672 0.00186438 0.00186438 0 0 0 -330.137 -2.84262e-05 -2.84262e-05 0 0 0 11.4469 0.621835 2.18122 8.6438 -3 1 1 126 0.625 290 0 0 -0.004881 0.00196561 0.00196561 0 0 0 -332.422 -2.84263e-05 -2.84263e-05 0 0 0 11.5161 0.634876 2.1979 8.68332 -3 1 1 127 0.63 290 0 0 -0.00507 0.00205724 0.00205724 0 0 0 -334.434 -2.7921e-05 -2.7921e-05 0 0 0 11.5791 0.646472 2.21306 8.71958 -3 1 1 128 0.635 290 0 0 -0.005275 0.00215669 0.00215669 0 0 0 -336.564 -2.73075e-05 -2.73075e-05 0 0 0 11.6479 0.65885 2.2296 8.75944 -3 1 1 129 0.64 290 0 0 -0.005476 0.00225429 0.00225429 0 0 0 -338.598 -2.67595e-05 -2.67595e-05 0 0 0 11.7157 0.670773 2.2459 8.79907 -3 1 1 130 0.645 290 0 0 -0.005679 0.00235293 0.00235293 0 0 0 -340.6 -2.62242e-05 -2.62242e-05 0 0 0 11.7847 0.682601 2.26245 8.83963 -3 1 1 131 0.65 290 0 0 -0.005881 0.00245116 0.00245116 0 0 0 -342.54 -2.57246e-05 -2.57246e-05 0 0 0 11.8537 0.694154 2.27901 8.88051 -3 1 1 132 0.655 290 0 0 -0.006082 0.00254897 0.00254897 0 0 0 -344.422 -2.52583e-05 -2.52583e-05 0 0 0 11.9227 0.705433 2.29558 8.92171 -3 1 1 133 0.66 290 0 0 -0.006282 0.00264636 0.00264636 0 0 0 -346.247 -2.48234e-05 -2.48234e-05 0 0 0 11.9918 0.716441 2.31214 8.9632 -3 1 1 134 0.665 290 0 0 -0.006482 0.00274382 0.00274382 0 0 0 -348.025 -2.44115e-05 -2.44115e-05 0 0 0 12.0612 0.727235 2.32879 9.00519 -3 1 1 135 0.67 290 0 0 -0.006687 0.00284378 0.00284378 0 0 0 -349.802 -2.39918e-05 -2.39918e-05 0 0 0 12.1327 0.738078 2.34595 9.04872 -3 1 1 136 0.675 290 0 0 -0.006887 0.00294137 0.00294137 0 0 0 -351.491 -2.36235e-05 -2.36235e-05 0 0 0 12.2029 0.748438 2.36276 9.09167 -3 1 1 137 0.68 290 0 0 -0.00709 0.00304048 0.00304048 0 0 0 -353.162 -2.32593e-05 -2.32593e-05 0 0 0 12.2744 0.758737 2.37992 9.13573 -3 1 1 138 0.685 290 0 0 -0.00729 0.00313819 0.00313819 0 0 0 -354.766 -2.29303e-05 -2.29303e-05 0 0 0 12.3452 0.768668 2.3969 9.17961 -3 1 1 139 0.69 290 0 0 -0.007495 0.0032384 0.0032384 0 0 0 -356.369 -2.25955e-05 -2.25955e-05 0 0 0 12.4181 0.778631 2.4144 9.22505 -3 1 1 140 0.695 290 0 0 -0.007697 0.0033372 0.0033372 0 0 0 -357.909 -2.22933e-05 -2.22933e-05 0 0 0 12.4902 0.788232 2.43172 9.27027 -3 1 1 141 0.7 290 0 0 -0.007895 0.0034341 0.0034341 0 0 0 -359.38 -2.20246e-05 -2.20246e-05 0 0 0 12.5612 0.797436 2.44878 9.31502 -3 1 1 142 0.705 290 0 0 -0.008104 0.00353644 0.00353644 0 0 0 -360.894 -2.17262e-05 -2.17262e-05 0 0 0 12.6365 0.806937 2.46687 9.36269 -3 1 1 143 0.71 290 0 0 -0.008306 0.0036354 0.0036354 0 0 0 -362.32 -2.14725e-05 -2.14725e-05 0 0 0 12.7095 0.815907 2.48443 9.4092 -3 1 1 144 0.715 290 0 0 -0.008502 0.00373147 0.00373147 0 0 0 -363.67 -2.12539e-05 -2.12539e-05 0 0 0 12.7807 0.824413 2.50156 9.45472 -3 1 1 145 0.72 290 0 0 -0.008711 0.00383397 0.00383397 0 0 0 -365.073 -2.10038e-05 -2.10038e-05 0 0 0 12.8568 0.833279 2.5199 9.50367 -3 1 1 146 0.725 290 0 0 -0.008908 0.00393062 0.00393062 0 0 0 -366.363 -2.08067e-05 -2.08067e-05 0 0 0 12.9289 0.841436 2.53726 9.55019 -3 1 1 147 0.73 290 0 0 -0.009117 0.00403322 0.00403322 0 0 0 -367.699 -2.05847e-05 -2.05847e-05 0 0 0 13.0056 0.849891 2.55577 9.59994 -3 1 1 148 0.735 290 0 0 -0.00931 0.004128 0.004128 0 0 0 -368.901 -2.04203e-05 -2.04203e-05 0 0 0 13.0767 0.85751 2.57293 9.64624 -3 1 1 149 0.74 290 0 0 -0.009518 0.00423019 0.00423019 0 0 0 -370.167 -2.02261e-05 -2.02261e-05 0 0 0 13.1535 0.865533 2.59151 9.6965 -3 1 1 150 0.745 290 0 0 -0.009719 0.00432899 0.00432899 0 0 0 -371.359 -2.00614e-05 -2.00614e-05 0 0 0 13.2281 0.873096 2.60954 9.74543 -3 1 1 151 0.75 290 0 0 -0.009925 0.00443028 0.00443028 0 0 0 -372.552 -1.98945e-05 -1.98945e-05 0 0 0 13.3047 0.88066 2.62809 9.79594 -3 1 1 152 0.755 290 0 0 -0.009932 0.00443373 0.00443373 0 0 0 -372.592 -1.98945e-05 -1.98945e-05 0 0 0 13.3073 0.880912 2.62873 9.79766 -3 1 1 153 0.76 290 0 0 -0.009694 0.00436233 0.00436233 0 0 0 -339.272 -1.98945e-05 -1.98945e-05 0 0 0 13.2226 0.7962 2.62873 9.79766 -3 1 1 154 0.765 290 0 0 -0.009514 0.00430833 0.00430833 0 0 0 -314.072 -1.98945e-05 -1.98945e-05 0 0 0 13.1638 0.737399 2.62873 9.79766 -3 1 1 155 0.77 290 0 0 -0.00933 0.00425313 0.00425313 0 0 0 -288.312 -1.98945e-05 -1.98945e-05 0 0 0 13.1084 0.68198 2.62873 9.79766 -3 1 1 156 0.775 290 0 0 -0.009136 0.00419493 0.00419493 0 0 0 -261.152 -1.98945e-05 -1.98945e-05 0 0 0 13.0551 0.628682 2.62873 9.79766 -3 1 1 157 0.78 290 0 0 -0.008945 0.00413763 0.00413763 0 0 0 -234.412 -1.98945e-05 -1.98945e-05 0 0 0 13.0077 0.581356 2.62873 9.79766 -3 1 1 158 0.785 290 0 0 -0.008755 0.00408063 0.00408063 0 0 0 -207.812 -1.98945e-05 -1.98945e-05 0 0 0 12.9657 0.539344 2.62873 9.79766 -3 1 1 159 0.79 290 0 0 -0.008566 0.00402393 0.00402393 0 0 0 -181.352 -1.98945e-05 -1.98945e-05 0 0 0 12.929 0.502568 2.62873 9.79766 -3 1 1 160 0.795 290 0 0 -0.008376 0.00396693 0.00396693 0 0 0 -154.752 -1.98945e-05 -1.98945e-05 0 0 0 12.897 0.470639 2.62873 9.79766 -3 1 1 161 0.8 290 0 0 -0.008206 0.00391593 0.00391593 0 0 0 -130.952 -1.98945e-05 -1.98945e-05 0 0 0 12.8727 0.446354 2.62873 9.79766 -3 1 1 162 0.805 290 0 0 -0.008016 0.00385893 0.00385893 0 0 0 -104.352 -1.98945e-05 -1.98945e-05 0 0 0 12.8504 0.424 2.62873 9.79766 -3 1 1 163 0.81 290 0 0 -0.007818 0.00379953 0.00379953 0 0 0 -76.6317 -1.98945e-05 -1.98945e-05 0 0 0 12.8325 0.406083 2.62873 9.79766 -3 1 1 164 0.815 290 0 0 -0.007621 0.00373715 0.00373715 0 0 0 -51.344 -1.95914e-05 -1.95914e-05 0 0 0 12.8199 0.387965 2.63027 9.80163 -3 1 1 165 0.82 290 0 0 -0.007428 0.00366952 0.00366952 0 0 0 -31.1333 -1.93764e-05 -1.93764e-05 0 0 0 12.8119 0.364231 2.63485 9.81282 -3 1 1 166 0.825 290 0 0 -0.007235 0.00360089 0.00360089 0 0 0 -11.6291 -1.90508e-05 -1.90508e-05 0 0 0 12.8078 0.344166 2.63991 9.8237 -3 1 1 167 0.83 290 0 0 -0.007034 0.00352818 0.00352818 0 0 0 7.82478 -1.84753e-05 -1.84753e-05 0 0 0 12.8074 0.326512 2.64577 9.83512 -3 1 1 168 0.835 290 0 0 -0.006843 0.00345772 0.00345772 0 0 0 25.3566 -1.77939e-05 -1.77939e-05 0 0 0 12.8106 0.312068 2.65198 9.84652 -3 1 1 169 0.84 290 0 0 -0.006644 0.00338275 0.00338275 0 0 0 42.5254 -1.77974e-05 -1.77974e-05 0 0 0 12.8173 0.298709 2.6592 9.85941 -3 1 1 170 0.845 290 0 0 -0.006447 0.00330676 0.00330676 0 0 0 58.2794 -1.7802e-05 -1.7802e-05 0 0 0 12.8272 0.286405 2.6672 9.87364 -3 1 1 171 0.85 290 0 0 -0.006255 0.00323085 0.00323085 0 0 0 72.3477 -1.78066e-05 -1.78066e-05 0 0 0 12.8398 0.274656 2.67588 9.88925 -3 1 1 172 0.855 290 0 0 -0.006061 0.00315228 0.00315228 0 0 0 85.2469 -1.78111e-05 -1.78111e-05 0 0 0 12.8551 0.262612 2.68555 9.90691 -3 1 1 173 0.86 290 0 0 -0.005869 0.00307269 0.00307269 0 0 0 96.7357 -1.78142e-05 -1.78142e-05 0 0 0 12.8725 0.250328 2.69601 9.9262 -3 1 1 174 0.865 290 0 0 -0.005716 0.00300801 0.00300801 0 0 0 105.009 -1.7543e-05 -1.7543e-05 0 0 0 12.888 0.24025 2.70496 9.94277 -3 1 1 175 0.87 290 0 0 -0.005559 0.00294069 0.00294069 0 0 0 112.835 -1.73517e-05 -1.73517e-05 0 0 0 12.9051 0.229924 2.71461 9.96054 -3 1 1 176 0.875 290 0 0 -0.00536 0.00285425 0.00285425 0 0 0 121.978 -1.70818e-05 -1.70818e-05 0 0 0 12.9284 0.217225 2.7274 9.98382 -3 1 1 177 0.88 290 0 0 -0.005148 0.00276101 0.00276101 0 0 0 130.907 -1.69336e-05 -1.69336e-05 0 0 0 12.9552 0.20449 2.7416 10.0092 -3 1 1 178 0.885 290 0 0 -0.004948 0.00267219 0.00267219 0 0 0 138.736 -1.68876e-05 -1.68876e-05 0 0 0 12.9822 0.193589 2.75545 10.0332 -3 1 1 179 0.89 290 0 0 -0.004718 0.00256935 0.00256935 0 0 0 147.245 -1.68548e-05 -1.68548e-05 0 0 0 13.0151 0.182782 2.77174 10.0606 -3 1 1 180 0.895 290 0 0 -0.004497 0.00246997 0.00246997 0 0 0 155.031 -1.68432e-05 -1.68432e-05 0 0 0 13.0485 0.17431 2.78771 10.0865 -3 1 1 181 0.9 290 0 0 -0.00426 0.00236296 0.00236296 0 0 0 163.071 -1.68354e-05 -1.68354e-05 0 0 0 13.0862 0.167406 2.8051 10.1137 -3 1 1 182 0.905 290 0 0 -0.004032 0.00225965 0.00225965 0 0 0 170.555 -1.68315e-05 -1.68315e-05 0 0 0 13.1242 0.162884 2.82205 10.1393 -3 1 1 183 0.91 290 0 0 -0.003822 0.00216423 0.00216423 0 0 0 177.26 -1.68294e-05 -1.68294e-05 0 0 0 13.1608 0.160503 2.83783 10.1624 -3 1 1 184 0.915 290 0 0 -0.003625 0.0020745 0.0020745 0 0 0 183.403 -1.68281e-05 -1.68281e-05 0 0 0 13.1963 0.159755 2.85278 10.1837 -3 1 1 185 0.92 290 0 0 -0.00342 0.00198094 0.00198094 0 0 0 189.657 -1.68268e-05 -1.68268e-05 0 0 0 13.2345 0.160425 2.86846 10.2056 -3 1 1 186 0.925 290 0 0 -0.003221 0.00188992 0.00188992 0 0 0 195.596 -1.68257e-05 -1.68257e-05 0 0 0 13.2728 0.162409 2.88382 10.2266 -3 1 1 187 0.93 290 0 0 -0.003025 0.0018001 0.0018001 0 0 0 201.323 -1.68248e-05 -1.68248e-05 0 0 0 13.3117 0.16557 2.89907 10.2471 -3 1 1 188 0.935 290 0 0 -0.002824 0.00170782 0.00170782 0 0 0 207.074 -1.68239e-05 -1.68239e-05 0 0 0 13.3528 0.169977 2.91483 10.268 -3 1 1 189 0.94 290 0 0 -0.002622 0.0016149 0.0016149 0 0 0 212.731 -1.68229e-05 -1.68229e-05 0 0 0 13.3952 0.175517 2.93079 10.2889 -3 1 1 190 0.945 290 0 0 -0.002429 0.00152596 0.00152596 0 0 0 218.021 -1.68222e-05 -1.68222e-05 0 0 0 13.4368 0.181776 2.94617 10.3088 -3 1 1 191 0.95 290 0 0 -0.002227 0.0014327 0.0014327 0 0 0 223.442 -1.68213e-05 -1.68213e-05 0 0 0 13.4813 0.189271 2.96238 10.3297 -3 1 1 192 0.955 290 0 0 -0.002033 0.00134298 0.00134298 0 0 0 228.536 -1.68206e-05 -1.68206e-05 0 0 0 13.5252 0.197307 2.97806 10.3498 -3 1 1 193 0.96 290 0 0 -0.001832 0.00124986 0.00124986 0 0 0 233.701 -1.68198e-05 -1.68198e-05 0 0 0 13.5716 0.206436 2.99443 10.3708 -3 1 1 194 0.965 290 0 0 -0.001634 0.00115797 0.00115797 0 0 0 238.678 -1.68191e-05 -1.68191e-05 0 0 0 13.6184 0.216161 3.01068 10.3916 -3 1 1 195 0.97 290 0 0 -0.001432 0.00106406 0.00106406 0 0 0 243.643 -1.68184e-05 -1.68184e-05 0 0 0 13.6671 0.226772 3.02738 10.413 -3 1 1 196 0.975 290 0 0 -0.001236 0.000972791 0.000972791 0 0 0 248.354 -1.68178e-05 -1.68178e-05 0 0 0 13.7153 0.237673 3.0437 10.434 -3 1 1 197 0.98 290 0 0 -0.001033 0.000878106 0.000878106 0 0 0 253.124 -1.68171e-05 -1.68171e-05 0 0 0 13.7662 0.249538 3.06072 10.456 -3 1 1 198 0.985 290 0 0 -0.0008346 0.000785415 0.000785415 0 0 0 257.68 -1.68166e-05 -1.68166e-05 0 0 0 13.8169 0.261641 3.07747 10.4778 -3 1 1 199 0.99 290 0 0 -0.0006298 0.00068958 0.00068958 0 0 0 262.276 -1.68159e-05 -1.68159e-05 0 0 0 13.8702 0.274611 3.09489 10.5007 -3 1 1 200 0.995 290 0 0 -0.000429 0.000595467 0.000595467 0 0 0 266.677 -1.68154e-05 -1.68154e-05 0 0 0 13.9233 0.287743 3.11208 10.5234 -3 1 1 201 1 290 0 0 -0.000228 0.000501114 0.000501114 0 0 0 270.98 -1.68148e-05 -1.68148e-05 0 0 0 13.9773 0.301254 3.12941 10.5466 +3 1 1 1 3 290 0 0 -7.09e-05 0.000376421 0.000376421 0 0 0 238.68 -1.49796e-05 -1.49796e-05 0 0 0 6.27431 0.265939 0.832803 5.17557 +3 1 1 2 3.005 290 0 0 0.000126 0.000283382 0.000283382 0 0 0 242.467 -1.46387e-05 -1.46387e-05 0 0 0 6.32168 0.279095 0.842166 5.20042 +3 1 1 3 3.01 290 0 0 0.000333 0.000185435 0.000185435 0 0 0 246.355 -1.46382e-05 -1.46382e-05 0 0 0 6.37228 0.293107 0.852101 5.22707 +3 1 1 4 3.015 290 0 0 0.000526 9.39879e-05 9.39879e-05 0 0 0 249.892 -1.46379e-05 -1.46379e-05 0 0 0 6.42016 0.306298 0.861448 5.25242 +3 1 1 5 3.02 290 0 0 0.0007279 -1.79976e-06 -1.79976e-06 0 0 0 253.505 -1.46376e-05 -1.46376e-05 0 0 0 6.47098 0.320207 0.871313 5.27946 +3 1 1 6 3.025 290 0 0 0.0009266 -9.61919e-05 -9.61919e-05 0 0 0 256.976 -1.46373e-05 -1.46373e-05 0 0 0 6.5217 0.333973 0.881109 5.30662 +3 1 1 7 3.03 290 0 0 0.001132 -0.000193891 -0.000193891 0 0 0 260.476 -1.4637e-05 -1.4637e-05 0 0 0 6.57484 0.348262 0.891325 5.33525 +3 1 1 8 3.035 290 0 0 0.00133 -0.000288189 -0.000288189 0 0 0 263.768 -1.46367e-05 -1.46367e-05 0 0 0 6.62674 0.36206 0.90126 5.36342 +3 1 1 9 3.04 290 0 0 0.001533 -0.000384985 -0.000384985 0 0 0 267.061 -1.46364e-05 -1.46364e-05 0 0 0 6.68062 0.376214 0.911533 5.39287 +3 1 1 10 3.045 290 0 0 0.001727 -0.0004776 -0.0004776 0 0 0 270.13 -1.46362e-05 -1.46362e-05 0 0 0 6.73273 0.38972 0.921434 5.42157 +3 1 1 11 3.05 290 0 0 0.001933 -0.000576056 -0.000576056 0 0 0 273.311 -1.4636e-05 -1.4636e-05 0 0 0 6.7887 0.40403 0.932037 5.45264 +3 1 1 12 3.055 290 0 0 0.002134 -0.000672233 -0.000672233 0 0 0 276.337 -1.46357e-05 -1.46357e-05 0 0 0 6.84394 0.417934 0.942469 5.48354 +3 1 1 13 3.06 290 0 0 0.002335 -0.000768518 -0.000768518 0 0 0 279.287 -1.46355e-05 -1.46355e-05 0 0 0 6.89978 0.431766 0.952989 5.51503 +3 1 1 14 3.065 290 0 0 0.002534 -0.000863949 -0.000863949 0 0 0 282.136 -1.46354e-05 -1.46354e-05 0 0 0 6.95564 0.445371 0.963489 5.54678 +3 1 1 15 3.07 290 0 0 0.00274 -0.000962841 -0.000962841 0 0 0 285.012 -1.46352e-05 -1.46352e-05 0 0 0 7.01406 0.459352 0.974446 5.58026 +3 1 1 16 3.075 290 0 0 0.002938 -0.00105799 -0.00105799 0 0 0 287.705 -1.4635e-05 -1.4635e-05 0 0 0 7.07076 0.472671 0.985064 5.61302 +3 1 1 17 3.08 290 0 0 0.003138 -0.0011542 -0.0011542 0 0 0 290.359 -1.46349e-05 -1.46349e-05 0 0 0 7.12857 0.485998 0.995873 5.64669 +3 1 1 18 3.085 290 0 0 0.003332 -0.00124761 -0.00124761 0 0 0 292.87 -1.46347e-05 -1.46347e-05 0 0 0 7.18514 0.498791 1.00644 5.67991 +3 1 1 19 3.09 290 0 0 0.003545 -0.00135028 -0.00135028 0 0 0 295.557 -1.46346e-05 -1.46346e-05 0 0 0 7.24781 0.512685 1.01813 5.71699 +3 1 1 20 3.095 290 0 0 0.003737 -0.0014429 -0.0014429 0 0 0 297.917 -1.53233e-05 -1.53233e-05 0 0 0 7.30478 0.525047 1.02875 5.75098 +3 1 1 21 3.1 290 0 0 0.003942 -0.00154189 -0.00154189 0 0 0 300.375 -1.53231e-05 -1.53231e-05 0 0 0 7.3661 0.538085 1.04017 5.78785 +3 1 1 22 3.105 290 0 0 0.004136 -0.00163565 -0.00163565 0 0 0 302.642 -1.59669e-05 -1.59669e-05 0 0 0 7.4246 0.550251 1.05106 5.82328 +3 1 1 23 3.11 290 0 0 0.004343 -0.00173578 -0.00173578 0 0 0 305.002 -1.59668e-05 -1.59668e-05 0 0 0 7.48749 0.563053 1.06277 5.86167 +3 1 1 24 3.115 290 0 0 0.004549 -0.00183552 -0.00183552 0 0 0 307.288 -1.66626e-05 -1.66626e-05 0 0 0 7.55055 0.575597 1.07451 5.90045 +3 1 1 25 3.12 290 0 0 0.004744 -0.00193 -0.00193 0 0 0 309.398 -1.72227e-05 -1.72227e-05 0 0 0 7.61068 0.587282 1.0857 5.9377 +3 1 1 26 3.125 290 0 0 0.004945 -0.00202747 -0.00202747 0 0 0 311.519 -1.78057e-05 -1.78057e-05 0 0 0 7.67308 0.599137 1.09732 5.97663 +3 1 1 27 3.13 290 0 0 0.00515 -0.00212696 -0.00212696 0 0 0 313.627 -1.83925e-05 -1.83925e-05 0 0 0 7.73716 0.611025 1.10925 6.01688 +3 1 1 28 3.135 290 0 0 0.00535 -0.0022241 -0.0022241 0 0 0 315.631 -1.89087e-05 -1.89087e-05 0 0 0 7.80009 0.622419 1.12098 6.05669 +3 1 1 29 3.14 290 0 0 0.005549 -0.00232082 -0.00232082 0 0 0 317.575 -1.9391e-05 -1.9391e-05 0 0 0 7.86309 0.633556 1.13273 6.09681 +3 1 1 30 3.145 290 0 0 0.005751 -0.00241907 -0.00241907 0 0 0 319.499 -1.98691e-05 -1.98691e-05 0 0 0 7.92744 0.644656 1.14473 6.13805 +3 1 1 31 3.15 290 0 0 0.005952 -0.00251691 -0.00251691 0 0 0 321.366 -2.03151e-05 -2.03151e-05 0 0 0 7.99184 0.655494 1.15676 6.17959 +3 1 1 32 3.155 290 0 0 0.00615 -0.00261335 -0.00261335 0 0 0 323.158 -2.07188e-05 -2.07188e-05 0 0 0 8.05565 0.665966 1.16869 6.22099 +3 1 1 33 3.16 290 0 0 0.006352 -0.0027118 -0.0027118 0 0 0 324.942 -2.11248e-05 -2.11248e-05 0 0 0 8.12111 0.676443 1.18094 6.26373 +3 1 1 34 3.165 290 0 0 0.006553 -0.00280983 -0.00280983 0 0 0 326.672 -2.1503e-05 -2.1503e-05 0 0 0 8.1866 0.686661 1.19321 6.30673 +3 1 1 35 3.17 290 0 0 0.006755 -0.0029084 -0.0029084 0 0 0 328.367 -2.18661e-05 -2.18661e-05 0 0 0 8.25275 0.69672 1.20562 6.35041 +3 1 1 36 3.175 290 0 0 0.006959 -0.00300802 -0.00300802 0 0 0 330.036 -2.22195e-05 -2.22195e-05 0 0 0 8.31991 0.706669 1.21824 6.39501 +3 1 1 37 3.18 290 0 0 0.007154 -0.0031033 -0.0031033 0 0 0 331.592 -2.2511e-05 -2.2511e-05 0 0 0 8.38442 0.715977 1.23037 6.43807 +3 1 1 38 3.185 290 0 0 0.007357 -0.00320254 -0.00320254 0 0 0 333.172 -2.28221e-05 -2.28221e-05 0 0 0 8.45189 0.725467 1.24308 6.48334 +3 1 1 39 3.19 290 0 0 0.007556 -0.00329988 -0.00329988 0 0 0 334.683 -2.30988e-05 -2.30988e-05 0 0 0 8.51834 0.734567 1.25562 6.52815 +3 1 1 40 3.195 290 0 0 0.00776 -0.00339972 -0.00339972 0 0 0 336.193 -2.33802e-05 -2.33802e-05 0 0 0 8.58677 0.743694 1.26856 6.57452 +3 1 1 41 3.2 290 0 0 0.007962 -0.00349864 -0.00349864 0 0 0 337.652 -2.36379e-05 -2.36379e-05 0 0 0 8.65483 0.752528 1.28144 6.62086 +3 1 1 42 3.205 290 0 0 0.008162 -0.00359663 -0.00359663 0 0 0 339.061 -2.38738e-05 -2.38738e-05 0 0 0 8.7225 0.76108 1.29428 6.66714 +3 1 1 43 3.21 290 0 0 0.008359 -0.00369319 -0.00369319 0 0 0 340.416 -2.40865e-05 -2.40865e-05 0 0 0 8.78943 0.769314 1.307 6.71312 +3 1 1 44 3.215 290 0 0 0.008567 -0.0037952 -0.0037952 0 0 0 341.812 -2.43228e-05 -2.43228e-05 0 0 0 8.86038 0.777813 1.32051 6.76206 +3 1 1 45 3.22 290 0 0 0.008759 -0.0038894 -0.0038894 0 0 0 343.069 -2.44977e-05 -2.44977e-05 0 0 0 8.92613 0.785473 1.33306 6.8076 +3 1 1 46 3.225 290 0 0 0.008965 -0.00399052 -0.00399052 0 0 0 344.387 -2.47017e-05 -2.47017e-05 0 0 0 8.99694 0.793508 1.34659 6.85684 +3 1 1 47 3.23 290 0 0 0.009171 -0.00409168 -0.00409168 0 0 0 345.672 -2.48936e-05 -2.48936e-05 0 0 0 9.06802 0.801351 1.36021 6.90646 +3 1 1 48 3.235 290 0 0 0.009368 -0.00418847 -0.00418847 0 0 0 346.872 -2.50515e-05 -2.50515e-05 0 0 0 9.13623 0.808672 1.3733 6.95426 +3 1 1 49 3.24 290 0 0 0.009567 -0.00428628 -0.00428628 0 0 0 348.055 -2.52049e-05 -2.52049e-05 0 0 0 9.20538 0.815895 1.38661 7.00288 +3 1 1 50 3.245 290 0 0 0.00977 -0.00438609 -0.00438609 0 0 0 349.235 -2.53583e-05 -2.53583e-05 0 0 0 9.27615 0.823089 1.40025 7.05281 +3 1 1 51 3.25 290 0 0 0.009963 -0.00448103 -0.00448103 0 0 0 350.33 -2.54824e-05 -2.54824e-05 0 0 0 9.34366 0.829766 1.4133 7.1006 +3 1 1 52 3.255 290 0 0 0.009958 -0.00447953 -0.00447953 0 0 0 349.63 -2.54824e-05 -2.54824e-05 0 0 0 9.34191 0.828016 1.4133 7.1006 +3 1 1 53 3.26 290 0 0 0.009779 -0.00442583 -0.00442583 0 0 0 324.57 -2.54824e-05 -2.54824e-05 0 0 0 9.28157 0.767675 1.4133 7.1006 +3 1 1 54 3.265 290 0 0 0.009587 -0.00436823 -0.00436823 0 0 0 297.69 -2.54824e-05 -2.54824e-05 0 0 0 9.22183 0.707938 1.4133 7.1006 +3 1 1 55 3.27 290 0 0 0.009386 -0.00430793 -0.00430793 0 0 0 269.55 -2.54824e-05 -2.54824e-05 0 0 0 9.16483 0.65093 1.4133 7.1006 +3 1 1 56 3.275 290 0 0 0.009198 -0.00425153 -0.00425153 0 0 0 243.23 -2.54824e-05 -2.54824e-05 0 0 0 9.11662 0.602728 1.4133 7.1006 +3 1 1 57 3.28 290 0 0 0.009002 -0.00419273 -0.00419273 0 0 0 215.79 -2.54824e-05 -2.54824e-05 0 0 0 9.07164 0.557744 1.4133 7.1006 +3 1 1 58 3.285 290 0 0 0.008811 -0.00413543 -0.00413543 0 0 0 189.05 -2.54824e-05 -2.54824e-05 0 0 0 9.03298 0.519082 1.4133 7.1006 +3 1 1 59 3.29 290 0 0 0.008615 -0.00407663 -0.00407663 0 0 0 161.61 -2.54824e-05 -2.54824e-05 0 0 0 8.99861 0.484717 1.4133 7.1006 +3 1 1 60 3.295 290 0 0 0.008422 -0.00401873 -0.00401873 0 0 0 134.59 -2.54824e-05 -2.54824e-05 0 0 0 8.97003 0.456134 1.4133 7.1006 +3 1 1 61 3.3 290 0 0 0.008228 -0.00396053 -0.00396053 0 0 0 107.43 -2.54824e-05 -2.54824e-05 0 0 0 8.94655 0.432658 1.4133 7.1006 +3 1 1 62 3.305 290 0 0 0.00804 -0.00390335 -0.00390335 0 0 0 81.6576 -2.54864e-05 -2.54864e-05 0 0 0 8.92878 0.413648 1.41358 7.10156 +3 1 1 63 3.31 290 0 0 0.007845 -0.00383527 -0.00383527 0 0 0 61.0614 -2.56862e-05 -2.56862e-05 0 0 0 8.91486 0.384796 1.41696 7.11311 +3 1 1 64 3.315 290 0 0 0.007658 -0.00376905 -0.00376905 0 0 0 41.9677 -2.59413e-05 -2.59413e-05 0 0 0 8.90523 0.360894 1.42054 7.1238 +3 1 1 65 3.32 290 0 0 0.007463 -0.00369888 -0.00369888 0 0 0 22.8311 -2.63911e-05 -2.63911e-05 0 0 0 8.89891 0.339327 1.42467 7.13492 +3 1 1 66 3.325 290 0 0 0.007272 -0.00362889 -0.00362889 0 0 0 4.97989 -2.69954e-05 -2.69954e-05 0 0 0 8.89626 0.320872 1.42917 7.14621 +3 1 1 67 3.33 290 0 0 0.007075 -0.0035552 -0.0035552 0 0 0 -12.3923 -2.69925e-05 -2.69925e-05 0 0 0 8.89699 0.303909 1.43435 7.15873 +3 1 1 68 3.335 290 0 0 0.006905 -0.00349021 -0.00349021 0 0 0 -26.3941 -2.76681e-05 -2.76681e-05 0 0 0 8.90028 0.290322 1.43933 7.17063 +3 1 1 69 3.34 290 0 0 0.006742 -0.00342659 -0.00342659 0 0 0 -38.9134 -2.83245e-05 -2.83245e-05 0 0 0 8.90561 0.277816 1.44457 7.18322 +3 1 1 70 3.345 290 0 0 0.006546 -0.00334844 -0.00334844 0 0 0 -52.8057 -2.83195e-05 -2.83195e-05 0 0 0 8.91459 0.263137 1.45148 7.19997 +3 1 1 71 3.35 290 0 0 0.006346 -0.00326671 -0.00326671 0 0 0 -65.6 -2.83148e-05 -2.83148e-05 0 0 0 8.92644 0.248113 1.45926 7.21906 +3 1 1 72 3.355 290 0 0 0.006126 -0.00317467 -0.00317467 0 0 0 -78.1692 -2.83099e-05 -2.83099e-05 0 0 0 8.94225 0.231474 1.46861 7.24217 +3 1 1 73 3.36 290 0 0 0.00591 -0.00308231 -0.00308231 0 0 0 -89.1142 -2.8308e-05 -2.8308e-05 0 0 0 8.96032 0.215169 1.47853 7.26662 +3 1 1 74 3.365 290 0 0 0.005677 -0.00298093 -0.00298093 0 0 0 -99.7009 -2.87471e-05 -2.87471e-05 0 0 0 8.98231 0.198224 1.4899 7.29419 +3 1 1 75 3.37 290 0 0 0.005433 -0.0028733 -0.0028733 0 0 0 -109.759 -2.89348e-05 -2.89348e-05 0 0 0 9.00787 0.18184 1.50238 7.32365 +3 1 1 76 3.375 290 0 0 0.005204 -0.00277129 -0.00277129 0 0 0 -118.501 -2.89836e-05 -2.89836e-05 0 0 0 9.034 0.16823 1.51451 7.35127 +3 1 1 77 3.38 290 0 0 0.004997 -0.00267849 -0.00267849 0 0 0 -125.992 -2.89966e-05 -2.89966e-05 0 0 0 9.05931 0.157677 1.52572 7.37591 +3 1 1 78 3.385 290 0 0 0.004791 -0.00258574 -0.00258574 0 0 0 -133.167 -2.90029e-05 -2.90029e-05 0 0 0 9.086 0.148939 1.53706 7.4 +3 1 1 79 3.39 290 0 0 0.00459 -0.00249493 -0.00249493 0 0 0 -139.95 -2.90062e-05 -2.90062e-05 0 0 0 9.11345 0.142126 1.54828 7.42304 +3 1 1 80 3.395 290 0 0 0.004387 -0.00240296 -0.00240296 0 0 0 -146.62 -2.90085e-05 -2.90085e-05 0 0 0 9.14254 0.136931 1.55975 7.44585 +3 1 1 81 3.4 290 0 0 0.004184 -0.00231075 -0.00231075 0 0 0 -153.128 -2.90103e-05 -2.90103e-05 0 0 0 9.17296 0.133373 1.57134 7.46824 +3 1 1 82 3.405 290 0 0 0.003983 -0.00221925 -0.00221925 0 0 0 -159.425 -2.90117e-05 -2.90117e-05 0 0 0 9.20437 0.131392 1.58294 7.49004 +3 1 1 83 3.41 290 0 0 0.003784 -0.00212846 -0.00212846 0 0 0 -165.525 -2.90128e-05 -2.90128e-05 0 0 0 9.23671 0.130864 1.59453 7.51131 +3 1 1 84 3.415 290 0 0 0.00358 -0.00203521 -0.00203521 0 0 0 -171.646 -2.9014e-05 -2.9014e-05 0 0 0 9.2711 0.131721 1.60653 7.53285 +3 1 1 85 3.42 290 0 0 0.003381 -0.00194406 -0.00194406 0 0 0 -177.49 -2.9015e-05 -2.9015e-05 0 0 0 9.30584 0.13384 1.61834 7.55366 +3 1 1 86 3.425 290 0 0 0.003179 -0.00185135 -0.00185135 0 0 0 -183.297 -2.9016e-05 -2.9016e-05 0 0 0 9.34228 0.137204 1.63043 7.57464 +3 1 1 87 3.43 290 0 0 0.002979 -0.00175939 -0.00175939 0 0 0 -188.925 -2.90169e-05 -2.90169e-05 0 0 0 9.3795 0.141661 1.64251 7.59532 +3 1 1 88 3.435 290 0 0 0.002775 -0.00166542 -0.00166542 0 0 0 -194.544 -2.90178e-05 -2.90178e-05 0 0 0 9.41861 0.147282 1.65495 7.61638 +3 1 1 89 3.44 290 0 0 0.002575 -0.00157312 -0.00157312 0 0 0 -199.933 -2.90186e-05 -2.90186e-05 0 0 0 9.45806 0.153772 1.66725 7.63704 +3 1 1 90 3.445 290 0 0 0.002369 -0.00147788 -0.00147788 0 0 0 -205.364 -2.90195e-05 -2.90195e-05 0 0 0 9.4998 0.161397 1.68002 7.65839 +3 1 1 91 3.45 290 0 0 0.002174 -0.00138756 -0.00138756 0 0 0 -210.392 -2.90202e-05 -2.90202e-05 0 0 0 9.54034 0.169422 1.69222 7.6787 +3 1 1 92 3.455 290 0 0 0.001967 -0.00129152 -0.00129152 0 0 0 -215.615 -2.9021e-05 -2.9021e-05 0 0 0 9.58443 0.17874 1.70528 7.70041 +3 1 1 93 3.46 290 0 0 0.001768 -0.00119903 -0.00119903 0 0 0 -220.522 -2.90217e-05 -2.90217e-05 0 0 0 9.62783 0.188403 1.71794 7.72149 +3 1 1 94 3.465 290 0 0 0.001568 -0.00110592 -0.00110592 0 0 0 -225.345 -2.90224e-05 -2.90224e-05 0 0 0 9.67241 0.198754 1.73076 7.7429 +3 1 1 95 3.47 290 0 0 0.001366 -0.00101173 -0.00101173 0 0 0 -230.107 -2.9023e-05 -2.9023e-05 0 0 0 9.71842 0.209803 1.74383 7.76479 +3 1 1 96 3.475 290 0 0 0.001164 -0.000917374 -0.000917374 0 0 0 -234.762 -2.90236e-05 -2.90236e-05 0 0 0 9.76537 0.221391 1.75699 7.78698 +3 1 1 97 3.48 290 0 0 0.0009631 -0.000823385 -0.000823385 0 0 0 -239.285 -2.90242e-05 -2.90242e-05 0 0 0 9.81298 0.233398 1.77019 7.80939 +3 1 1 98 3.485 290 0 0 0.0007598 -0.000728124 -0.000728124 0 0 0 -243.756 -2.90248e-05 -2.90248e-05 0 0 0 9.86209 0.245988 1.78366 7.83244 +3 1 1 99 3.49 290 0 0 0.0005588 -0.000633792 -0.000633792 0 0 0 -248.075 -2.90253e-05 -2.90253e-05 0 0 0 9.91152 0.258821 1.79707 7.85562 +3 1 1 100 3.495 290 0 0 0.0003567 -0.0005388 -0.0005388 0 0 0 -252.315 -2.90258e-05 -2.90258e-05 0 0 0 9.96208 0.272066 1.81067 7.87935 +3 1 1 101 3.5 290 0 0 0.000161 -0.00044668 -0.00044668 0 0 0 -256.326 -2.90263e-05 -2.90263e-05 0 0 0 10.0119 0.285174 1.82393 7.90274 +3 1 1 102 3.505 290 0 0 -4.58e-05 -0.000349193 -0.000349193 0 0 0 -260.465 -2.90268e-05 -2.90268e-05 0 0 0 10.0653 0.299294 1.83805 7.92794 +3 1 1 103 3.51 290 0 0 -0.000251 -0.000252318 -0.000252318 0 0 0 -264.473 -2.90272e-05 -2.90272e-05 0 0 0 10.1191 0.313532 1.85217 7.95344 +3 1 1 104 3.515 290 0 0 -0.000473 -0.000147358 -0.000147358 0 0 0 -268.701 -2.90278e-05 -2.90278e-05 0 0 0 10.1783 0.329155 1.86757 7.98161 +3 1 1 105 3.52 290 0 0 -0.0006533 -6.19897e-05 -6.19897e-05 0 0 0 -272.048 -2.90281e-05 -2.90281e-05 0 0 0 10.2271 0.341957 1.88016 8.00496 +3 1 1 106 3.525 290 0 0 -0.0008338 2.35771e-05 2.35771e-05 0 0 0 -275.326 -2.90283e-05 -2.90283e-05 0 0 0 10.2765 0.354866 1.89285 8.02876 +3 1 1 107 3.53 290 0 0 -0.001036 0.000119548 0.000119548 0 0 0 -278.916 -2.90286e-05 -2.90286e-05 0 0 0 10.3325 0.369421 1.90716 8.05593 +3 1 1 108 3.535 290 0 0 -0.001266 0.000228862 0.000228862 0 0 0 -282.897 -2.90292e-05 -2.90292e-05 0 0 0 10.3971 0.386065 1.92356 8.08749 +3 1 1 109 3.54 290 0 0 -0.001442 0.000312625 0.000312625 0 0 0 -285.862 -2.90293e-05 -2.90293e-05 0 0 0 10.4472 0.398806 1.9362 8.11216 +3 1 1 110 3.545 290 0 0 -0.001663 0.000417927 0.000417927 0 0 0 -289.501 -2.90298e-05 -2.90298e-05 0 0 0 10.5107 0.414838 1.95218 8.14373 +3 1 1 111 3.55 290 0 0 -0.001853 0.000508575 0.000508575 0 0 0 -292.548 -2.903e-05 -2.903e-05 0 0 0 10.566 0.428592 1.96601 8.17144 +3 1 1 112 3.555 290 0 0 -0.002054 0.00060458 0.00060458 0 0 0 -295.694 -2.90302e-05 -2.90302e-05 0 0 0 10.6252 0.443112 1.98074 8.20131 +3 1 1 113 3.56 290 0 0 -0.002259 0.00070261 0.00070261 0 0 0 -298.823 -2.90305e-05 -2.90305e-05 0 0 0 10.6861 0.457866 1.99586 8.23238 +3 1 1 114 3.565 290 0 0 -0.002461 0.000799317 0.000799317 0 0 0 -301.828 -2.90307e-05 -2.90307e-05 0 0 0 10.7468 0.472327 2.01085 8.26358 +3 1 1 115 3.57 290 0 0 -0.002659 0.000894215 0.000894215 0 0 0 -304.7 -2.90309e-05 -2.90309e-05 0 0 0 10.8068 0.48641 2.02565 8.29475 +3 1 1 116 3.575 290 0 0 -0.002862 0.000991613 0.000991613 0 0 0 -307.571 -2.90311e-05 -2.90311e-05 0 0 0 10.869 0.500746 2.04091 8.3273 +3 1 1 117 3.58 290 0 0 -0.003061 0.00108719 0.00108719 0 0 0 -310.314 -2.90312e-05 -2.90312e-05 0 0 0 10.9304 0.514678 2.05597 8.35979 +3 1 1 118 3.585 290 0 0 -0.003257 0.00118143 0.00118143 0 0 0 -312.949 -2.90314e-05 -2.90314e-05 0 0 0 10.9915 0.528272 2.07089 8.39235 +3 1 1 119 3.59 290 0 0 -0.003458 0.00127817 0.00127817 0 0 0 -315.584 -2.90315e-05 -2.90315e-05 0 0 0 11.0547 0.542072 2.08628 8.42633 +3 1 1 120 3.595 290 0 0 -0.003656 0.00137355 0.00137355 0 0 0 -318.114 -2.90317e-05 -2.90317e-05 0 0 0 11.1174 0.555514 2.10154 8.46036 +3 1 1 121 3.6 290 0 0 -0.003869 0.00147626 0.00147626 0 0 0 -320.767 -2.90318e-05 -2.90318e-05 0 0 0 11.1855 0.569804 2.11805 8.4976 +3 1 1 122 3.605 290 0 0 -0.004064 0.00157038 0.00157038 0 0 0 -323.131 -2.90319e-05 -2.90319e-05 0 0 0 11.2482 0.582708 2.13326 8.53227 +3 1 1 123 3.61 290 0 0 -0.004268 0.00166894 0.00166894 0 0 0 -325.543 -2.9032e-05 -2.9032e-05 0 0 0 11.3144 0.59603 2.14926 8.56912 +3 1 1 124 3.615 290 0 0 -0.004478 0.00177048 0.00177048 0 0 0 -327.961 -2.90322e-05 -2.90322e-05 0 0 0 11.383 0.609545 2.16582 8.60765 +3 1 1 125 3.62 290 0 0 -0.004672 0.00186438 0.00186438 0 0 0 -330.137 -2.84262e-05 -2.84262e-05 0 0 0 11.4469 0.621835 2.18122 8.6438 +3 1 1 126 3.625 290 0 0 -0.004881 0.00196561 0.00196561 0 0 0 -332.422 -2.84263e-05 -2.84263e-05 0 0 0 11.5161 0.634876 2.1979 8.68332 +3 1 1 127 3.63 290 0 0 -0.00507 0.00205724 0.00205724 0 0 0 -334.434 -2.7921e-05 -2.7921e-05 0 0 0 11.5791 0.646472 2.21306 8.71958 +3 1 1 128 3.635 290 0 0 -0.005275 0.00215669 0.00215669 0 0 0 -336.564 -2.73075e-05 -2.73075e-05 0 0 0 11.6479 0.65885 2.2296 8.75944 +3 1 1 129 3.64 290 0 0 -0.005476 0.00225429 0.00225429 0 0 0 -338.598 -2.67595e-05 -2.67595e-05 0 0 0 11.7157 0.670773 2.2459 8.79907 +3 1 1 130 3.645 290 0 0 -0.005679 0.00235293 0.00235293 0 0 0 -340.6 -2.62242e-05 -2.62242e-05 0 0 0 11.7847 0.682601 2.26245 8.83963 +3 1 1 131 3.65 290 0 0 -0.005881 0.00245116 0.00245116 0 0 0 -342.54 -2.57246e-05 -2.57246e-05 0 0 0 11.8537 0.694154 2.27901 8.88051 +3 1 1 132 3.655 290 0 0 -0.006082 0.00254897 0.00254897 0 0 0 -344.422 -2.52583e-05 -2.52583e-05 0 0 0 11.9227 0.705433 2.29558 8.92171 +3 1 1 133 3.66 290 0 0 -0.006282 0.00264636 0.00264636 0 0 0 -346.247 -2.48234e-05 -2.48234e-05 0 0 0 11.9918 0.716441 2.31214 8.9632 +3 1 1 134 3.665 290 0 0 -0.006482 0.00274382 0.00274382 0 0 0 -348.025 -2.44115e-05 -2.44115e-05 0 0 0 12.0612 0.727235 2.32879 9.00519 +3 1 1 135 3.67 290 0 0 -0.006687 0.00284378 0.00284378 0 0 0 -349.802 -2.39918e-05 -2.39918e-05 0 0 0 12.1327 0.738078 2.34595 9.04872 +3 1 1 136 3.675 290 0 0 -0.006887 0.00294137 0.00294137 0 0 0 -351.491 -2.36235e-05 -2.36235e-05 0 0 0 12.2029 0.748438 2.36276 9.09167 +3 1 1 137 3.68 290 0 0 -0.00709 0.00304048 0.00304048 0 0 0 -353.162 -2.32593e-05 -2.32593e-05 0 0 0 12.2744 0.758737 2.37992 9.13573 +3 1 1 138 3.685 290 0 0 -0.00729 0.00313819 0.00313819 0 0 0 -354.766 -2.29303e-05 -2.29303e-05 0 0 0 12.3452 0.768668 2.3969 9.17961 +3 1 1 139 3.69 290 0 0 -0.007495 0.0032384 0.0032384 0 0 0 -356.369 -2.25955e-05 -2.25955e-05 0 0 0 12.4181 0.778631 2.4144 9.22505 +3 1 1 140 3.695 290 0 0 -0.007697 0.0033372 0.0033372 0 0 0 -357.909 -2.22933e-05 -2.22933e-05 0 0 0 12.4902 0.788232 2.43172 9.27027 +3 1 1 141 3.7 290 0 0 -0.007895 0.0034341 0.0034341 0 0 0 -359.38 -2.20246e-05 -2.20246e-05 0 0 0 12.5612 0.797436 2.44878 9.31502 +3 1 1 142 3.705 290 0 0 -0.008104 0.00353644 0.00353644 0 0 0 -360.894 -2.17262e-05 -2.17262e-05 0 0 0 12.6365 0.806937 2.46687 9.36269 +3 1 1 143 3.71 290 0 0 -0.008306 0.0036354 0.0036354 0 0 0 -362.32 -2.14726e-05 -2.14726e-05 0 0 0 12.7095 0.815907 2.48443 9.4092 +3 1 1 144 3.715 290 0 0 -0.008502 0.00373147 0.00373147 0 0 0 -363.67 -2.12539e-05 -2.12539e-05 0 0 0 12.7807 0.824413 2.50156 9.45472 +3 1 1 145 3.72 290 0 0 -0.008711 0.00383397 0.00383397 0 0 0 -365.073 -2.10038e-05 -2.10038e-05 0 0 0 12.8568 0.833279 2.5199 9.50367 +3 1 1 146 3.725 290 0 0 -0.008908 0.00393062 0.00393062 0 0 0 -366.363 -2.08067e-05 -2.08067e-05 0 0 0 12.9289 0.841436 2.53726 9.55019 +3 1 1 147 3.73 290 0 0 -0.009117 0.00403322 0.00403322 0 0 0 -367.699 -2.05847e-05 -2.05847e-05 0 0 0 13.0056 0.849891 2.55577 9.59994 +3 1 1 148 3.735 290 0 0 -0.00931 0.004128 0.004128 0 0 0 -368.901 -2.04203e-05 -2.04203e-05 0 0 0 13.0767 0.85751 2.57293 9.64624 +3 1 1 149 3.74 290 0 0 -0.009518 0.00423019 0.00423019 0 0 0 -370.167 -2.02261e-05 -2.02261e-05 0 0 0 13.1535 0.865533 2.59151 9.6965 +3 1 1 150 3.745 290 0 0 -0.009719 0.00432899 0.00432899 0 0 0 -371.359 -2.00614e-05 -2.00614e-05 0 0 0 13.2281 0.873096 2.60954 9.74543 +3 1 1 151 3.75 290 0 0 -0.009925 0.00443028 0.00443028 0 0 0 -372.552 -1.98945e-05 -1.98945e-05 0 0 0 13.3047 0.88066 2.62809 9.79594 +3 1 1 152 3.755 290 0 0 -0.009932 0.00443373 0.00443373 0 0 0 -372.592 -1.98945e-05 -1.98945e-05 0 0 0 13.3073 0.880912 2.62873 9.79766 +3 1 1 153 3.76 290 0 0 -0.009694 0.00436233 0.00436233 0 0 0 -339.272 -1.98945e-05 -1.98945e-05 0 0 0 13.2226 0.7962 2.62873 9.79766 +3 1 1 154 3.765 290 0 0 -0.009514 0.00430833 0.00430833 0 0 0 -314.072 -1.98945e-05 -1.98945e-05 0 0 0 13.1638 0.737399 2.62873 9.79766 +3 1 1 155 3.77 290 0 0 -0.00933 0.00425313 0.00425313 0 0 0 -288.312 -1.98945e-05 -1.98945e-05 0 0 0 13.1084 0.68198 2.62873 9.79766 +3 1 1 156 3.775 290 0 0 -0.009136 0.00419493 0.00419493 0 0 0 -261.152 -1.98945e-05 -1.98945e-05 0 0 0 13.0551 0.628682 2.62873 9.79766 +3 1 1 157 3.78 290 0 0 -0.008945 0.00413763 0.00413763 0 0 0 -234.412 -1.98945e-05 -1.98945e-05 0 0 0 13.0077 0.581356 2.62873 9.79766 +3 1 1 158 3.785 290 0 0 -0.008755 0.00408063 0.00408063 0 0 0 -207.812 -1.98945e-05 -1.98945e-05 0 0 0 12.9657 0.539344 2.62873 9.79766 +3 1 1 159 3.79 290 0 0 -0.008566 0.00402393 0.00402393 0 0 0 -181.352 -1.98945e-05 -1.98945e-05 0 0 0 12.929 0.502568 2.62873 9.79766 +3 1 1 160 3.795 290 0 0 -0.008376 0.00396693 0.00396693 0 0 0 -154.752 -1.98945e-05 -1.98945e-05 0 0 0 12.897 0.470639 2.62873 9.79766 +3 1 1 161 3.8 290 0 0 -0.008206 0.00391593 0.00391593 0 0 0 -130.952 -1.98945e-05 -1.98945e-05 0 0 0 12.8727 0.446354 2.62873 9.79766 +3 1 1 162 3.805 290 0 0 -0.008016 0.00385893 0.00385893 0 0 0 -104.352 -1.98945e-05 -1.98945e-05 0 0 0 12.8504 0.424 2.62873 9.79766 +3 1 1 163 3.81 290 0 0 -0.007818 0.00379953 0.00379953 0 0 0 -76.6317 -1.98945e-05 -1.98945e-05 0 0 0 12.8325 0.406083 2.62873 9.79766 +3 1 1 164 3.815 290 0 0 -0.007621 0.00373715 0.00373715 0 0 0 -51.344 -1.95914e-05 -1.95914e-05 0 0 0 12.8199 0.387965 2.63027 9.80163 +3 1 1 165 3.82 290 0 0 -0.007428 0.00366952 0.00366952 0 0 0 -31.1333 -1.93764e-05 -1.93764e-05 0 0 0 12.8119 0.364231 2.63485 9.81282 +3 1 1 166 3.825 290 0 0 -0.007235 0.00360089 0.00360089 0 0 0 -11.6291 -1.90508e-05 -1.90508e-05 0 0 0 12.8078 0.344166 2.63991 9.8237 +3 1 1 167 3.83 290 0 0 -0.007034 0.00352818 0.00352818 0 0 0 7.82478 -1.84753e-05 -1.84753e-05 0 0 0 12.8074 0.326512 2.64577 9.83512 +3 1 1 168 3.835 290 0 0 -0.006843 0.00345772 0.00345772 0 0 0 25.3566 -1.77939e-05 -1.77939e-05 0 0 0 12.8106 0.312068 2.65198 9.84652 +3 1 1 169 3.84 290 0 0 -0.006644 0.00338275 0.00338275 0 0 0 42.5254 -1.77974e-05 -1.77974e-05 0 0 0 12.8173 0.298709 2.6592 9.85941 +3 1 1 170 3.845 290 0 0 -0.006447 0.00330676 0.00330676 0 0 0 58.2794 -1.7802e-05 -1.7802e-05 0 0 0 12.8272 0.286405 2.6672 9.87364 +3 1 1 171 3.85 290 0 0 -0.006255 0.00323085 0.00323085 0 0 0 72.3477 -1.78066e-05 -1.78066e-05 0 0 0 12.8398 0.274656 2.67588 9.88925 +3 1 1 172 3.855 290 0 0 -0.006061 0.00315228 0.00315228 0 0 0 85.2469 -1.78111e-05 -1.78111e-05 0 0 0 12.8551 0.262612 2.68555 9.90691 +3 1 1 173 3.86 290 0 0 -0.005869 0.00307269 0.00307269 0 0 0 96.7357 -1.78142e-05 -1.78142e-05 0 0 0 12.8725 0.250328 2.69601 9.9262 +3 1 1 174 3.865 290 0 0 -0.005716 0.00300801 0.00300801 0 0 0 105.009 -1.7543e-05 -1.7543e-05 0 0 0 12.888 0.24025 2.70496 9.94277 +3 1 1 175 3.87 290 0 0 -0.005559 0.00294069 0.00294069 0 0 0 112.835 -1.73517e-05 -1.73517e-05 0 0 0 12.9051 0.229924 2.71461 9.96054 +3 1 1 176 3.875 290 0 0 -0.00536 0.00285425 0.00285425 0 0 0 121.978 -1.70818e-05 -1.70818e-05 0 0 0 12.9284 0.217225 2.7274 9.98382 +3 1 1 177 3.88 290 0 0 -0.005148 0.00276101 0.00276101 0 0 0 130.907 -1.69336e-05 -1.69336e-05 0 0 0 12.9552 0.20449 2.7416 10.0092 +3 1 1 178 3.885 290 0 0 -0.004948 0.00267219 0.00267219 0 0 0 138.736 -1.68876e-05 -1.68876e-05 0 0 0 12.9822 0.193589 2.75545 10.0332 +3 1 1 179 3.89 290 0 0 -0.004718 0.00256935 0.00256935 0 0 0 147.245 -1.68548e-05 -1.68548e-05 0 0 0 13.0151 0.182782 2.77174 10.0606 +3 1 1 180 3.895 290 0 0 -0.004497 0.00246997 0.00246997 0 0 0 155.031 -1.68432e-05 -1.68432e-05 0 0 0 13.0485 0.17431 2.78771 10.0865 +3 1 1 181 3.9 290 0 0 -0.00426 0.00236296 0.00236296 0 0 0 163.071 -1.68354e-05 -1.68354e-05 0 0 0 13.0862 0.167406 2.8051 10.1137 +3 1 1 182 3.905 290 0 0 -0.004032 0.00225965 0.00225965 0 0 0 170.555 -1.68315e-05 -1.68315e-05 0 0 0 13.1242 0.162884 2.82205 10.1393 +3 1 1 183 3.91 290 0 0 -0.003822 0.00216423 0.00216423 0 0 0 177.26 -1.68294e-05 -1.68294e-05 0 0 0 13.1608 0.160503 2.83783 10.1624 +3 1 1 184 3.915 290 0 0 -0.003625 0.0020745 0.0020745 0 0 0 183.403 -1.68281e-05 -1.68281e-05 0 0 0 13.1963 0.159755 2.85278 10.1837 +3 1 1 185 3.92 290 0 0 -0.00342 0.00198094 0.00198094 0 0 0 189.657 -1.68268e-05 -1.68268e-05 0 0 0 13.2345 0.160425 2.86846 10.2056 +3 1 1 186 3.925 290 0 0 -0.003221 0.00188992 0.00188992 0 0 0 195.596 -1.68257e-05 -1.68257e-05 0 0 0 13.2728 0.162409 2.88382 10.2266 +3 1 1 187 3.93 290 0 0 -0.003025 0.0018001 0.0018001 0 0 0 201.323 -1.68248e-05 -1.68248e-05 0 0 0 13.3117 0.16557 2.89907 10.2471 +3 1 1 188 3.935 290 0 0 -0.002824 0.00170782 0.00170782 0 0 0 207.074 -1.68239e-05 -1.68239e-05 0 0 0 13.3528 0.169977 2.91483 10.268 +3 1 1 189 3.94 290 0 0 -0.002622 0.0016149 0.0016149 0 0 0 212.731 -1.68229e-05 -1.68229e-05 0 0 0 13.3952 0.175517 2.93079 10.2889 +3 1 1 190 3.945 290 0 0 -0.002429 0.00152596 0.00152596 0 0 0 218.021 -1.68222e-05 -1.68222e-05 0 0 0 13.4368 0.181776 2.94617 10.3088 +3 1 1 191 3.95 290 0 0 -0.002227 0.0014327 0.0014327 0 0 0 223.442 -1.68213e-05 -1.68213e-05 0 0 0 13.4813 0.189271 2.96238 10.3297 +3 1 1 192 3.955 290 0 0 -0.002033 0.00134298 0.00134298 0 0 0 228.536 -1.68206e-05 -1.68206e-05 0 0 0 13.5252 0.197307 2.97806 10.3498 +3 1 1 193 3.96 290 0 0 -0.001832 0.00124986 0.00124986 0 0 0 233.701 -1.68198e-05 -1.68198e-05 0 0 0 13.5716 0.206436 2.99443 10.3708 +3 1 1 194 3.965 290 0 0 -0.001634 0.00115797 0.00115797 0 0 0 238.678 -1.68191e-05 -1.68191e-05 0 0 0 13.6184 0.216161 3.01068 10.3916 +3 1 1 195 3.97 290 0 0 -0.001432 0.00106406 0.00106406 0 0 0 243.643 -1.68184e-05 -1.68184e-05 0 0 0 13.6671 0.226772 3.02738 10.413 +3 1 1 196 3.975 290 0 0 -0.001236 0.000972791 0.000972791 0 0 0 248.354 -1.68178e-05 -1.68178e-05 0 0 0 13.7153 0.237673 3.0437 10.434 +3 1 1 197 3.98 290 0 0 -0.001033 0.000878106 0.000878106 0 0 0 253.124 -1.68171e-05 -1.68171e-05 0 0 0 13.7662 0.249538 3.06072 10.456 +3 1 1 198 3.985 290 0 0 -0.0008346 0.000785415 0.000785415 0 0 0 257.68 -1.68166e-05 -1.68166e-05 0 0 0 13.8169 0.261641 3.07747 10.4778 +3 1 1 199 3.99 290 0 0 -0.0006298 0.00068958 0.00068958 0 0 0 262.276 -1.68159e-05 -1.68159e-05 0 0 0 13.8702 0.274611 3.09489 10.5007 +3 1 1 200 3.995 290 0 0 -0.000429 0.000595467 0.000595467 0 0 0 266.677 -1.68154e-05 -1.68154e-05 0 0 0 13.9233 0.287743 3.11208 10.5234 +3 1 1 201 4 290 0 0 -0.000228 0.000501114 0.000501114 0 0 0 270.98 -1.68148e-05 -1.68148e-05 0 0 0 13.9773 0.301254 3.12941 10.5466 diff --git a/testBin/Umats/EPCHG/comparison/simul_1.txt b/testBin/Umats/EPCHG/comparison/simul_1.txt index fc4f6d756..cfdb401f8 100644 --- a/testBin/Umats/EPCHG/comparison/simul_1.txt +++ b/testBin/Umats/EPCHG/comparison/simul_1.txt @@ -1,501 +1,501 @@ -1 1 1 1 0.01 290 0 0 0.0001 -3e-05 -3e-05 0 0 0 14 -8.88178e-16 -1.33227e-15 0 0 0 0.0007 0.0007 0 0 -1 1 1 2 0.02 290 0 0 0.0002 -6e-05 -6e-05 0 0 0 28 -1.77636e-15 -2.66454e-15 0 0 0 0.0028 0.0028 0 0 -1 1 1 3 0.03 290 0 0 0.0003 -9e-05 -9e-05 0 0 0 42 -3.55271e-15 -5.32907e-15 0 0 0 0.0063 0.0063 0 0 -1 1 1 4 0.04 290 0 0 0.0004 -0.00012 -0.00012 0 0 0 56 -3.55271e-15 -5.32907e-15 0 0 0 0.0112 0.0112 0 0 -1 1 1 5 0.05 290 0 0 0.0005 -0.00015 -0.00015 0 0 0 70 -3.55271e-15 -7.10543e-15 0 0 0 0.0175 0.0175 0 0 -1 1 1 6 0.06 290 0 0 0.0006 -0.00018 -0.00018 0 0 0 84 -7.10543e-15 -1.06581e-14 0 0 0 0.0252 0.0252 0 0 -1 1 1 7 0.07 290 0 0 0.0007 -0.00021 -0.00021 0 0 0 98 -1.42109e-14 -1.06581e-14 0 0 0 0.0343 0.0343 0 0 -1 1 1 8 0.08 290 0 0 0.0008 -0.00024 -0.00024 0 0 0 112 -2.13163e-14 -2.4869e-14 0 0 0 0.0448 0.0448 0 0 -1 1 1 9 0.09 290 0 0 0.0009 -0.00027 -0.00027 0 0 0 126 -1.42109e-14 -1.42109e-14 0 0 0 0.0567 0.0567 0 0 -1 1 1 10 0.1 290 0 0 0.001 -0.0003 -0.0003 0 0 0 140 -2.13163e-14 -1.77636e-14 0 0 0 0.07 0.07 0 0 -1 1 1 11 0.11 290 0 0 0.0011 -0.00033 -0.00033 0 0 0 154 -7.10543e-15 -3.55271e-15 0 0 0 0.0847 0.0847 0 0 -1 1 1 12 0.12 290 0 0 0.0012 -0.00036 -0.00036 0 0 0 168 0 3.55271e-15 0 0 0 0.1008 0.1008 0 0 -1 1 1 13 0.13 290 0 0 0.0013 -0.00039 -0.00039 0 0 0 182 1.42109e-14 1.42109e-14 0 0 0 0.1183 0.1183 0 0 -1 1 1 14 0.14 290 0 0 0.0014 -0.00042 -0.00042 0 0 0 196 2.84217e-14 2.84217e-14 0 0 0 0.1372 0.1372 0 0 -1 1 1 15 0.15 290 0 0 0.0015 -0.00045 -0.00045 0 0 0 210 4.26326e-14 3.55271e-14 0 0 0 0.1575 0.1575 0 0 -1 1 1 16 0.16 290 0 0 0.0016 -0.00048 -0.00048 0 0 0 224 7.10543e-14 6.39488e-14 0 0 0 0.1792 0.1792 0 0 -1 1 1 17 0.17 290 0 0 0.0017 -0.00051 -0.00051 0 0 0 238 5.68434e-14 6.39488e-14 0 0 0 0.2023 0.2023 0 0 -1 1 1 18 0.18 290 0 0 0.0018 -0.00054 -0.00054 0 0 0 252 8.52651e-14 9.23706e-14 0 0 0 0.2268 0.2268 0 0 -1 1 1 19 0.19 290 0 0 0.0019 -0.00057 -0.00057 0 0 0 266 8.52651e-14 7.81597e-14 0 0 0 0.2527 0.2527 0 0 -1 1 1 20 0.2 290 0 0 0.002 -0.0006 -0.0006 0 0 0 280 1.13687e-13 1.06581e-13 0 0 0 0.28 0.28 0 0 -1 1 1 21 0.21 290 0 0 0.0021 -0.00063 -0.00063 0 0 0 294 8.52651e-14 7.81597e-14 0 0 0 0.3087 0.3087 0 0 -1 1 1 22 0.22 290 0 0 0.0022 -0.00066 -0.00066 0 0 0 308 8.52651e-14 7.10543e-14 0 0 0 0.3388 0.3388 0 0 -1 1 1 23 0.23 290 0 0 0.0023 -0.00069 -0.00069 0 0 0 322 5.68434e-14 7.10543e-14 0 0 0 0.3703 0.3703 0 0 -1 1 1 24 0.24 290 0 0 0.0024 -0.00072 -0.00072 0 0 0 336 8.52651e-14 7.10543e-14 0 0 0 0.4032 0.4032 0 0 -1 1 1 25 0.25 290 0 0 0.0025 -0.00075 -0.00075 0 0 0 350 5.68434e-14 6.39488e-14 0 0 0 0.4375 0.4375 0 0 -1 1 1 26 0.26 290 0 0 0.0026 -0.00078 -0.00078 0 0 0 364 8.52651e-14 6.39488e-14 0 0 0 0.4732 0.4732 0 0 -1 1 1 27 0.27 290 0 0 0.0027 -0.00081 -0.00081 0 0 0 378 5.68434e-14 5.68434e-14 0 0 0 0.5103 0.5103 0 0 -1 1 1 28 0.28 290 0 0 0.0028 -0.00084 -0.00084 0 0 0 392 5.68434e-14 5.68434e-14 0 0 0 0.5488 0.5488 0 0 -1 1 1 29 0.29 290 0 0 0.0029 -0.00087 -0.00087 0 0 0 406 5.68434e-14 5.68434e-14 0 0 0 0.5887 0.5887 0 0 -1 1 1 30 0.3 290 0 0 0.003 -0.0009 -0.0009 0 0 0 420 2.84217e-14 1.42109e-14 0 0 0 0.63 0.63 0 0 -1 1 1 31 0.31 290 0 0 0.0031 -0.00093 -0.00093 0 0 0 434 2.84217e-14 1.42109e-14 0 0 0 0.6727 0.6727 0 0 -1 1 1 32 0.32 290 0 0 0.0032 -0.00096 -0.00096 0 0 0 448 2.84217e-14 1.42109e-14 0 0 0 0.7168 0.7168 0 0 -1 1 1 33 0.33 290 0 0 0.0033 -0.00099 -0.00099 0 0 0 462 2.84217e-14 0 0 0 0 0.7623 0.7623 0 0 -1 1 1 34 0.34 290 0 0 0.0034 -0.00102 -0.00102 0 0 0 476 -5.68434e-14 -4.26326e-14 0 0 0 0.8092 0.8092 0 0 -1 1 1 35 0.35 290 0 0 0.0035 -0.00105 -0.00105 0 0 0 490 -1.13687e-13 -1.13687e-13 0 0 0 0.8575 0.8575 0 0 -1 1 1 36 0.36 290 0 0 0.0036 -0.00108 -0.00108 0 0 0 504 -1.13687e-13 -1.13687e-13 0 0 0 0.9072 0.9072 0 0 -1 1 1 37 0.37 290 0 0 0.0037 -0.00111 -0.00111 0 0 0 518 -1.7053e-13 -1.7053e-13 0 0 0 0.9583 0.9583 0 0 -1 1 1 38 0.38 290 0 0 0.0038 -0.00114 -0.00114 0 0 0 532 -1.98952e-13 -1.84741e-13 0 0 0 1.0108 1.0108 0 0 -1 1 1 39 0.39 290 0 0 0.0039 -0.00117 -0.00117 0 0 0 546 -2.27374e-13 -2.41585e-13 0 0 0 1.0647 1.0647 0 0 -1 1 1 40 0.4 290 0 0 0.004 -0.0012 -0.0012 0 0 0 560 -2.27374e-13 -2.41585e-13 0 0 0 1.12 1.12 0 0 -1 1 1 41 0.41 290 0 0 0.0041 -0.00123 -0.00123 0 0 0 574 -2.55795e-13 -2.41585e-13 0 0 0 1.1767 1.1767 0 0 -1 1 1 42 0.42 290 0 0 0.0042 -0.00126 -0.00126 0 0 0 588 -2.55795e-13 -2.55795e-13 0 0 0 1.2348 1.2348 0 0 -1 1 1 43 0.43 290 0 0 0.0043 -0.00129 -0.00129 0 0 0 602 -2.55795e-13 -2.41585e-13 0 0 0 1.2943 1.2943 0 0 -1 1 1 44 0.44 290 0 0 0.0044 -0.00132 -0.00132 0 0 0 616 -2.84217e-13 -2.55795e-13 0 0 0 1.3552 1.3552 0 0 -1 1 1 45 0.45 290 0 0 0.0045 -0.00135482 -0.00135482 0 0 0 626.627 -1.5238e-09 -1.5238e-09 0 0 0 1.41733 1.40243 4.97808e-06 0.0149 -1 1 1 46 0.46 290 0 0 0.0046 -0.00139252 -0.00139252 0 0 0 635.234 7.48959e-08 7.48959e-08 0 0 0 1.48042 1.44155 3.36192e-05 0.0388455 -1 1 1 47 0.47 290 0 0 0.0047 -0.00143068 -0.00143068 0 0 0 643.522 1.63359e-07 1.63359e-07 0 0 0 1.54436 1.47997 9.17047e-05 0.0642986 -1 1 1 48 0.48 290 0 0 0.0048 -0.00146932 -0.00146932 0 0 0 651.474 2.63114e-07 2.63114e-07 0 0 0 1.60911 1.51754 0.000184311 0.0913907 -1 1 1 49 0.49 290 0 0 0.0049 -0.00150846 -0.00150846 0 0 0 659.075 3.7212e-07 3.7212e-07 0 0 0 1.67464 1.55408 0.000317091 0.12024 -1 1 1 50 0.5 290 0 0 0.005 -0.00154812 -0.00154812 0 0 0 666.316 4.86922e-07 4.86922e-07 0 0 0 1.74091 1.58947 0.000496226 0.150946 -1 1 1 51 0.51 290 0 0 0.0051 -0.0015883 -0.0015883 0 0 0 673.188 6.02832e-07 6.02832e-07 0 0 0 1.80788 1.62358 0.000728326 0.18358 -1 1 1 52 0.52 290 0 0 0.0052 -0.00162901 -0.00162901 0 0 0 679.693 7.14477e-07 7.14477e-07 0 0 0 1.87553 1.65632 0.00102028 0.218184 -1 1 1 53 0.53 290 0 0 0.0053 -0.00167024 -0.00167024 0 0 0 685.833 8.1665e-07 8.1665e-07 0 0 0 1.9438 1.68767 0.00137908 0.25476 -1 1 1 54 0.54 290 0 0 0.0054 -0.00171197 -0.00171197 0 0 0 691.62 9.0524e-07 9.0524e-07 0 0 0 2.01268 1.71759 0.00181158 0.293274 -1 1 1 55 0.55 290 0 0 0.0055 -0.00175418 -0.00175418 0 0 0 697.071 9.77921e-07 9.7792e-07 0 0 0 2.08211 1.74613 0.00232425 0.333655 -1 1 1 56 0.56 290 0 0 0.0056 -0.00179685 -0.00179685 0 0 0 702.207 1.03437e-06 1.03437e-06 0 0 0 2.15208 1.77336 0.00292303 0.375797 -1 1 1 57 0.57 290 0 0 0.0057 -0.00183992 -0.00183992 0 0 0 707.055 1.07597e-06 1.07597e-06 0 0 0 2.22254 1.79936 0.00361312 0.41957 -1 1 1 58 0.58 290 0 0 0.0058 -0.00188337 -0.00188337 0 0 0 711.642 1.10518e-06 1.10518e-06 0 0 0 2.29347 1.82425 0.00439889 0.464826 -1 1 1 59 0.59 290 0 0 0.0059 -0.00192715 -0.00192715 0 0 0 715.998 1.12483e-06 1.12483e-06 0 0 0 2.36486 1.84816 0.0052839 0.511408 -1 1 1 60 0.6 290 0 0 0.006 -0.00197121 -0.00197121 0 0 0 720.152 1.13757e-06 1.13757e-06 0 0 0 2.43666 1.87123 0.0062709 0.55916 -1 1 1 61 0.61 290 0 0 0.0061 -0.00201553 -0.00201553 0 0 0 724.131 1.1456e-06 1.1456e-06 0 0 0 2.50888 1.89358 0.00736195 0.607932 -1 1 1 62 0.62 290 0 0 0.0062 -0.00206006 -0.00206006 0 0 0 727.96 1.15056e-06 1.15056e-06 0 0 0 2.58148 1.91534 0.00855849 0.657588 -1 1 1 63 0.63 290 0 0 0.0063 -0.00210477 -0.00210477 0 0 0 731.661 1.15358e-06 1.15358e-06 0 0 0 2.65446 1.9366 0.00986155 0.708004 -1 1 1 64 0.64 290 0 0 0.0064 -0.00214964 -0.00214964 0 0 0 735.254 1.15541e-06 1.15541e-06 0 0 0 2.72781 1.95746 0.0112717 0.759073 -1 1 1 65 0.65 290 0 0 0.0065 -0.00219464 -0.00219464 0 0 0 738.755 1.15653e-06 1.15653e-06 0 0 0 2.80151 1.97801 0.0127895 0.810705 -1 1 1 66 0.66 290 0 0 0.0066 -0.00223975 -0.00223975 0 0 0 742.178 1.15722e-06 1.15722e-06 0 0 0 2.87556 1.99832 0.0144151 0.862822 -1 1 1 67 0.67 290 0 0 0.0067 -0.00228495 -0.00228495 0 0 0 745.535 1.15765e-06 1.15765e-06 0 0 0 2.94994 2.01843 0.0161486 0.915362 -1 1 1 68 0.68 290 0 0 0.0068 -0.00233024 -0.00233024 0 0 0 748.835 1.15792e-06 1.15792e-06 0 0 0 3.02466 2.0384 0.0179901 0.968273 -1 1 1 69 0.69 290 0 0 0.0069 -0.00237559 -0.00237559 0 0 0 752.086 1.1581e-06 1.1581e-06 0 0 0 3.09971 2.05825 0.0199397 1.02151 -1 1 1 70 0.7 290 0 0 0.007 -0.00242101 -0.00242101 0 0 0 755.295 5.1744e-07 5.1744e-07 0 0 0 3.17508 2.07803 0.0219976 1.07505 -1 1 1 71 0.71 290 0 0 0.0071 -0.00246648 -0.00246648 0 0 0 758.465 9.49348e-09 9.49362e-09 0 0 0 3.25076 2.09774 0.0241638 1.12886 -1 1 1 72 0.72 290 0 0 0.0072 -0.002512 -0.002512 0 0 0 761.601 -4.03151e-07 -4.0315e-07 0 0 0 3.32677 2.11741 0.0264383 1.18291 -1 1 1 73 0.73 290 0 0 0.0073 -0.00255756 -0.00255756 0 0 0 764.707 -7.46578e-07 -7.46578e-07 0 0 0 3.40308 2.13706 0.0288215 1.2372 -1 1 1 74 0.74 290 0 0 0.0074 -0.00260316 -0.00260316 0 0 0 767.785 -1.03911e-06 -1.03911e-06 0 0 0 3.47971 2.15668 0.0313135 1.29171 -1 1 1 75 0.75 290 0 0 0.0075 -0.0026488 -0.0026488 0 0 0 770.837 -1.29375e-06 -1.29375e-06 0 0 0 3.55664 2.17629 0.0339145 1.34643 -1 1 1 76 0.76 290 0 0 0.0076 -0.00269448 -0.00269448 0 0 0 773.865 -1.51978e-06 -1.51978e-06 0 0 0 3.63387 2.19589 0.0366247 1.40136 -1 1 1 77 0.77 290 0 0 0.0077 -0.00274019 -0.00274019 0 0 0 776.869 -1.72394e-06 -1.72394e-06 0 0 0 3.71141 2.21549 0.0394444 1.45648 -1 1 1 78 0.78 290 0 0 0.0078 -0.00278593 -0.00278593 0 0 0 779.852 -1.91114e-06 -1.91114e-06 0 0 0 3.78925 2.23508 0.0423739 1.51179 -1 1 1 79 0.79 290 0 0 0.0079 -0.00283169 -0.00283169 0 0 0 782.814 -2.085e-06 -2.085e-06 0 0 0 3.86738 2.25467 0.0454135 1.56729 -1 1 1 80 0.8 290 0 0 0.008 -0.00287749 -0.00287749 0 0 0 785.756 -2.24822e-06 -2.24822e-06 0 0 0 3.94581 2.27426 0.0485635 1.62298 -1 1 1 81 0.81 290 0 0 0.0081 -0.00292332 -0.00292332 0 0 0 788.679 -2.40283e-06 -2.40283e-06 0 0 0 4.02453 2.29385 0.0518242 1.67885 -1 1 1 82 0.82 290 0 0 0.0082 -0.00296917 -0.00296917 0 0 0 791.582 -2.55035e-06 -2.55035e-06 0 0 0 4.10354 2.31343 0.055196 1.73491 -1 1 1 83 0.83 290 0 0 0.0083 -0.00301505 -0.00301505 0 0 0 794.466 -2.69193e-06 -2.69193e-06 0 0 0 4.18284 2.33301 0.0586792 1.79115 -1 1 1 84 0.84 290 0 0 0.0084 -0.00306095 -0.00306095 0 0 0 797.333 -2.82847e-06 -2.82847e-06 0 0 0 4.26243 2.35258 0.0622742 1.84758 -1 1 1 85 0.85 290 0 0 0.0085 -0.00310688 -0.00310688 0 0 0 800.181 -2.96065e-06 -2.96065e-06 0 0 0 4.34231 2.37215 0.0659812 1.90418 -1 1 1 86 0.86 290 0 0 0.0086 -0.00315284 -0.00315284 0 0 0 803.012 -3.089e-06 -3.089e-06 0 0 0 4.42247 2.3917 0.0698006 1.96097 -1 1 1 87 0.87 290 0 0 0.0087 -0.00319882 -0.00319882 0 0 0 805.825 -3.21392e-06 -3.21392e-06 0 0 0 4.50291 2.41124 0.0737329 2.01794 -1 1 1 88 0.88 290 0 0 0.0088 -0.00324483 -0.00324483 0 0 0 808.621 -3.33573e-06 -3.33573e-06 0 0 0 4.58363 2.43077 0.0777782 2.07509 -1 1 1 89 0.89 290 0 0 0.0089 -0.00329086 -0.00329086 0 0 0 811.399 -3.45469e-06 -3.45469e-06 0 0 0 4.66463 2.45028 0.081937 2.13242 -1 1 1 90 0.9 290 0 0 0.009 -0.00333691 -0.00333691 0 0 0 814.162 -3.57099e-06 -3.57099e-06 0 0 0 4.74591 2.46977 0.0862096 2.18994 -1 1 1 91 0.91 290 0 0 0.0091 -0.00338299 -0.00338299 0 0 0 816.907 -3.68478e-06 -3.68478e-06 0 0 0 4.82747 2.48924 0.0905964 2.24763 -1 1 1 92 0.92 290 0 0 0.0092 -0.00342909 -0.00342909 0 0 0 819.636 -3.79621e-06 -3.79621e-06 0 0 0 4.90929 2.50869 0.0950976 2.30551 -1 1 1 93 0.93 290 0 0 0.0093 -0.00347522 -0.00347522 0 0 0 822.349 -3.90537e-06 -3.90537e-06 0 0 0 4.99139 2.52812 0.0997136 2.36356 -1 1 1 94 0.94 290 0 0 0.0094 -0.00352136 -0.00352136 0 0 0 825.045 -4.01235e-06 -4.01235e-06 0 0 0 5.07376 2.54752 0.104445 2.4218 -1 1 1 95 0.95 290 0 0 0.0095 -0.00356753 -0.00356753 0 0 0 827.726 -4.11721e-06 -4.11721e-06 0 0 0 5.1564 2.56689 0.109291 2.48022 -1 1 1 96 0.96 290 0 0 0.0096 -0.00361373 -0.00361373 0 0 0 830.39 -4.22003e-06 -4.22003e-06 0 0 0 5.23931 2.58623 0.114254 2.53882 -1 1 1 97 0.97 290 0 0 0.0097 -0.00365994 -0.00365994 0 0 0 833.04 -4.32085e-06 -4.32085e-06 0 0 0 5.32248 2.60555 0.119332 2.5976 -1 1 1 98 0.98 290 0 0 0.0098 -0.00370618 -0.00370618 0 0 0 835.673 -4.41973e-06 -4.41973e-06 0 0 0 5.40591 2.62483 0.124527 2.65656 -1 1 1 99 0.99 290 0 0 0.0099 -0.00375244 -0.00375244 0 0 0 838.291 -4.51669e-06 -4.51669e-06 0 0 0 5.48961 2.64407 0.129838 2.7157 -1 1 1 100 1 290 0 0 0.01 -0.00379872 -0.00379872 0 0 0 840.894 -4.61178e-06 -4.61178e-06 0 0 0 5.57357 2.66328 0.135267 2.77502 -1 1 2 1 1.01 290 0 0 0.0098 -0.00373872 -0.00373872 0 0 0 812.894 -4.56566e-06 -4.56566e-06 0 0 0 5.40819 2.4979 0.135267 2.77502 -1 1 2 2 1.02 290 0 0 0.0096 -0.00367872 -0.00367872 0 0 0 784.894 -4.51954e-06 -4.51954e-06 0 0 0 5.24841 2.33812 0.135267 2.77502 -1 1 2 3 1.03 290 0 0 0.0094 -0.00361872 -0.00361872 0 0 0 756.894 -4.47343e-06 -4.47343e-06 0 0 0 5.09423 2.18394 0.135267 2.77502 -1 1 2 4 1.04 290 0 0 0.0092 -0.00355872 -0.00355872 0 0 0 728.894 -4.42731e-06 -4.42731e-06 0 0 0 4.94566 2.03537 0.135267 2.77502 -1 1 2 5 1.05 290 0 0 0.009 -0.00349872 -0.00349872 0 0 0 700.894 -4.38119e-06 -4.38119e-06 0 0 0 4.80268 1.89239 0.135267 2.77502 -1 1 2 6 1.06 290 0 0 0.0088 -0.00343872 -0.00343872 0 0 0 672.894 -4.33507e-06 -4.33507e-06 0 0 0 4.6653 1.75501 0.135267 2.77502 -1 1 2 7 1.07 290 0 0 0.0086 -0.00337872 -0.00337872 0 0 0 644.894 -4.28896e-06 -4.28896e-06 0 0 0 4.53352 1.62323 0.135267 2.77502 -1 1 2 8 1.08 290 0 0 0.0084 -0.00331872 -0.00331872 0 0 0 616.894 -4.24284e-06 -4.24284e-06 0 0 0 4.40734 1.49705 0.135267 2.77502 -1 1 2 9 1.09 290 0 0 0.0082 -0.00325872 -0.00325872 0 0 0 588.894 -4.19672e-06 -4.19672e-06 0 0 0 4.28676 1.37647 0.135267 2.77502 -1 1 2 10 1.1 290 0 0 0.008 -0.00319872 -0.00319872 0 0 0 560.894 -4.1506e-06 -4.1506e-06 0 0 0 4.17178 1.26149 0.135267 2.77502 -1 1 2 11 1.11 290 0 0 0.0078 -0.00313872 -0.00313872 0 0 0 532.894 -4.10448e-06 -4.10448e-06 0 0 0 4.0624 1.15211 0.135267 2.77502 -1 1 2 12 1.12 290 0 0 0.0076 -0.00307872 -0.00307872 0 0 0 504.894 -4.05837e-06 -4.05837e-06 0 0 0 3.95862 1.04833 0.135267 2.77502 -1 1 2 13 1.13 290 0 0 0.0074 -0.00301872 -0.00301872 0 0 0 476.894 -4.01225e-06 -4.01225e-06 0 0 0 3.86045 0.950155 0.135267 2.77502 -1 1 2 14 1.14 290 0 0 0.0072 -0.00295872 -0.00295872 0 0 0 448.894 -3.96613e-06 -3.96613e-06 0 0 0 3.76787 0.857577 0.135267 2.77502 -1 1 2 15 1.15 290 0 0 0.007 -0.00289872 -0.00289872 0 0 0 420.894 -3.92001e-06 -3.92001e-06 0 0 0 3.68089 0.770598 0.135267 2.77502 -1 1 2 16 1.16 290 0 0 0.0068 -0.00283872 -0.00283872 0 0 0 392.894 -3.8739e-06 -3.8739e-06 0 0 0 3.59951 0.689219 0.135267 2.77502 -1 1 2 17 1.17 290 0 0 0.0066 -0.00277872 -0.00277872 0 0 0 364.894 -3.82778e-06 -3.82778e-06 0 0 0 3.52373 0.61344 0.135267 2.77502 -1 1 2 18 1.18 290 0 0 0.0064 -0.00271872 -0.00271872 0 0 0 336.894 -3.78166e-06 -3.78166e-06 0 0 0 3.45355 0.543261 0.135267 2.77502 -1 1 2 19 1.19 290 0 0 0.0062 -0.00265872 -0.00265872 0 0 0 308.894 -3.73554e-06 -3.73554e-06 0 0 0 3.38897 0.478682 0.135267 2.77502 -1 1 2 20 1.2 290 0 0 0.006 -0.00259872 -0.00259872 0 0 0 280.894 -3.68942e-06 -3.68942e-06 0 0 0 3.32999 0.419703 0.135267 2.77502 -1 1 2 21 1.21 290 0 0 0.0058 -0.00253872 -0.00253872 0 0 0 252.894 -3.64331e-06 -3.64331e-06 0 0 0 3.27661 0.366324 0.135267 2.77502 -1 1 2 22 1.22 290 0 0 0.0056 -0.00247872 -0.00247872 0 0 0 224.894 -3.59719e-06 -3.59719e-06 0 0 0 3.22884 0.318546 0.135267 2.77502 -1 1 2 23 1.23 290 0 0 0.0054 -0.00241872 -0.00241872 0 0 0 196.894 -3.55107e-06 -3.55107e-06 0 0 0 3.18666 0.276367 0.135267 2.77502 -1 1 2 24 1.24 290 0 0 0.0052 -0.00235872 -0.00235872 0 0 0 168.894 -3.50495e-06 -3.50495e-06 0 0 0 3.15008 0.239788 0.135267 2.77502 -1 1 2 25 1.25 290 0 0 0.005 -0.00229872 -0.00229872 0 0 0 140.894 -3.45884e-06 -3.45884e-06 0 0 0 3.1191 0.208809 0.135267 2.77502 -1 1 2 26 1.26 290 0 0 0.0048 -0.00223872 -0.00223872 0 0 0 112.894 -3.41272e-06 -3.41272e-06 0 0 0 3.09372 0.18343 0.135267 2.77502 -1 1 2 27 1.27 290 0 0 0.0046 -0.00217872 -0.00217872 0 0 0 84.8944 -3.3666e-06 -3.3666e-06 0 0 0 3.07394 0.163651 0.135267 2.77502 -1 1 2 28 1.28 290 0 0 0.0044 -0.00211872 -0.00211872 0 0 0 56.8944 -3.32048e-06 -3.32048e-06 0 0 0 3.05976 0.149472 0.135267 2.77502 -1 1 2 29 1.29 290 0 0 0.0042 -0.00205872 -0.00205872 0 0 0 28.8944 -3.27436e-06 -3.27436e-06 0 0 0 3.05118 0.140893 0.135267 2.77502 -1 1 2 30 1.3 290 0 0 0.004 -0.00199872 -0.00199872 0 0 0 0.894382 -3.22825e-06 -3.22825e-06 0 0 0 3.0482 0.137915 0.135267 2.77502 -1 1 2 31 1.31 290 0 0 0.0038 -0.00193872 -0.00193872 0 0 0 -27.1056 -3.18213e-06 -3.18213e-06 0 0 0 3.05083 0.140536 0.135267 2.77502 -1 1 2 32 1.32 290 0 0 0.0036 -0.00187872 -0.00187872 0 0 0 -55.1056 -3.13601e-06 -3.13601e-06 0 0 0 3.05905 0.148757 0.135267 2.77502 -1 1 2 33 1.33 290 0 0 0.0034 -0.00181872 -0.00181872 0 0 0 -83.1056 -3.08989e-06 -3.08989e-06 0 0 0 3.07287 0.162578 0.135267 2.77502 -1 1 2 34 1.34 290 0 0 0.0032 -0.00175872 -0.00175872 0 0 0 -111.106 -3.04378e-06 -3.04378e-06 0 0 0 3.09229 0.181999 0.135267 2.77502 -1 1 2 35 1.35 290 0 0 0.003 -0.00169872 -0.00169872 0 0 0 -139.106 -2.99766e-06 -2.99766e-06 0 0 0 3.11731 0.20702 0.135267 2.77502 -1 1 2 36 1.36 290 0 0 0.0028 -0.00163872 -0.00163872 0 0 0 -167.106 -2.95154e-06 -2.95154e-06 0 0 0 3.14793 0.237641 0.135267 2.77502 -1 1 2 37 1.37 290 0 0 0.0026 -0.00157872 -0.00157872 0 0 0 -195.106 -2.90542e-06 -2.90542e-06 0 0 0 3.18415 0.273862 0.135267 2.77502 -1 1 2 38 1.38 290 0 0 0.0024 -0.00151872 -0.00151872 0 0 0 -223.106 -2.8593e-06 -2.8593e-06 0 0 0 3.22597 0.315684 0.135267 2.77502 -1 1 2 39 1.39 290 0 0 0.0022 -0.00145872 -0.00145872 0 0 0 -251.106 -2.81319e-06 -2.81319e-06 0 0 0 3.2734 0.363105 0.135267 2.77502 -1 1 2 40 1.4 290 0 0 0.002 -0.00139872 -0.00139872 0 0 0 -279.106 -2.76707e-06 -2.76707e-06 0 0 0 3.32642 0.416126 0.135267 2.77502 -1 1 2 41 1.41 290 0 0 0.0018 -0.00133872 -0.00133872 0 0 0 -307.106 -2.72095e-06 -2.72095e-06 0 0 0 3.38504 0.474747 0.135267 2.77502 -1 1 2 42 1.42 290 0 0 0.0016 -0.00127872 -0.00127872 0 0 0 -335.106 -2.67483e-06 -2.67483e-06 0 0 0 3.44926 0.538968 0.135267 2.77502 -1 1 2 43 1.43 290 0 0 0.0014 -0.00121872 -0.00121872 0 0 0 -363.106 -2.62872e-06 -2.62872e-06 0 0 0 3.51908 0.608789 0.135267 2.77502 -1 1 2 44 1.44 290 0 0 0.0012 -0.00115872 -0.00115872 0 0 0 -391.106 -2.5826e-06 -2.5826e-06 0 0 0 3.5945 0.68421 0.135267 2.77502 -1 1 2 45 1.45 290 0 0 0.001 -0.00109872 -0.00109872 0 0 0 -419.106 -2.53648e-06 -2.53648e-06 0 0 0 3.67552 0.765231 0.135267 2.77502 -1 1 2 46 1.46 290 0 0 0.0008 -0.00103872 -0.00103872 0 0 0 -447.106 -2.49036e-06 -2.49036e-06 0 0 0 3.76214 0.851853 0.135267 2.77502 -1 1 2 47 1.47 290 0 0 0.0006 -0.000978722 -0.000978722 0 0 0 -475.106 -2.44424e-06 -2.44424e-06 0 0 0 3.85436 0.944074 0.135267 2.77502 -1 1 2 48 1.48 290 0 0 0.0004 -0.000918722 -0.000918722 0 0 0 -503.106 -2.39813e-06 -2.39813e-06 0 0 0 3.95219 1.04189 0.135267 2.77502 -1 1 2 49 1.49 290 0 0 0.0002 -0.000858722 -0.000858722 0 0 0 -531.106 -2.35201e-06 -2.35201e-06 0 0 0 4.05561 1.14532 0.135267 2.77502 -1 1 2 50 1.5 290 0 0 -4.8518e-18 -0.000790605 -0.000790605 0 0 0 -553.423 -2.29881e-06 -2.29881e-06 0 0 0 4.16406 1.22198 0.138014 2.80406 -1 1 2 51 1.51 290 0 0 -0.0002 -0.000720084 -0.000720084 0 0 0 -574.058 -2.53834e-06 -2.53834e-06 0 0 0 4.27681 1.29481 0.141616 2.84038 -1 1 2 52 1.52 290 0 0 -0.0004 -0.000648423 -0.000648423 0 0 0 -593.896 -2.92225e-06 -2.92225e-06 0 0 0 4.3936 1.36851 0.145661 2.87944 -1 1 2 53 1.53 290 0 0 -0.0006 -0.000575452 -0.000575452 0 0 0 -612.816 -3.50611e-06 -3.50611e-06 0 0 0 4.51427 1.44189 0.150227 2.92216 -1 1 2 54 1.54 290 0 0 -0.0008 -0.000500988 -0.000500988 0 0 0 -630.692 -3.45737e-06 -3.45737e-06 0 0 0 4.63862 1.51372 0.155401 2.96951 -1 1 2 55 1.55 290 0 0 -0.001 -0.000424856 -0.000424856 0 0 0 -647.399 -3.40758e-06 -3.40758e-06 0 0 0 4.76643 1.58271 0.161274 3.02245 -1 1 2 56 1.56 290 0 0 -0.0012 -0.000346908 -0.000346908 0 0 0 -662.835 -3.35703e-06 -3.35703e-06 0 0 0 4.89746 1.64773 0.167933 3.08179 -1 1 2 57 1.57 290 0 0 -0.0014 -0.000267065 -0.000267065 0 0 0 -676.945 -3.30653e-06 -3.30653e-06 0 0 0 5.03144 1.70793 0.175451 3.14806 -1 1 2 58 1.58 290 0 0 -0.0016 -0.000185344 -0.000185344 0 0 0 -689.741 -3.25701e-06 -3.25701e-06 0 0 0 5.1681 1.76291 0.183867 3.22133 -1 1 2 59 1.59 290 0 0 -0.0018 -0.000101876 -0.000101876 0 0 0 -701.313 -3.20889e-06 -3.20889e-06 0 0 0 5.30721 1.81286 0.193177 3.30117 -1 1 2 60 1.6 290 0 0 -0.002 -1.68896e-05 -1.68896e-05 0 0 0 -711.823 -3.57109e-06 -3.57109e-06 0 0 0 5.44852 1.85847 0.20334 3.38671 -1 1 2 61 1.61 290 0 0 -0.0022 6.93352e-05 6.93352e-05 0 0 0 -721.465 -3.71747e-06 -3.71747e-06 0 0 0 5.59185 1.90073 0.214282 3.47684 -1 1 2 62 1.62 290 0 0 -0.0024 0.000156517 0.000156517 0 0 0 -730.438 -3.75221e-06 -3.75221e-06 0 0 0 5.73704 1.94069 0.225922 3.57043 -1 1 2 63 1.63 290 0 0 -0.0026 0.000244414 0.000244414 0 0 0 -738.91 -3.73834e-06 -3.73834e-06 0 0 0 5.88398 1.97926 0.238184 3.66653 -1 1 2 64 1.64 290 0 0 -0.0028 0.000332837 0.000332837 0 0 0 -747.014 -3.70527e-06 -3.70527e-06 0 0 0 6.03257 2.01717 0.251004 3.7644 -1 1 2 65 1.65 290 0 0 -0.003 0.000421651 0.000421651 0 0 0 -754.844 -3.66484e-06 -3.66484e-06 0 0 0 6.18276 2.0549 0.264339 3.86352 -1 1 2 66 1.66 290 0 0 -0.0032 0.000510763 0.000510763 0 0 0 -762.466 -3.62151e-06 -3.62151e-06 0 0 0 6.33449 2.09276 0.278156 3.96357 -1 1 2 67 1.67 290 0 0 -0.0034 0.000600113 0.000600113 0 0 0 -769.921 -3.57696e-06 -3.57696e-06 0 0 0 6.48772 2.13096 0.292437 4.06433 -1 1 2 68 1.68 290 0 0 -0.0036 0.00068966 0.00068966 0 0 0 -777.238 -3.53185e-06 -3.53185e-06 0 0 0 6.64244 2.16958 0.307168 4.16569 -1 1 2 69 1.69 290 0 0 -0.0038 0.00077938 0.00077938 0 0 0 -784.434 -3.48647e-06 -3.48647e-06 0 0 0 6.79861 2.20868 0.322344 4.26758 -1 1 2 70 1.7 290 0 0 -0.004 0.000869255 0.000869255 0 0 0 -791.522 -3.44093e-06 -3.44093e-06 0 0 0 6.9562 2.24826 0.337962 4.36998 -1 1 2 71 1.71 290 0 0 -0.0042 0.000959275 0.000959275 0 0 0 -798.508 -3.39531e-06 -3.39531e-06 0 0 0 7.11521 2.2883 0.354021 4.47289 -1 1 2 72 1.72 290 0 0 -0.0044 0.00104943 0.00104943 0 0 0 -805.397 -3.34963e-06 -3.34963e-06 0 0 0 7.2756 2.32877 0.370521 4.5763 -1 1 2 73 1.73 290 0 0 -0.0046 0.00113972 0.00113972 0 0 0 -812.193 -3.30392e-06 -3.30392e-06 0 0 0 7.43736 2.36965 0.387466 4.68024 -1 1 2 74 1.74 290 0 0 -0.0048 0.00123014 0.00123014 0 0 0 -818.899 -3.25817e-06 -3.25817e-06 0 0 0 7.60047 2.41089 0.404856 4.78471 -1 1 2 75 1.75 290 0 0 -0.005 0.00132069 0.00132069 0 0 0 -825.517 -3.2124e-06 -3.2124e-06 0 0 0 7.76491 2.45246 0.422695 4.88975 -1 1 2 76 1.76 290 0 0 -0.0052 0.00141136 0.00141136 0 0 0 -832.049 -3.16662e-06 -3.16662e-06 0 0 0 7.93066 2.49431 0.440985 4.99536 -1 1 2 77 1.77 290 0 0 -0.0054 0.00150215 0.00150215 0 0 0 -838.495 -3.12082e-06 -3.12082e-06 0 0 0 8.09772 2.53641 0.459728 5.10158 -1 1 2 78 1.78 290 0 0 -0.0056 0.00159306 0.00159306 0 0 0 -844.857 -3.075e-06 -3.075e-06 0 0 0 8.26605 2.57872 0.478929 5.2084 -1 1 2 79 1.79 290 0 0 -0.0058 0.00168409 0.00168409 0 0 0 -851.137 -3.02917e-06 -3.02917e-06 0 0 0 8.43565 2.6212 0.498589 5.31586 -1 1 2 80 1.8 290 0 0 -0.006 0.00177523 0.00177523 0 0 0 -857.336 -2.98332e-06 -2.98332e-06 0 0 0 8.6065 2.66382 0.518711 5.42397 -1 1 2 81 1.81 290 0 0 -0.0062 0.00186649 0.00186649 0 0 0 -863.455 -2.93747e-06 -2.93747e-06 0 0 0 8.77858 2.70655 0.539298 5.53273 -1 1 2 82 1.82 290 0 0 -0.0064 0.00195786 0.00195786 0 0 0 -869.496 -2.8916e-06 -2.8916e-06 0 0 0 8.95187 2.74935 0.560353 5.64217 -1 1 2 83 1.83 290 0 0 -0.0066 0.00204934 0.00204934 0 0 0 -875.459 -2.84572e-06 -2.84572e-06 0 0 0 9.12637 2.79219 0.581877 5.7523 -1 1 2 84 1.84 290 0 0 -0.0068 0.00214093 0.00214093 0 0 0 -881.346 -2.79982e-06 -2.79982e-06 0 0 0 9.30205 2.83506 0.603873 5.86312 -1 1 2 85 1.85 290 0 0 -0.007 0.00223263 0.00223263 0 0 0 -887.158 -2.75392e-06 -2.75392e-06 0 0 0 9.4789 2.87791 0.626344 5.97464 -1 1 2 86 1.86 290 0 0 -0.0072 0.00232443 0.00232443 0 0 0 -892.896 -2.708e-06 -2.708e-06 0 0 0 9.65691 2.92073 0.649292 6.08688 -1 1 2 87 1.87 290 0 0 -0.0074 0.00241634 0.00241634 0 0 0 -898.562 -2.66208e-06 -2.66208e-06 0 0 0 9.83605 2.9635 0.672719 6.19983 -1 1 2 88 1.88 290 0 0 -0.0076 0.00250835 0.00250835 0 0 0 -904.157 -2.61614e-06 -2.61614e-06 0 0 0 10.0163 3.00618 0.696627 6.31351 -1 1 2 89 1.89 290 0 0 -0.0078 0.00260045 0.00260045 0 0 0 -909.682 -2.5702e-06 -2.5702e-06 0 0 0 10.1977 3.04877 0.721018 6.42792 -1 1 2 90 1.9 290 0 0 -0.008 0.00269266 0.00269266 0 0 0 -915.137 -2.52424e-06 -2.52424e-06 0 0 0 10.3802 3.09124 0.745894 6.54305 -1 1 2 91 1.91 290 0 0 -0.0082 0.00278496 0.00278496 0 0 0 -920.525 -2.47828e-06 -2.47828e-06 0 0 0 10.5638 3.13358 0.771257 6.65892 -1 1 2 92 1.92 290 0 0 -0.0084 0.00287736 0.00287736 0 0 0 -925.847 -2.43231e-06 -2.43231e-06 0 0 0 10.7484 3.17577 0.797108 6.77552 -1 1 2 93 1.93 290 0 0 -0.0086 0.00296985 0.00296985 0 0 0 -931.104 -2.38633e-06 -2.38633e-06 0 0 0 10.9341 3.21778 0.823449 6.89286 -1 1 2 94 1.94 290 0 0 -0.0088 0.00306243 0.00306243 0 0 0 -936.296 -2.34035e-06 -2.34035e-06 0 0 0 11.1208 3.25962 0.850282 7.01092 -1 1 2 95 1.95 290 0 0 -0.009 0.00315511 0.00315511 0 0 0 -941.426 -2.29435e-06 -2.29435e-06 0 0 0 11.3086 3.30127 0.877609 7.12973 -1 1 2 96 1.96 290 0 0 -0.0092 0.00324787 0.00324787 0 0 0 -946.494 -2.24835e-06 -2.24835e-06 0 0 0 11.4974 3.34271 0.90543 7.24926 -1 1 2 97 1.97 290 0 0 -0.0094 0.00334071 0.00334071 0 0 0 -951.501 -2.20234e-06 -2.20234e-06 0 0 0 11.6872 3.38393 0.933747 7.36951 -1 1 2 98 1.98 290 0 0 -0.0096 0.00343364 0.00343364 0 0 0 -956.449 -2.15633e-06 -2.15633e-06 0 0 0 11.878 3.42493 0.962561 7.4905 -1 1 2 99 1.99 290 0 0 -0.0098 0.00352666 0.00352666 0 0 0 -961.339 -1.42744e-06 -1.42744e-06 0 0 0 12.0698 3.46569 0.991874 7.6122 -1 1 2 100 2 290 0 0 -0.01 0.00361975 0.00361975 0 0 0 -966.172 -7.25495e-07 -7.25494e-07 0 0 0 12.2625 3.50621 1.02169 7.73462 -2 1 1 1 2.01 290 0 0 -0.00990071 0.00358997 0.00358997 0 0 0 -952.271 -7.1824e-07 -7.1824e-07 0 0 0 12.1673 3.41097 1.02169 7.73462 -2 1 1 2 2.02 290 0 0 -0.00980142 0.00356018 0.00356018 0 0 0 -938.371 -7.10985e-07 -7.10985e-07 0 0 0 12.0734 3.31711 1.02169 7.73462 -2 1 1 3 2.03 290 0 0 -0.00970213 0.00353039 0.00353039 0 0 0 -924.47 -7.0373e-07 -7.0373e-07 0 0 0 11.9809 3.22463 1.02169 7.73462 -2 1 1 4 2.04 290 0 0 -0.00960284 0.0035006 0.0035006 0 0 0 -910.569 -6.96475e-07 -6.96475e-07 0 0 0 11.8898 3.13353 1.02169 7.73462 -2 1 1 5 2.05 290 0 0 -0.00950355 0.00347082 0.00347082 0 0 0 -896.669 -6.8922e-07 -6.8922e-07 0 0 0 11.8001 3.0438 1.02169 7.73462 -2 1 1 6 2.06 290 0 0 -0.00940425 0.00344103 0.00344103 0 0 0 -882.768 -6.81965e-07 -6.81965e-07 0 0 0 11.7118 2.95546 1.02169 7.73462 -2 1 1 7 2.07 290 0 0 -0.00930496 0.00341124 0.00341124 0 0 0 -868.867 -6.7471e-07 -6.7471e-07 0 0 0 11.6248 2.8685 1.02169 7.73462 -2 1 1 8 2.08 290 0 0 -0.00920567 0.00338146 0.00338146 0 0 0 -854.966 -6.67456e-07 -6.67455e-07 0 0 0 11.5392 2.78292 1.02169 7.73462 -2 1 1 9 2.09 290 0 0 -0.00910638 0.00335167 0.00335167 0 0 0 -841.066 -6.60201e-07 -6.60201e-07 0 0 0 11.455 2.69872 1.02169 7.73462 -2 1 1 10 2.1 290 0 0 -0.00900709 0.00332188 0.00332188 0 0 0 -827.165 -6.52946e-07 -6.52946e-07 0 0 0 11.3722 2.6159 1.02169 7.73462 -2 1 1 11 2.11 290 0 0 -0.0089078 0.00329209 0.00329209 0 0 0 -813.264 -6.45691e-07 -6.45691e-07 0 0 0 11.2908 2.53446 1.02169 7.73462 -2 1 1 12 2.12 290 0 0 -0.00880851 0.00326231 0.00326231 0 0 0 -799.363 -6.38436e-07 -6.38436e-07 0 0 0 11.2107 2.4544 1.02169 7.73462 -2 1 1 13 2.13 290 0 0 -0.00870922 0.00323252 0.00323252 0 0 0 -785.463 -6.31181e-07 -6.31181e-07 0 0 0 11.132 2.37572 1.02169 7.73462 -2 1 1 14 2.14 290 0 0 -0.00860993 0.00320273 0.00320273 0 0 0 -771.562 -6.23926e-07 -6.23926e-07 0 0 0 11.0547 2.29842 1.02169 7.73462 -2 1 1 15 2.15 290 0 0 -0.00851064 0.00317294 0.00317294 0 0 0 -757.661 -6.16671e-07 -6.16671e-07 0 0 0 10.9788 2.2225 1.02169 7.73462 -2 1 1 16 2.16 290 0 0 -0.00841134 0.00314316 0.00314316 0 0 0 -743.76 -6.09417e-07 -6.09417e-07 0 0 0 10.9043 2.14797 1.02169 7.73462 -2 1 1 17 2.17 290 0 0 -0.00831205 0.00311337 0.00311337 0 0 0 -729.86 -6.02162e-07 -6.02162e-07 0 0 0 10.8311 2.07481 1.02169 7.73462 -2 1 1 18 2.18 290 0 0 -0.00821276 0.00308358 0.00308358 0 0 0 -715.959 -5.94907e-07 -5.94907e-07 0 0 0 10.7593 2.00303 1.02169 7.73462 -2 1 1 19 2.19 290 0 0 -0.00811347 0.0030538 0.0030538 0 0 0 -702.058 -5.87652e-07 -5.87652e-07 0 0 0 10.6889 1.93263 1.02169 7.73462 -2 1 1 20 2.2 290 0 0 -0.00801418 0.00302401 0.00302401 0 0 0 -688.157 -5.80397e-07 -5.80397e-07 0 0 0 10.6199 1.86361 1.02169 7.73462 -2 1 1 21 2.21 290 0 0 -0.00791489 0.00299422 0.00299422 0 0 0 -674.257 -5.73142e-07 -5.73142e-07 0 0 0 10.5523 1.79598 1.02169 7.73462 -2 1 1 22 2.22 290 0 0 -0.0078156 0.00296443 0.00296443 0 0 0 -660.356 -5.65887e-07 -5.65887e-07 0 0 0 10.486 1.72972 1.02169 7.73462 -2 1 1 23 2.23 290 0 0 -0.00771631 0.00293465 0.00293465 0 0 0 -646.455 -5.58633e-07 -5.58632e-07 0 0 0 10.4211 1.66484 1.02169 7.73462 -2 1 1 24 2.24 290 0 0 -0.00761702 0.00290486 0.00290486 0 0 0 -632.554 -5.51378e-07 -5.51378e-07 0 0 0 10.3576 1.60134 1.02169 7.73462 -2 1 1 25 2.25 290 0 0 -0.00751773 0.00287507 0.00287507 0 0 0 -618.654 -5.44123e-07 -5.44123e-07 0 0 0 10.2955 1.53923 1.02169 7.73462 -2 1 1 26 2.26 290 0 0 -0.00741843 0.00284528 0.00284528 0 0 0 -604.753 -5.36868e-07 -5.36868e-07 0 0 0 10.2348 1.47849 1.02169 7.73462 -2 1 1 27 2.27 290 0 0 -0.00731914 0.0028155 0.0028155 0 0 0 -590.852 -5.29613e-07 -5.29613e-07 0 0 0 10.1754 1.41913 1.02169 7.73462 -2 1 1 28 2.28 290 0 0 -0.00721985 0.00278571 0.00278571 0 0 0 -576.951 -5.22358e-07 -5.22358e-07 0 0 0 10.1175 1.36116 1.02169 7.73462 -2 1 1 29 2.29 290 0 0 -0.00712056 0.00275592 0.00275592 0 0 0 -563.051 -5.15103e-07 -5.15103e-07 0 0 0 10.0609 1.30456 1.02169 7.73462 -2 1 1 30 2.3 290 0 0 -0.00702127 0.00272613 0.00272613 0 0 0 -549.15 -5.07848e-07 -5.07848e-07 0 0 0 10.0056 1.24935 1.02169 7.73462 -2 1 1 31 2.31 290 0 0 -0.00692198 0.00269635 0.00269635 0 0 0 -535.249 -5.00594e-07 -5.00593e-07 0 0 0 9.95181 1.19551 1.02169 7.73462 -2 1 1 32 2.32 290 0 0 -0.00682269 0.00266656 0.00266656 0 0 0 -521.349 -4.93339e-07 -4.93339e-07 0 0 0 9.89936 1.14305 1.02169 7.73462 -2 1 1 33 2.33 290 0 0 -0.0067234 0.00263677 0.00263677 0 0 0 -507.448 -4.86084e-07 -4.86084e-07 0 0 0 9.84828 1.09198 1.02169 7.73462 -2 1 1 34 2.34 290 0 0 -0.00662411 0.00260699 0.00260699 0 0 0 -493.547 -4.78829e-07 -4.78829e-07 0 0 0 9.79859 1.04228 1.02169 7.73462 -2 1 1 35 2.35 290 0 0 -0.00652482 0.0025772 0.0025772 0 0 0 -479.646 -4.71574e-07 -4.71574e-07 0 0 0 9.75027 0.99397 1.02169 7.73462 -2 1 1 36 2.36 290 0 0 -0.00642552 0.00254741 0.00254741 0 0 0 -465.746 -4.64319e-07 -4.64319e-07 0 0 0 9.70334 0.947035 1.02169 7.73462 -2 1 1 37 2.37 290 0 0 -0.00632623 0.00251762 0.00251762 0 0 0 -451.845 -4.57064e-07 -4.57064e-07 0 0 0 9.65778 0.901481 1.02169 7.73462 -2 1 1 38 2.38 290 0 0 -0.00622694 0.00248784 0.00248784 0 0 0 -437.944 -4.49809e-07 -4.49809e-07 0 0 0 9.61361 0.857307 1.02169 7.73462 -2 1 1 39 2.39 290 0 0 -0.00612765 0.00245805 0.00245805 0 0 0 -424.043 -4.42555e-07 -4.42554e-07 0 0 0 9.57082 0.814513 1.02169 7.73462 -2 1 1 40 2.4 290 0 0 -0.00602836 0.00242826 0.00242826 0 0 0 -410.143 -4.353e-07 -4.353e-07 0 0 0 9.5294 0.7731 1.02169 7.73462 -2 1 1 41 2.41 290 0 0 -0.00592907 0.00239847 0.00239847 0 0 0 -396.242 -4.28045e-07 -4.28045e-07 0 0 0 9.48937 0.733066 1.02169 7.73462 -2 1 1 42 2.42 290 0 0 -0.00582978 0.00236869 0.00236869 0 0 0 -382.341 -4.2079e-07 -4.2079e-07 0 0 0 9.45072 0.694413 1.02169 7.73462 -2 1 1 43 2.43 290 0 0 -0.00573049 0.0023389 0.0023389 0 0 0 -368.44 -4.13535e-07 -4.13535e-07 0 0 0 9.41344 0.65714 1.02169 7.73462 -2 1 1 44 2.44 290 0 0 -0.0056312 0.00230911 0.00230911 0 0 0 -354.54 -4.0628e-07 -4.0628e-07 0 0 0 9.37755 0.621248 1.02169 7.73462 -2 1 1 45 2.45 290 0 0 -0.00553191 0.00227933 0.00227933 0 0 0 -340.639 -3.99025e-07 -3.99025e-07 0 0 0 9.34304 0.586735 1.02169 7.73462 -2 1 1 46 2.46 290 0 0 -0.00543261 0.00224954 0.00224954 0 0 0 -326.738 -3.9177e-07 -3.9177e-07 0 0 0 9.30991 0.553603 1.02169 7.73462 -2 1 1 47 2.47 290 0 0 -0.00533332 0.00221975 0.00221975 0 0 0 -312.837 -3.84516e-07 -3.84515e-07 0 0 0 9.27815 0.521851 1.02169 7.73462 -2 1 1 48 2.48 290 0 0 -0.00523403 0.00218996 0.00218996 0 0 0 -298.937 -3.77261e-07 -3.77261e-07 0 0 0 9.24778 0.491479 1.02169 7.73462 -2 1 1 49 2.49 290 0 0 -0.00513474 0.00216018 0.00216018 0 0 0 -285.036 -3.70006e-07 -3.70006e-07 0 0 0 9.21879 0.462487 1.02169 7.73462 -2 1 1 50 2.5 290 0 0 -0.00503545 0.00213039 0.00213039 0 0 0 -271.135 -3.62751e-07 -3.62751e-07 0 0 0 9.19118 0.434876 1.02169 7.73462 -2 1 1 51 2.51 290 0 0 -0.00493616 0.0021006 0.0021006 0 0 0 -257.234 -3.55496e-07 -3.55496e-07 0 0 0 9.16495 0.408645 1.02169 7.73462 -2 1 1 52 2.52 290 0 0 -0.00483687 0.00207081 0.00207081 0 0 0 -243.334 -3.48241e-07 -3.48241e-07 0 0 0 9.1401 0.383794 1.02169 7.73462 -2 1 1 53 2.53 290 0 0 -0.00473758 0.00204103 0.00204103 0 0 0 -229.433 -3.40986e-07 -3.40986e-07 0 0 0 9.11663 0.360323 1.02169 7.73462 -2 1 1 54 2.54 290 0 0 -0.00463829 0.00201124 0.00201124 0 0 0 -215.532 -3.33731e-07 -3.33731e-07 0 0 0 9.09454 0.338233 1.02169 7.73462 -2 1 1 55 2.55 290 0 0 -0.004539 0.00198145 0.00198145 0 0 0 -201.632 -3.26477e-07 -3.26476e-07 0 0 0 9.07383 0.317522 1.02169 7.73462 -2 1 1 56 2.56 290 0 0 -0.0044397 0.00195167 0.00195167 0 0 0 -187.731 -3.19222e-07 -3.19222e-07 0 0 0 9.0545 0.298192 1.02169 7.73462 -2 1 1 57 2.57 290 0 0 -0.00434041 0.00192188 0.00192188 0 0 0 -173.83 -3.11967e-07 -3.11967e-07 0 0 0 9.03655 0.280242 1.02169 7.73462 -2 1 1 58 2.58 290 0 0 -0.00424112 0.00189209 0.00189209 0 0 0 -159.929 -3.04712e-07 -3.04712e-07 0 0 0 9.01998 0.263673 1.02169 7.73462 -2 1 1 59 2.59 290 0 0 -0.00414183 0.0018623 0.0018623 0 0 0 -146.029 -2.97457e-07 -2.97457e-07 0 0 0 9.00479 0.248483 1.02169 7.73462 -2 1 1 60 2.6 290 0 0 -0.00404254 0.00183252 0.00183252 0 0 0 -132.128 -2.90202e-07 -2.90202e-07 0 0 0 8.99098 0.234674 1.02169 7.73462 -2 1 1 61 2.61 290 0 0 -0.00394325 0.00180273 0.00180273 0 0 0 -118.227 -2.82947e-07 -2.82947e-07 0 0 0 8.97855 0.222245 1.02169 7.73462 -2 1 1 62 2.62 290 0 0 -0.00384396 0.00177294 0.00177294 0 0 0 -104.326 -2.75692e-07 -2.75692e-07 0 0 0 8.9675 0.211196 1.02169 7.73462 -2 1 1 63 2.63 290 0 0 -0.00374467 0.00174315 0.00174315 0 0 0 -90.4256 -2.68437e-07 -2.68437e-07 0 0 0 8.95783 0.201528 1.02169 7.73462 -2 1 1 64 2.64 290 0 0 -0.00364538 0.00171337 0.00171337 0 0 0 -76.5249 -2.61182e-07 -2.61182e-07 0 0 0 8.94954 0.193239 1.02169 7.73462 -2 1 1 65 2.65 290 0 0 -0.00354609 0.00168358 0.00168358 0 0 0 -62.6241 -2.53927e-07 -2.53927e-07 0 0 0 8.94263 0.186331 1.02169 7.73462 -2 1 1 66 2.66 290 0 0 -0.00344679 0.00165379 0.00165379 0 0 0 -48.7234 -2.46672e-07 -2.46672e-07 0 0 0 8.93711 0.180803 1.02169 7.73462 -2 1 1 67 2.67 290 0 0 -0.0033475 0.001624 0.001624 0 0 0 -34.8226 -2.39417e-07 -2.39417e-07 0 0 0 8.93296 0.176656 1.02169 7.73462 -2 1 1 68 2.68 290 0 0 -0.00324821 0.00159422 0.00159422 0 0 0 -20.9219 -2.32162e-07 -2.32162e-07 0 0 0 8.93019 0.173888 1.02169 7.73462 -2 1 1 69 2.69 290 0 0 -0.00314892 0.00156443 0.00156443 0 0 0 -7.02116 -2.24907e-07 -2.24907e-07 0 0 0 8.9288 0.172501 1.02169 7.73462 -2 1 1 70 2.7 290 0 0 -0.00304963 0.00153464 0.00153464 0 0 0 6.87958 -2.17652e-07 -2.17652e-07 0 0 0 8.9288 0.172494 1.02169 7.73462 -2 1 1 71 2.71 290 0 0 -0.00295034 0.00150486 0.00150486 0 0 0 20.7803 -2.10397e-07 -2.10397e-07 0 0 0 8.93017 0.173867 1.02169 7.73462 -2 1 1 72 2.72 290 0 0 -0.00285105 0.00147507 0.00147507 0 0 0 34.6811 -2.03142e-07 -2.03142e-07 0 0 0 8.93292 0.17662 1.02169 7.73462 -2 1 1 73 2.73 290 0 0 -0.00275176 0.00144528 0.00144528 0 0 0 48.5818 -1.95887e-07 -1.95887e-07 0 0 0 8.93706 0.180754 1.02169 7.73462 -2 1 1 74 2.74 290 0 0 -0.00265247 0.00141549 0.00141549 0 0 0 62.4825 -1.88632e-07 -1.88632e-07 0 0 0 8.94257 0.186268 1.02169 7.73462 -2 1 1 75 2.75 290 0 0 -0.00255318 0.00138571 0.00138571 0 0 0 76.3833 -1.81377e-07 -1.81377e-07 0 0 0 8.94947 0.193162 1.02169 7.73462 -2 1 1 76 2.76 290 0 0 -0.00245388 0.00135592 0.00135592 0 0 0 90.284 -1.74122e-07 -1.74122e-07 0 0 0 8.95774 0.201436 1.02169 7.73462 -2 1 1 77 2.77 290 0 0 -0.00235459 0.00132613 0.00132613 0 0 0 104.185 -1.66868e-07 -1.66867e-07 0 0 0 8.96739 0.211091 1.02169 7.73462 -2 1 1 78 2.78 290 0 0 -0.0022553 0.00129634 0.00129634 0 0 0 118.086 -1.59613e-07 -1.59612e-07 0 0 0 8.97843 0.222126 1.02169 7.73462 -2 1 1 79 2.79 290 0 0 -0.00215601 0.00126656 0.00126656 0 0 0 131.986 -1.52358e-07 -1.52357e-07 0 0 0 8.99084 0.23454 1.02169 7.73462 -2 1 1 80 2.8 290 0 0 -0.00205672 0.00123677 0.00123677 0 0 0 145.887 -1.45103e-07 -1.45102e-07 0 0 0 9.00464 0.248336 1.02169 7.73462 -2 1 1 81 2.81 290 0 0 -0.00195743 0.00120698 0.00120698 0 0 0 159.788 -1.37848e-07 -1.37848e-07 0 0 0 9.01981 0.263511 1.02169 7.73462 -2 1 1 82 2.82 290 0 0 -0.00185814 0.0011772 0.0011772 0 0 0 173.688 -1.30593e-07 -1.30593e-07 0 0 0 9.03637 0.280067 1.02169 7.73462 -2 1 1 83 2.83 290 0 0 -0.00175885 0.00114741 0.00114741 0 0 0 187.589 -1.23338e-07 -1.23338e-07 0 0 0 9.05431 0.298002 1.02169 7.73462 -2 1 1 84 2.84 290 0 0 -0.00165956 0.00111762 0.00111762 0 0 0 201.49 -1.16083e-07 -1.16083e-07 0 0 0 9.07362 0.317318 1.02169 7.73462 -2 1 1 85 2.85 290 0 0 -0.00156027 0.00108783 0.00108783 0 0 0 215.391 -1.08828e-07 -1.08828e-07 0 0 0 9.09432 0.338015 1.02169 7.73462 -2 1 1 86 2.86 290 0 0 -0.00146097 0.00105805 0.00105805 0 0 0 229.291 -1.01573e-07 -1.01573e-07 0 0 0 9.11639 0.360091 1.02169 7.73462 -2 1 1 87 2.87 290 0 0 -0.00136168 0.00102826 0.00102826 0 0 0 243.192 -9.43178e-08 -9.43177e-08 0 0 0 9.13985 0.383548 1.02169 7.73462 -2 1 1 88 2.88 290 0 0 -0.00126239 0.000998472 0.000998472 0 0 0 257.093 -8.70629e-08 -8.70628e-08 0 0 0 9.16469 0.408385 1.02169 7.73462 -2 1 1 89 2.89 290 0 0 -0.0011631 0.000968684 0.000968684 0 0 0 270.994 -7.98079e-08 -7.98078e-08 0 0 0 9.19091 0.434602 1.02169 7.73462 -2 1 1 90 2.9 290 0 0 -0.00106381 0.000938897 0.000938897 0 0 0 284.894 -7.2553e-08 -7.25529e-08 0 0 0 9.2185 0.462199 1.02169 7.73462 -2 1 1 91 2.91 290 0 0 -0.000964519 0.00090911 0.00090911 0 0 0 298.795 -6.52981e-08 -6.5298e-08 0 0 0 9.24748 0.491177 1.02169 7.73462 -2 1 1 92 2.92 290 0 0 -0.000865228 0.000879322 0.000879322 0 0 0 312.696 -5.80431e-08 -5.8043e-08 0 0 0 9.27784 0.521534 1.02169 7.73462 -2 1 1 93 2.93 290 0 0 -0.000765937 0.000849535 0.000849535 0 0 0 326.597 -5.07882e-08 -5.07881e-08 0 0 0 9.30958 0.553272 1.02169 7.73462 -2 1 1 94 2.94 290 0 0 -0.000666646 0.000819748 0.000819748 0 0 0 340.497 -4.35333e-08 -4.35331e-08 0 0 0 9.34269 0.586391 1.02169 7.73462 -2 1 1 95 2.95 290 0 0 -0.000567355 0.00078996 0.00078996 0 0 0 354.398 -3.62783e-08 -3.62782e-08 0 0 0 9.37719 0.620889 1.02169 7.73462 -2 1 1 96 2.96 290 0 0 -0.000468064 0.000760173 0.000760173 0 0 0 368.299 -2.90234e-08 -2.90233e-08 0 0 0 9.41307 0.656768 1.02169 7.73462 -2 1 1 97 2.97 290 0 0 -0.000368773 0.000730386 0.000730386 0 0 0 382.2 -2.17684e-08 -2.17683e-08 0 0 0 9.45033 0.694027 1.02169 7.73462 -2 1 1 98 2.98 290 0 0 -0.000269482 0.000700599 0.000700599 0 0 0 396.1 -1.45135e-08 -1.45134e-08 0 0 0 9.48897 0.732666 1.02169 7.73462 -2 1 1 99 2.99 290 0 0 -0.000170191 0.000670811 0.000670811 0 0 0 410.001 -7.25856e-09 -7.25845e-09 0 0 0 9.52899 0.772685 1.02169 7.73462 -2 1 1 100 3 290 0 0 -7.09e-05 0.000641024 0.000641024 0 0 0 423.902 -3.63798e-12 -3.51008e-12 0 0 0 9.57039 0.814085 1.02169 7.73462 -3 1 1 1 0 290 0 0 -7.09e-05 0.000641024 0.000641024 0 0 0 423.902 -3.63798e-12 -3.52429e-12 0 0 0 9.57039 0.814085 1.02169 7.73462 -3 1 1 2 0.005 290 0 0 0.000126 0.000581954 0.000581954 0 0 0 451.468 -3.63798e-12 -3.52429e-12 0 0 0 9.65657 0.900265 1.02169 7.73462 -3 1 1 3 0.01 290 0 0 0.000333 0.000519854 0.000519854 0 0 0 480.448 -3.6664e-12 -3.55271e-12 0 0 0 9.75302 0.996718 1.02169 7.73462 -3 1 1 4 0.015 290 0 0 0.000526 0.000461954 0.000461954 0 0 0 507.468 -3.6664e-12 -3.5385e-12 0 0 0 9.84836 1.09205 1.02169 7.73462 -3 1 1 5 0.02 290 0 0 0.0007279 0.000401384 0.000401384 0 0 0 535.734 -3.63798e-12 -3.5385e-12 0 0 0 9.95367 1.19736 1.02169 7.73462 -3 1 1 6 0.025 290 0 0 0.0009266 0.000341774 0.000341774 0 0 0 563.552 -3.69482e-12 -3.55271e-12 0 0 0 10.0629 1.30658 1.02169 7.73462 -3 1 1 7 0.03 290 0 0 0.001132 0.000280154 0.000280154 0 0 0 592.308 -3.63798e-12 -3.52429e-12 0 0 0 10.1816 1.42528 1.02169 7.73462 -3 1 1 8 0.035 290 0 0 0.00133 0.000220754 0.000220754 0 0 0 620.028 -3.6664e-12 -3.55271e-12 0 0 0 10.3016 1.54531 1.02169 7.73462 -3 1 1 9 0.04 290 0 0 0.001533 0.000156456 0.000156456 0 0 0 646.069 3.2666e-07 3.2666e-07 0 0 0 10.4301 1.65838 1.02477 7.74697 -3 1 1 10 0.045 290 0 0 0.001727 8.85575e-05 8.85575e-05 0 0 0 666.44 5.28697e-07 5.28697e-07 0 0 0 10.5574 1.74214 1.0336 7.78168 -3 1 1 11 0.05 290 0 0 0.001933 1.53886e-05 1.53886e-05 0 0 0 687.322 9.17307e-07 9.17307e-07 0 0 0 10.6969 1.83195 1.044 7.82092 -3 1 1 12 0.055 290 0 0 0.002134 -5.72563e-05 -5.72563e-05 0 0 0 706.821 1.44432e-06 1.44433e-06 0 0 0 10.837 1.91912 1.05535 7.86251 -3 1 1 13 0.06 290 0 0 0.002335 -0.000131311 -0.000131311 0 0 0 725.333 1.44219e-06 1.44219e-06 0 0 0 10.9809 2.00452 1.06806 7.90833 -3 1 1 14 0.065 290 0 0 0.002534 -0.000206199 -0.000206199 0 0 0 742.56 1.43918e-06 1.43918e-06 0 0 0 11.127 2.08597 1.08219 7.95881 -3 1 1 15 0.07 290 0 0 0.00274 -0.00028552 -0.00028552 0 0 0 759.136 1.4345e-06 1.4345e-06 0 0 0 11.2816 2.16574 1.09859 8.01731 -3 1 1 16 0.075 290 0 0 0.002938 -0.000363635 -0.000363635 0 0 0 773.756 1.43031e-06 1.43031e-06 0 0 0 11.4334 2.23684 1.11624 8.08031 -3 1 1 17 0.08 290 0 0 0.003138 -0.000444409 -0.000444409 0 0 0 787.214 1.42647e-06 1.42647e-06 0 0 0 11.5895 2.3026 1.136 8.15089 -3 1 1 18 0.085 290 0 0 0.003332 -0.000524502 -0.000524502 0 0 0 799.048 1.42422e-06 1.42422e-06 0 0 0 11.7434 2.36047 1.157 8.22589 -3 1 1 19 0.09 290 0 0 0.003545 -0.00061416 -0.00061416 0 0 0 810.838 2.13036e-06 2.13036e-06 0 0 0 11.9148 2.41819 1.18195 8.31468 -3 1 1 20 0.095 290 0 0 0.003737 -0.00069635 -0.00069635 0 0 0 820.505 2.36155e-06 2.36155e-06 0 0 0 12.0714 2.46563 1.206 8.39979 -3 1 1 21 0.1 290 0 0 0.003942 -0.000785181 -0.000785181 0 0 0 830.073 2.49785e-06 2.49785e-06 0 0 0 12.2406 2.51304 1.23301 8.49455 -3 1 1 22 0.105 290 0 0 0.004136 -0.000870056 -0.000870056 0 0 0 838.561 2.54215e-06 2.54215e-06 0 0 0 12.4025 2.55576 1.25965 8.58705 -3 1 1 23 0.11 290 0 0 0.004343 -0.000961238 -0.000961238 0 0 0 847.183 2.5657e-06 2.5657e-06 0 0 0 12.5769 2.60014 1.28901 8.68779 -3 1 1 24 0.115 290 0 0 0.004549 -0.00105246 -0.00105246 0 0 0 855.426 2.57518e-06 2.57518e-06 0 0 0 12.7523 2.64371 1.31905 8.78955 -3 1 1 25 0.12 290 0 0 0.004744 -0.00113915 -0.00113915 0 0 0 862.993 2.57871e-06 2.57871e-06 0 0 0 12.9199 2.68486 1.34813 8.88686 -3 1 1 26 0.125 290 0 0 0.004945 -0.00122877 -0.00122877 0 0 0 870.611 2.58087e-06 2.58087e-06 0 0 0 13.0941 2.72749 1.37871 8.98789 -3 1 1 27 0.13 290 0 0 0.00515 -0.0013204 -0.0013204 0 0 0 878.221 2.58231e-06 2.58231e-06 0 0 0 13.2733 2.77134 1.41047 9.09153 -3 1 1 28 0.135 290 0 0 0.00535 -0.00140998 -0.00140998 0 0 0 885.514 2.58321e-06 2.58321e-06 0 0 0 13.4497 2.81456 1.442 9.19315 -3 1 1 29 0.14 290 0 0 0.005549 -0.00149928 -0.00149928 0 0 0 892.654 2.58389e-06 2.58389e-06 0 0 0 13.6266 2.85803 1.47388 9.29473 -3 1 1 30 0.145 290 0 0 0.005751 -0.00159008 -0.00159008 0 0 0 899.793 2.5845e-06 2.5845e-06 0 0 0 13.8077 2.90262 1.50676 9.3983 -3 1 1 31 0.15 290 0 0 0.005952 -0.00168058 -0.00168058 0 0 0 906.793 2.58502e-06 2.58502e-06 0 0 0 13.9892 2.94744 1.53998 9.50182 -3 1 1 32 0.155 290 0 0 0.00615 -0.00176987 -0.00176987 0 0 0 913.593 2.58546e-06 2.58546e-06 0 0 0 14.1695 2.99198 1.5732 9.60427 -3 1 1 33 0.16 290 0 0 0.006352 -0.00186109 -0.00186109 0 0 0 920.435 2.5859e-06 2.5859e-06 0 0 0 14.3547 3.03781 1.60759 9.70929 -3 1 1 34 0.165 290 0 0 0.006553 -0.001952 -0.001952 0 0 0 927.15 2.58631e-06 2.58631e-06 0 0 0 14.5404 3.08373 1.64232 9.81432 -3 1 1 35 0.17 290 0 0 0.006755 -0.00204349 -0.00204349 0 0 0 933.806 2.58671e-06 2.58671e-06 0 0 0 14.7283 3.13018 1.67774 9.92041 -3 1 1 36 0.175 290 0 0 0.006959 -0.00213602 -0.00213602 0 0 0 940.436 2.5871e-06 2.5871e-06 0 0 0 14.9195 3.17734 1.71402 10.0281 -3 1 1 37 0.18 290 0 0 0.007154 -0.00222459 -0.00222459 0 0 0 946.688 2.5874e-06 2.58741e-06 0 0 0 15.1035 3.22261 1.7492 10.1317 -3 1 1 38 0.185 290 0 0 0.007357 -0.00231691 -0.00231691 0 0 0 953.111 2.58775e-06 2.58775e-06 0 0 0 15.2963 3.26991 1.78632 10.2401 -3 1 1 39 0.19 290 0 0 0.007556 -0.00240754 -0.00240754 0 0 0 959.321 2.58806e-06 2.58806e-06 0 0 0 15.4866 3.3164 1.82323 10.347 -3 1 1 40 0.195 290 0 0 0.00776 -0.00250057 -0.00250057 0 0 0 965.603 2.58838e-06 2.58838e-06 0 0 0 15.683 3.36416 1.86158 10.4572 -3 1 1 41 0.2 290 0 0 0.007962 -0.0025928 -0.0025928 0 0 0 971.738 2.58867e-06 2.58868e-06 0 0 0 15.8786 3.4115 1.90009 10.567 -3 1 1 42 0.205 290 0 0 0.008162 -0.00268424 -0.00268424 0 0 0 977.731 2.58895e-06 2.58895e-06 0 0 0 16.0736 3.4584 1.93872 10.6765 -3 1 1 43 0.21 290 0 0 0.008359 -0.00277442 -0.00277442 0 0 0 983.557 2.58919e-06 2.58919e-06 0 0 0 16.2668 3.50459 1.97728 10.7849 -3 1 1 44 0.215 290 0 0 0.008567 -0.00286975 -0.00286975 0 0 0 989.626 2.58947e-06 2.58948e-06 0 0 0 16.472 3.55332 2.01853 10.9001 -3 1 1 45 0.22 290 0 0 0.008759 -0.00295785 -0.00295785 0 0 0 995.152 2.58967e-06 2.58967e-06 0 0 0 16.6625 3.59824 2.05711 11.0072 -3 1 1 46 0.225 290 0 0 0.008965 -0.00305249 -0.00305249 0 0 0 1001.01 2.58992e-06 2.58992e-06 0 0 0 16.8681 3.64635 2.09903 11.1227 -3 1 1 47 0.23 290 0 0 0.009171 -0.00314724 -0.00314724 0 0 0 1006.78 2.59016e-06 2.59016e-06 0 0 0 17.0749 3.69435 2.14149 11.2391 -3 1 1 48 0.235 290 0 0 0.009368 -0.00323796 -0.00323796 0 0 0 1012.23 2.59035e-06 2.59035e-06 0 0 0 17.2738 3.74011 2.18262 11.3511 -3 1 1 49 0.24 290 0 0 0.009567 -0.0033297 -0.0033297 0 0 0 1017.66 2.59053e-06 2.59053e-06 0 0 0 17.4758 3.78619 2.22468 11.4649 -3 1 1 50 0.245 290 0 0 0.00977 -0.00342339 -0.00342339 0 0 0 1023.13 2.59072e-06 2.59072e-06 0 0 0 17.6829 3.83302 2.26811 11.5818 -3 1 1 51 0.25 290 0 0 0.009963 -0.00351255 -0.00351255 0 0 0 1028.26 2.59087e-06 2.59087e-06 0 0 0 17.8809 3.87735 2.30991 11.6936 -3 1 1 52 0.255 290 0 0 0.009958 -0.00351105 -0.00351105 0 0 0 1027.56 2.59087e-06 2.59087e-06 0 0 0 17.8757 3.87221 2.30991 11.6936 -3 1 1 53 0.26 290 0 0 0.009779 -0.00345735 -0.00345735 0 0 0 1002.5 2.59087e-06 2.59087e-06 0 0 0 17.694 3.69052 2.30991 11.6936 -3 1 1 54 0.265 290 0 0 0.009587 -0.00339975 -0.00339975 0 0 0 975.623 2.59087e-06 2.59087e-06 0 0 0 17.5041 3.50062 2.30991 11.6936 -3 1 1 55 0.27 290 0 0 0.009386 -0.00333945 -0.00333945 0 0 0 947.483 2.59087e-06 2.59087e-06 0 0 0 17.3109 3.30734 2.30991 11.6936 -3 1 1 56 0.275 290 0 0 0.009198 -0.00328305 -0.00328305 0 0 0 921.163 2.59087e-06 2.59087e-06 0 0 0 17.1352 3.13169 2.30991 11.6936 -3 1 1 57 0.28 290 0 0 0.009002 -0.00322425 -0.00322425 0 0 0 893.723 2.59087e-06 2.59087e-06 0 0 0 16.9573 2.95383 2.30991 11.6936 -3 1 1 58 0.285 290 0 0 0.008811 -0.00316695 -0.00316695 0 0 0 866.983 2.59087e-06 2.59087e-06 0 0 0 16.7892 2.78568 2.30991 11.6936 -3 1 1 59 0.29 290 0 0 0.008615 -0.00310815 -0.00310815 0 0 0 839.543 2.59087e-06 2.59087e-06 0 0 0 16.622 2.61844 2.30991 11.6936 -3 1 1 60 0.295 290 0 0 0.008422 -0.00305025 -0.00305025 0 0 0 812.523 2.59087e-06 2.59087e-06 0 0 0 16.4625 2.45902 2.30991 11.6936 -3 1 1 61 0.3 290 0 0 0.008228 -0.00299205 -0.00299205 0 0 0 785.363 2.59087e-06 2.59087e-06 0 0 0 16.3075 2.30403 2.30991 11.6936 -3 1 1 62 0.305 290 0 0 0.00804 -0.00293565 -0.00293565 0 0 0 759.043 2.59087e-06 2.59087e-06 0 0 0 16.1624 2.15885 2.30991 11.6936 -3 1 1 63 0.31 290 0 0 0.007845 -0.00287715 -0.00287715 0 0 0 731.743 2.59087e-06 2.59087e-06 0 0 0 16.017 2.0135 2.30991 11.6936 -3 1 1 64 0.315 290 0 0 0.007658 -0.00282105 -0.00282105 0 0 0 705.563 2.59087e-06 2.59087e-06 0 0 0 15.8826 1.87911 2.30991 11.6936 -3 1 1 65 0.32 290 0 0 0.007463 -0.00276255 -0.00276255 0 0 0 678.263 2.59087e-06 2.59087e-06 0 0 0 15.7477 1.74419 2.30991 11.6936 -3 1 1 66 0.325 290 0 0 0.007272 -0.00270525 -0.00270525 0 0 0 651.523 2.59087e-06 2.59087e-06 0 0 0 15.6207 1.61719 2.30991 11.6936 -3 1 1 67 0.33 290 0 0 0.007075 -0.00264615 -0.00264615 0 0 0 623.943 2.59087e-06 2.59087e-06 0 0 0 15.4951 1.49156 2.30991 11.6936 -3 1 1 68 0.335 290 0 0 0.006905 -0.00259515 -0.00259515 0 0 0 600.143 2.59087e-06 2.59087e-06 0 0 0 15.391 1.38751 2.30991 11.6936 -3 1 1 69 0.34 290 0 0 0.006742 -0.00254625 -0.00254625 0 0 0 577.323 2.59087e-06 2.59087e-06 0 0 0 15.2951 1.29155 2.30991 11.6936 -3 1 1 70 0.345 290 0 0 0.006546 -0.00248745 -0.00248745 0 0 0 549.883 2.59087e-06 2.59087e-06 0 0 0 15.1846 1.18108 2.30991 11.6936 -3 1 1 71 0.35 290 0 0 0.006346 -0.00242745 -0.00242745 0 0 0 521.883 2.59087e-06 2.59087e-06 0 0 0 15.0774 1.07391 2.30991 11.6936 -3 1 1 72 0.355 290 0 0 0.006126 -0.00236145 -0.00236145 0 0 0 491.083 2.59087e-06 2.59087e-06 0 0 0 14.966 0.96248 2.30991 11.6936 -3 1 1 73 0.36 290 0 0 0.00591 -0.00229665 -0.00229665 0 0 0 460.843 2.59087e-06 2.59087e-06 0 0 0 14.8632 0.859672 2.30991 11.6936 -3 1 1 74 0.365 290 0 0 0.005677 -0.00222675 -0.00222675 0 0 0 428.223 2.59087e-06 2.59087e-06 0 0 0 14.7596 0.756096 2.30991 11.6936 -3 1 1 75 0.37 290 0 0 0.005433 -0.00215355 -0.00215355 0 0 0 394.063 2.59087e-06 2.59087e-06 0 0 0 14.6593 0.655777 2.30991 11.6936 -3 1 1 76 0.375 290 0 0 0.005204 -0.00208485 -0.00208485 0 0 0 362.003 2.59087e-06 2.59087e-06 0 0 0 14.5727 0.569208 2.30991 11.6936 -3 1 1 77 0.38 290 0 0 0.004997 -0.00202275 -0.00202275 0 0 0 333.023 2.59087e-06 2.59087e-06 0 0 0 14.5008 0.497272 2.30991 11.6936 -3 1 1 78 0.385 290 0 0 0.004791 -0.00196095 -0.00196095 0 0 0 304.183 2.59087e-06 2.59087e-06 0 0 0 14.4352 0.43164 2.30991 11.6936 -3 1 1 79 0.39 290 0 0 0.00459 -0.00190065 -0.00190065 0 0 0 276.043 2.59087e-06 2.59087e-06 0 0 0 14.3768 0.373327 2.30991 11.6936 -3 1 1 80 0.395 290 0 0 0.004387 -0.00183975 -0.00183975 0 0 0 247.623 2.59087e-06 2.59087e-06 0 0 0 14.3237 0.320175 2.30991 11.6936 -3 1 1 81 0.4 290 0 0 0.004184 -0.00177885 -0.00177885 0 0 0 219.203 2.59087e-06 2.59087e-06 0 0 0 14.2763 0.272792 2.30991 11.6936 -3 1 1 82 0.405 290 0 0 0.003983 -0.00171855 -0.00171855 0 0 0 191.063 2.59087e-06 2.59087e-06 0 0 0 14.2351 0.231561 2.30991 11.6936 -3 1 1 83 0.41 290 0 0 0.003784 -0.00165885 -0.00165885 0 0 0 163.203 2.59087e-06 2.59087e-06 0 0 0 14.1998 0.196311 2.30991 11.6936 -3 1 1 84 0.415 290 0 0 0.00358 -0.00159765 -0.00159765 0 0 0 134.643 2.59087e-06 2.59087e-06 0 0 0 14.1694 0.165931 2.30991 11.6936 -3 1 1 85 0.42 290 0 0 0.003381 -0.00153795 -0.00153795 0 0 0 106.783 2.59087e-06 2.59087e-06 0 0 0 14.1454 0.141909 2.30991 11.6936 -3 1 1 86 0.425 290 0 0 0.003179 -0.00147735 -0.00147735 0 0 0 78.5031 2.59087e-06 2.59087e-06 0 0 0 14.1267 0.123195 2.30991 11.6936 -3 1 1 87 0.43 290 0 0 0.002979 -0.00141735 -0.00141735 0 0 0 50.5031 2.59087e-06 2.59087e-06 0 0 0 14.1138 0.110294 2.30991 11.6936 -3 1 1 88 0.435 290 0 0 0.002775 -0.00135615 -0.00135615 0 0 0 21.9431 2.59087e-06 2.59087e-06 0 0 0 14.1064 0.102905 2.30991 11.6936 -3 1 1 89 0.44 290 0 0 0.002575 -0.00129615 -0.00129615 0 0 0 -6.05693 2.59087e-06 2.59087e-06 0 0 0 14.1048 0.101316 2.30991 11.6936 -3 1 1 90 0.445 290 0 0 0.002369 -0.00123435 -0.00123435 0 0 0 -34.8969 2.59087e-06 2.59087e-06 0 0 0 14.1091 0.105535 2.30991 11.6936 -3 1 1 91 0.45 290 0 0 0.002174 -0.00117585 -0.00117585 0 0 0 -62.1969 2.59087e-06 2.59087e-06 0 0 0 14.1185 0.115001 2.30991 11.6936 -3 1 1 92 0.455 290 0 0 0.001967 -0.00111375 -0.00111375 0 0 0 -91.1769 2.59087e-06 2.59087e-06 0 0 0 14.1344 0.130875 2.30991 11.6936 -3 1 1 93 0.46 290 0 0 0.001768 -0.00105405 -0.00105405 0 0 0 -119.037 2.59087e-06 2.59087e-06 0 0 0 14.1553 0.151792 2.30991 11.6936 -3 1 1 94 0.465 290 0 0 0.001568 -0.000994053 -0.000994053 0 0 0 -147.037 2.59087e-06 2.59087e-06 0 0 0 14.1819 0.178399 2.30991 11.6936 -3 1 1 95 0.47 290 0 0 0.001366 -0.000933453 -0.000933453 0 0 0 -175.317 2.59087e-06 2.59087e-06 0 0 0 14.2145 0.210957 2.30991 11.6936 -3 1 1 96 0.475 290 0 0 0.001164 -0.000872853 -0.000872853 0 0 0 -203.597 2.59087e-06 2.59087e-06 0 0 0 14.2527 0.249227 2.30991 11.6936 -3 1 1 97 0.48 290 0 0 0.0009631 -0.000812583 -0.000812583 0 0 0 -231.723 2.59087e-06 2.59087e-06 0 0 0 14.2965 0.292955 2.30991 11.6936 -3 1 1 98 0.485 290 0 0 0.0007598 -0.000751593 -0.000751593 0 0 0 -260.185 2.59087e-06 2.59087e-06 0 0 0 14.3465 0.342957 2.30991 11.6936 -3 1 1 99 0.49 290 0 0 0.0005588 -0.000691293 -0.000691293 0 0 0 -288.325 2.59087e-06 2.59087e-06 0 0 0 14.4016 0.398083 2.30991 11.6936 -3 1 1 100 0.495 290 0 0 0.0003567 -0.000630663 -0.000630663 0 0 0 -316.619 2.59087e-06 2.59087e-06 0 0 0 14.4627 0.459212 2.30991 11.6936 -3 1 1 101 0.5 290 0 0 0.000161 -0.000571953 -0.000571953 0 0 0 -344.017 2.59087e-06 2.59087e-06 0 0 0 14.5274 0.523855 2.30991 11.6936 -3 1 1 102 0.505 290 0 0 -4.58e-05 -0.000509913 -0.000509913 0 0 0 -372.969 2.59087e-06 2.59087e-06 0 0 0 14.6015 0.597992 2.30991 11.6936 -3 1 1 103 0.51 290 0 0 -0.000251 -0.000448353 -0.000448353 0 0 0 -401.697 2.59087e-06 2.59087e-06 0 0 0 14.681 0.677473 2.30991 11.6936 -3 1 1 104 0.515 290 0 0 -0.000473 -0.000381753 -0.000381753 0 0 0 -432.777 2.59087e-06 2.59087e-06 0 0 0 14.7736 0.770099 2.30991 11.6936 -3 1 1 105 0.52 290 0 0 -0.0006533 -0.000327663 -0.000327663 0 0 0 -458.019 2.59087e-06 2.59087e-06 0 0 0 14.8539 0.850404 2.30991 11.6936 -3 1 1 106 0.525 290 0 0 -0.0008338 -0.000273513 -0.000273513 0 0 0 -483.289 2.59087e-06 2.59087e-06 0 0 0 14.9389 0.935357 2.30991 11.6936 -3 1 1 107 0.53 290 0 0 -0.001036 -0.000212853 -0.000212853 0 0 0 -511.597 2.59087e-06 2.59087e-06 0 0 0 15.0395 1.03594 2.30991 11.6936 -3 1 1 108 0.535 290 0 0 -0.001266 -0.000143853 -0.000143853 0 0 0 -543.797 2.59087e-06 2.59087e-06 0 0 0 15.1608 1.15731 2.30991 11.6936 -3 1 1 109 0.54 290 0 0 -0.001442 -9.10527e-05 -9.10527e-05 0 0 0 -568.437 2.59087e-06 2.59087e-06 0 0 0 15.2587 1.25519 2.30991 11.6936 -3 1 1 110 0.545 290 0 0 -0.001663 -2.47527e-05 -2.47527e-05 0 0 0 -599.377 2.59087e-06 2.59087e-06 0 0 0 15.3877 1.38423 2.30991 11.6936 -3 1 1 111 0.55 290 0 0 -0.001853 3.22473e-05 3.22473e-05 0 0 0 -625.977 2.59087e-06 2.59087e-06 0 0 0 15.5042 1.50064 2.30991 11.6936 -3 1 1 112 0.555 290 0 0 -0.002054 9.25473e-05 9.25473e-05 0 0 0 -654.117 2.59087e-06 2.59087e-06 0 0 0 15.6328 1.62929 2.30991 11.6936 -3 1 1 113 0.56 290 0 0 -0.002259 0.000154047 0.000154047 0 0 0 -682.817 2.59087e-06 2.59087e-06 0 0 0 15.7698 1.76632 2.30991 11.6936 -3 1 1 114 0.565 290 0 0 -0.002461 0.000214647 0.000214647 0 0 0 -711.097 2.59087e-06 2.59087e-06 0 0 0 15.9106 1.90711 2.30991 11.6936 -3 1 1 115 0.57 290 0 0 -0.002659 0.000274047 0.000274047 0 0 0 -738.817 2.59087e-06 2.59087e-06 0 0 0 16.0542 2.05065 2.30991 11.6936 -3 1 1 116 0.575 290 0 0 -0.002862 0.000340735 0.000340735 0 0 0 -763.185 2.59273e-06 2.59273e-06 0 0 0 16.2066 2.175 2.31768 11.7139 -3 1 1 117 0.58 290 0 0 -0.003061 0.000410734 0.000410734 0 0 0 -783.836 2.32189e-06 2.3219e-06 0 0 0 16.3606 2.27982 2.33155 11.7492 -3 1 1 118 0.585 290 0 0 -0.003257 0.000480771 0.000480771 0 0 0 -803.41 1.9348e-06 1.9348e-06 0 0 0 16.5161 2.38298 2.34673 11.7864 -3 1 1 119 0.59 290 0 0 -0.003458 0.000553884 0.000553884 0 0 0 -822.581 1.29747e-06 1.29747e-06 0 0 0 16.6795 2.48743 2.36409 11.828 -3 1 1 120 0.595 290 0 0 -0.003656 0.000627383 0.000627383 0 0 0 -840.432 1.30002e-06 1.30002e-06 0 0 0 16.8442 2.58746 2.38327 11.8734 -3 1 1 121 0.6 290 0 0 -0.003869 0.000708261 0.000708261 0 0 0 -858.368 1.30545e-06 1.30545e-06 0 0 0 17.0251 2.6904 2.40645 11.9282 -3 1 1 122 0.605 290 0 0 -0.004064 0.00078419 0.00078419 0 0 0 -873.467 1.30988e-06 1.30988e-06 0 0 0 17.1939 2.7786 2.43037 11.985 -3 1 1 123 0.61 290 0 0 -0.004268 0.000865598 0.000865598 0 0 0 -887.882 1.31565e-06 1.31565e-06 0 0 0 17.3736 2.8639 2.45824 12.0515 -3 1 1 124 0.615 290 0 0 -0.004478 0.000951524 0.000951524 0 0 0 -901.233 1.321e-06 1.321e-06 0 0 0 17.5614 2.9436 2.49004 12.1278 -3 1 1 125 0.62 290 0 0 -0.004672 0.00103275 0.00103275 0 0 0 -912.274 1.32315e-06 1.32315e-06 0 0 0 17.7374 3.00989 2.52217 12.2053 -3 1 1 126 0.625 290 0 0 -0.004881 0.00112192 0.00112192 0 0 0 -923.007 7.42425e-07 7.42426e-07 0 0 0 17.9291 3.07476 2.55935 12.295 -3 1 1 127 0.63 290 0 0 -0.00507 0.00120382 0.00120382 0 0 0 -931.824 5.64115e-07 5.64116e-07 0 0 0 18.1044 3.12847 2.59499 12.381 -3 1 1 128 0.635 290 0 0 -0.005275 0.00129366 0.00129366 0 0 0 -940.691 4.58854e-07 4.58855e-07 0 0 0 18.2964 3.18318 2.63534 12.4778 -3 1 1 129 0.64 290 0 0 -0.005476 0.00138251 0.00138251 0 0 0 -948.842 4.21922e-07 4.21923e-07 0 0 0 18.4863 3.23432 2.6763 12.5756 -3 1 1 130 0.645 290 0 0 -0.005679 0.00147281 0.00147281 0 0 0 -956.684 4.06979e-07 4.0698e-07 0 0 0 18.6797 3.28451 2.71879 12.6764 -3 1 1 131 0.65 290 0 0 -0.005881 0.00156307 0.00156307 0 0 0 -964.199 4.00867e-07 4.00868e-07 0 0 0 18.8737 3.33367 2.76198 12.778 -3 1 1 132 0.655 290 0 0 -0.006082 0.00165319 0.00165319 0 0 0 -971.464 3.9802e-07 3.98021e-07 0 0 0 19.0682 3.38226 2.80572 12.8802 -3 1 1 133 0.66 290 0 0 -0.006282 0.00174311 0.00174311 0 0 0 -978.525 3.96476e-07 3.96477e-07 0 0 0 19.2632 3.43057 2.84993 12.9827 -3 1 1 134 0.665 290 0 0 -0.006482 0.00183322 0.00183322 0 0 0 -985.448 3.95488e-07 3.95489e-07 0 0 0 19.4596 3.47897 2.89475 13.0859 -3 1 1 135 0.67 290 0 0 -0.006687 0.00192576 0.00192576 0 0 0 -992.421 3.94702e-07 3.94702e-07 0 0 0 19.6623 3.52877 2.94131 13.1923 -3 1 1 136 0.675 290 0 0 -0.006887 0.00201619 0.00201619 0 0 0 -999.114 3.94138e-07 3.94138e-07 0 0 0 19.8615 3.57755 2.9873 13.2966 -3 1 1 137 0.68 290 0 0 -0.00709 0.00210814 0.00210814 0 0 0 -1005.8 3.93629e-07 3.9363e-07 0 0 0 20.065 3.62726 3.03456 13.4032 -3 1 1 138 0.685 290 0 0 -0.00729 0.00219886 0.00219886 0 0 0 -1012.3 3.93204e-07 3.93205e-07 0 0 0 20.2668 3.67642 3.08167 13.5087 -3 1 1 139 0.69 290 0 0 -0.007495 0.00229198 0.00229198 0 0 0 -1018.86 3.92775e-07 3.92776e-07 0 0 0 20.475 3.72698 3.13053 13.6175 -3 1 1 140 0.695 290 0 0 -0.007697 0.00238388 0.00238388 0 0 0 -1025.24 3.924e-07 3.92401e-07 0 0 0 20.6814 3.77691 3.17923 13.7253 -3 1 1 141 0.7 290 0 0 -0.007895 0.00247408 0.00247408 0 0 0 -1031.4 3.92074e-07 3.92075e-07 0 0 0 20.8851 3.82594 3.2275 13.8316 -3 1 1 142 0.705 290 0 0 -0.008104 0.00256941 0.00256941 0 0 0 -1037.81 3.91692e-07 3.91693e-07 0 0 0 21.1013 3.87776 3.27904 13.9445 -3 1 1 143 0.71 290 0 0 -0.008306 0.00266168 0.00266168 0 0 0 -1043.92 3.91376e-07 3.91377e-07 0 0 0 21.3115 3.92786 3.32941 14.0543 -3 1 1 144 0.715 290 0 0 -0.008502 0.00275133 0.00275133 0 0 0 -1049.77 3.9111e-07 3.91111e-07 0 0 0 21.5167 3.97646 3.37882 14.1614 -3 1 1 145 0.72 290 0 0 -0.008711 0.00284704 0.00284704 0 0 0 -1055.92 3.90783e-07 3.90784e-07 0 0 0 21.7368 4.02825 3.43208 14.2764 -3 1 1 146 0.725 290 0 0 -0.008908 0.00293738 0.00293738 0 0 0 -1061.64 3.90538e-07 3.90539e-07 0 0 0 21.9453 4.07699 3.48284 14.3855 -3 1 1 147 0.73 290 0 0 -0.009117 0.00303333 0.00303333 0 0 0 -1067.62 3.90243e-07 3.90243e-07 0 0 0 22.1679 4.1286 3.53725 14.502 -3 1 1 148 0.735 290 0 0 -0.00931 0.00312205 0.00312205 0 0 0 -1073.07 3.90039e-07 3.90039e-07 0 0 0 22.3744 4.17613 3.58804 14.6103 -3 1 1 149 0.74 290 0 0 -0.009518 0.00321777 0.00321777 0 0 0 -1078.86 3.89777e-07 3.89778e-07 0 0 0 22.5982 4.22721 3.64334 14.7277 -3 1 1 150 0.745 290 0 0 -0.009719 0.00331039 0.00331039 0 0 0 -1084.38 3.89561e-07 3.89562e-07 0 0 0 22.8156 4.27638 3.69734 14.8419 -3 1 1 151 0.75 290 0 0 -0.009925 0.00340541 0.00340541 0 0 0 -1089.96 3.89335e-07 3.89336e-07 0 0 0 23.0396 4.32659 3.75325 14.9597 -3 1 1 152 0.755 290 0 0 -0.009932 0.00340865 0.00340865 0 0 0 -1090.15 3.89381e-07 3.89382e-07 0 0 0 23.0472 4.32829 3.75517 14.9638 -3 1 1 153 0.76 290 0 0 -0.009694 0.00333725 0.00333725 0 0 0 -1056.83 3.89381e-07 3.89382e-07 0 0 0 22.7917 4.0728 3.75517 14.9638 -3 1 1 154 0.765 290 0 0 -0.009514 0.00328325 0.00328325 0 0 0 -1031.63 3.89381e-07 3.89382e-07 0 0 0 22.6038 3.88484 3.75517 14.9638 -3 1 1 155 0.77 290 0 0 -0.00933 0.00322805 0.00322805 0 0 0 -1005.87 3.89381e-07 3.89382e-07 0 0 0 22.4163 3.69739 3.75517 14.9638 -3 1 1 156 0.775 290 0 0 -0.009136 0.00316985 0.00316985 0 0 0 -978.708 3.89381e-07 3.89382e-07 0 0 0 22.2238 3.50488 3.75517 14.9638 -3 1 1 157 0.78 290 0 0 -0.008945 0.00311255 0.00311255 0 0 0 -951.968 3.89381e-07 3.89382e-07 0 0 0 22.0394 3.3205 3.75517 14.9638 -3 1 1 158 0.785 290 0 0 -0.008755 0.00305555 0.00305555 0 0 0 -925.368 3.89381e-07 3.89382e-07 0 0 0 21.8611 3.14216 3.75517 14.9638 -3 1 1 159 0.79 290 0 0 -0.008566 0.00299885 0.00299885 0 0 0 -898.908 3.89381e-07 3.89382e-07 0 0 0 21.6887 2.96976 3.75517 14.9638 -3 1 1 160 0.795 290 0 0 -0.008376 0.00294185 0.00294185 0 0 0 -872.308 3.89381e-07 3.89382e-07 0 0 0 21.5204 2.8015 3.75517 14.9638 -3 1 1 161 0.8 290 0 0 -0.008206 0.00289085 0.00289085 0 0 0 -848.508 3.89381e-07 3.89382e-07 0 0 0 21.3742 2.65523 3.75517 14.9638 -3 1 1 162 0.805 290 0 0 -0.008016 0.00283385 0.00283385 0 0 0 -821.908 3.89381e-07 3.89382e-07 0 0 0 21.2155 2.49654 3.75517 14.9638 -3 1 1 163 0.81 290 0 0 -0.007818 0.00277445 0.00277445 0 0 0 -794.188 3.89381e-07 3.89382e-07 0 0 0 21.0555 2.33654 3.75517 14.9638 -3 1 1 164 0.815 290 0 0 -0.007621 0.00271535 0.00271535 0 0 0 -766.608 3.89381e-07 3.89382e-07 0 0 0 20.9017 2.1828 3.75517 14.9638 -3 1 1 165 0.82 290 0 0 -0.007428 0.00265745 0.00265745 0 0 0 -739.588 3.89381e-07 3.89382e-07 0 0 0 20.7564 2.03746 3.75517 14.9638 -3 1 1 166 0.825 290 0 0 -0.007235 0.00259955 0.00259955 0 0 0 -712.568 3.89381e-07 3.89382e-07 0 0 0 20.6163 1.89732 3.75517 14.9638 -3 1 1 167 0.83 290 0 0 -0.007034 0.00253925 0.00253925 0 0 0 -684.428 3.89381e-07 3.89382e-07 0 0 0 20.4759 1.75692 3.75517 14.9638 -3 1 1 168 0.835 290 0 0 -0.006843 0.00248195 0.00248195 0 0 0 -657.688 3.89381e-07 3.89382e-07 0 0 0 20.3477 1.62875 3.75517 14.9638 -3 1 1 169 0.84 290 0 0 -0.006644 0.00242225 0.00242225 0 0 0 -629.828 3.89381e-07 3.89382e-07 0 0 0 20.2196 1.50064 3.75517 14.9638 -3 1 1 170 0.845 290 0 0 -0.006447 0.00236315 0.00236315 0 0 0 -602.248 3.89381e-07 3.89382e-07 0 0 0 20.0982 1.37929 3.75517 14.9638 -3 1 1 171 0.85 290 0 0 -0.006255 0.00230555 0.00230555 0 0 0 -575.368 3.89381e-07 3.89382e-07 0 0 0 19.9852 1.26623 3.75517 14.9638 -3 1 1 172 0.855 290 0 0 -0.006061 0.00224735 0.00224735 0 0 0 -548.208 3.89381e-07 3.89382e-07 0 0 0 19.8762 1.15725 3.75517 14.9638 -3 1 1 173 0.86 290 0 0 -0.005869 0.00218975 0.00218975 0 0 0 -521.328 3.89381e-07 3.89382e-07 0 0 0 19.7735 1.05457 3.75517 14.9638 -3 1 1 174 0.865 290 0 0 -0.005716 0.00214385 0.00214385 0 0 0 -499.908 3.89381e-07 3.89382e-07 0 0 0 19.6954 0.976447 3.75517 14.9638 -3 1 1 175 0.87 290 0 0 -0.005559 0.00209675 0.00209675 0 0 0 -477.928 3.89381e-07 3.89382e-07 0 0 0 19.6186 0.899687 3.75517 14.9638 -3 1 1 176 0.875 290 0 0 -0.00536 0.00203705 0.00203705 0 0 0 -450.068 3.89381e-07 3.89382e-07 0 0 0 19.5263 0.807351 3.75517 14.9638 -3 1 1 177 0.88 290 0 0 -0.005148 0.00197345 0.00197345 0 0 0 -420.388 3.89381e-07 3.89382e-07 0 0 0 19.434 0.715083 3.75517 14.9638 -3 1 1 178 0.885 290 0 0 -0.004948 0.00191345 0.00191345 0 0 0 -392.388 3.89381e-07 3.89382e-07 0 0 0 19.3527 0.633805 3.75517 14.9638 -3 1 1 179 0.89 290 0 0 -0.004718 0.00184445 0.00184445 0 0 0 -360.188 3.89381e-07 3.89382e-07 0 0 0 19.2662 0.547259 3.75517 14.9638 -3 1 1 180 0.895 290 0 0 -0.004497 0.00177815 0.00177815 0 0 0 -329.248 3.89381e-07 3.89382e-07 0 0 0 19.19 0.471076 3.75517 14.9638 -3 1 1 181 0.9 290 0 0 -0.00426 0.00170705 0.00170705 0 0 0 -296.068 3.89381e-07 3.89382e-07 0 0 0 19.1159 0.396976 3.75517 14.9638 -3 1 1 182 0.905 290 0 0 -0.004032 0.00163865 0.00163865 0 0 0 -264.148 3.89381e-07 3.89382e-07 0 0 0 19.052 0.333111 3.75517 14.9638 -3 1 1 183 0.91 290 0 0 -0.003822 0.00157565 0.00157565 0 0 0 -234.748 3.89381e-07 3.89382e-07 0 0 0 18.9997 0.280727 3.75517 14.9638 -3 1 1 184 0.915 290 0 0 -0.003625 0.00151655 0.00151655 0 0 0 -207.168 3.89381e-07 3.89382e-07 0 0 0 18.9561 0.237198 3.75517 14.9638 -3 1 1 185 0.92 290 0 0 -0.00342 0.00145505 0.00145505 0 0 0 -178.468 3.89381e-07 3.89382e-07 0 0 0 18.9166 0.19767 3.75517 14.9638 -3 1 1 186 0.925 290 0 0 -0.003221 0.00139535 0.00139535 0 0 0 -150.608 3.89381e-07 3.89382e-07 0 0 0 18.8839 0.164927 3.75517 14.9638 -3 1 1 187 0.93 290 0 0 -0.003025 0.00133655 0.00133655 0 0 0 -123.168 3.89381e-07 3.89382e-07 0 0 0 18.857 0.138097 3.75517 14.9638 -3 1 1 188 0.935 290 0 0 -0.002824 0.00127625 0.00127625 0 0 0 -95.0284 3.89381e-07 3.89382e-07 0 0 0 18.8351 0.116168 3.75517 14.9638 -3 1 1 189 0.94 290 0 0 -0.002622 0.00121565 0.00121565 0 0 0 -66.7484 3.89381e-07 3.89382e-07 0 0 0 18.8188 0.0998287 3.75517 14.9638 -3 1 1 190 0.945 290 0 0 -0.002429 0.00115775 0.00115775 0 0 0 -39.7284 3.89381e-07 3.89382e-07 0 0 0 18.8085 0.0895537 3.75517 14.9638 -3 1 1 191 0.95 290 0 0 -0.002227 0.00109715 0.00109715 0 0 0 -11.4484 3.89381e-07 3.89382e-07 0 0 0 18.8033 0.0843848 3.75517 14.9638 -3 1 1 192 0.955 290 0 0 -0.002033 0.00103895 0.00103895 0 0 0 15.7116 3.89381e-07 3.89382e-07 0 0 0 18.8037 0.0847983 3.75517 14.9638 -3 1 1 193 0.96 290 0 0 -0.001832 0.000978645 0.000978645 0 0 0 43.8516 3.89381e-07 3.89382e-07 0 0 0 18.8097 0.0907844 3.75517 14.9638 -3 1 1 194 0.965 290 0 0 -0.001634 0.000919245 0.000919245 0 0 0 71.5716 3.89381e-07 3.89382e-07 0 0 0 18.8211 0.102211 3.75517 14.9638 -3 1 1 195 0.97 290 0 0 -0.001432 0.000858645 0.000858645 0 0 0 99.8516 3.89381e-07 3.89382e-07 0 0 0 18.8385 0.119525 3.75517 14.9638 -3 1 1 196 0.975 290 0 0 -0.001236 0.000799845 0.000799845 0 0 0 127.292 3.89381e-07 3.89382e-07 0 0 0 18.8607 0.141785 3.75517 14.9638 -3 1 1 197 0.98 290 0 0 -0.001033 0.000738945 0.000738945 0 0 0 155.712 3.89381e-07 3.89382e-07 0 0 0 18.8894 0.17051 3.75517 14.9638 -3 1 1 198 0.985 290 0 0 -0.0008346 0.000679425 0.000679425 0 0 0 183.488 3.89381e-07 3.89382e-07 0 0 0 18.9231 0.204158 3.75517 14.9638 -3 1 1 199 0.99 290 0 0 -0.0006298 0.000617985 0.000617985 0 0 0 212.16 3.89381e-07 3.89382e-07 0 0 0 18.9636 0.244673 3.75517 14.9638 -3 1 1 200 0.995 290 0 0 -0.000429 0.000557745 0.000557745 0 0 0 240.272 3.89381e-07 3.89382e-07 0 0 0 19.009 0.290097 3.75517 14.9638 -3 1 1 201 1 290 0 0 -0.000228 0.000497445 0.000497445 0 0 0 268.412 3.89381e-07 3.89382e-07 0 0 0 19.0602 0.341219 3.75517 14.9638 +1 1 1 1 0.01 290 0 0 0.0001 -3e-05 -3e-05 0 0 0 14 -7.45968e-16 -1.14094e-15 0 0 0 0.0007 0.0007 0 0 +1 1 1 2 0.02 290 0 0 0.0002 -6e-05 -6e-05 0 0 0 28 -1.49194e-15 -2.28188e-15 0 0 0 0.0028 0.0028 0 0 +1 1 1 3 0.03 290 0 0 0.0003 -9e-05 -9e-05 0 0 0 42 -3.57017e-15 -4.311e-15 0 0 0 0.0063 0.0063 0 0 +1 1 1 4 0.04 290 0 0 0.0004 -0.00012 -0.00012 0 0 0 56 -2.98387e-15 -4.56376e-15 0 0 0 0.0112 0.0112 0 0 +1 1 1 5 0.05 290 0 0 0.0005 -0.00015 -0.00015 0 0 0 70 -4.17393e-15 -8.36924e-15 0 0 0 0.0175 0.0175 0 0 +1 1 1 6 0.06 290 0 0 0.0006 -0.00018 -0.00018 0 0 0 84 -7.14034e-15 -8.622e-15 0 0 0 0.0252 0.0252 0 0 +1 1 1 7 0.07 290 0 0 0.0007 -0.00021 -0.00021 0 0 0 98 -1.01068e-14 -1.59802e-14 0 0 0 0.0343 0.0343 0 0 +1 1 1 8 0.08 290 0 0 0.0008 -0.00024 -0.00024 0 0 0 112 -2.01786e-14 -2.33384e-14 0 0 0 0.0448 0.0448 0 0 +1 1 1 9 0.09 290 0 0 0.0009 -0.00027 -0.00027 0 0 0 126 -1.38503e-14 -1.13775e-14 0 0 0 0.0567 0.0567 0 0 +1 1 1 10 0.1 290 0 0 0.001 -0.0003 -0.0003 0 0 0 140 -1.81802e-14 -2.07328e-14 0 0 0 0.07 0.07 0 0 +1 1 1 11 0.11 290 0 0 0.0011 -0.00033 -0.00033 0 0 0 154 -4.74651e-15 -8.77189e-15 0 0 0 0.0847 0.0847 0 0 +1 1 1 12 0.12 290 0 0 0.0012 -0.00036 -0.00036 0 0 0 168 5.13447e-15 3.18904e-15 0 0 0 0.1008 0.1008 0 0 +1 1 1 13 0.13 290 0 0 0.0013 -0.00039 -0.00039 0 0 0 182 1.50155e-14 1.515e-14 0 0 0 0.1183 0.1183 0 0 +1 1 1 14 0.14 290 0 0 0.0014 -0.00042 -0.00042 0 0 0 196 2.84492e-14 2.71109e-14 0 0 0 0.1372 0.1372 0 0 +1 1 1 15 0.15 290 0 0 0.0015 -0.00045 -0.00045 0 0 0 210 3.47774e-14 3.90718e-14 0 0 0 0.1575 0.1575 0 0 +1 1 1 16 0.16 290 0 0 0.0016 -0.00048 -0.00048 0 0 0 224 6.2422e-14 6.52436e-14 0 0 0 0.1792 0.1792 0 0 +1 1 1 17 0.17 290 0 0 0.0017 -0.00051 -0.00051 0 0 0 238 6.16448e-14 6.29937e-14 0 0 0 0.2023 0.2023 0 0 +1 1 1 18 0.18 290 0 0 0.0018 -0.00054 -0.00054 0 0 0 252 8.92894e-14 8.91654e-14 0 0 0 0.2268 0.2268 0 0 +1 1 1 19 0.19 290 0 0 0.0019 -0.00057 -0.00057 0 0 0 266 8.14068e-14 8.69155e-14 0 0 0 0.2527 0.2527 0 0 +1 1 1 20 0.2 290 0 0 0.002 -0.0006 -0.0006 0 0 0 280 1.09051e-13 1.13087e-13 0 0 0 0.28 0.28 0 0 +1 1 1 21 0.21 290 0 0 0.0021 -0.00063 -0.00063 0 0 0 294 7.98525e-14 8.24157e-14 0 0 0 0.3087 0.3087 0 0 +1 1 1 22 0.22 290 0 0 0.0022 -0.00066 -0.00066 0 0 0 308 7.19699e-14 8.01657e-14 0 0 0 0.3388 0.3388 0 0 +1 1 1 23 0.23 290 0 0 0.0023 -0.00069 -0.00069 0 0 0 322 7.11927e-14 6.37049e-14 0 0 0 0.3703 0.3703 0 0 +1 1 1 24 0.24 290 0 0 0.0024 -0.00072 -0.00072 0 0 0 336 7.04155e-14 7.56659e-14 0 0 0 0.4032 0.4032 0 0 +1 1 1 25 0.25 290 0 0 0.0025 -0.00075 -0.00075 0 0 0 350 6.2533e-14 5.92051e-14 0 0 0 0.4375 0.4375 0 0 +1 1 1 26 0.26 290 0 0 0.0026 -0.00078 -0.00078 0 0 0 364 6.17558e-14 7.1166e-14 0 0 0 0.4732 0.4732 0 0 +1 1 1 27 0.27 290 0 0 0.0027 -0.00081 -0.00081 0 0 0 378 6.09786e-14 5.47052e-14 0 0 0 0.5103 0.5103 0 0 +1 1 1 28 0.28 290 0 0 0.0028 -0.00084 -0.00084 0 0 0 392 6.02015e-14 6.66661e-14 0 0 0 0.5488 0.5488 0 0 +1 1 1 29 0.29 290 0 0 0.0029 -0.00087 -0.00087 0 0 0 406 5.94243e-14 5.02054e-14 0 0 0 0.5887 0.5887 0 0 +1 1 1 30 0.3 290 0 0 0.003 -0.0009 -0.0009 0 0 0 420 1.60146e-14 3.37446e-14 0 0 0 0.63 0.63 0 0 +1 1 1 31 0.31 290 0 0 0.0031 -0.00093 -0.00093 0 0 0 434 1.52374e-14 1.72838e-14 0 0 0 0.6727 0.6727 0 0 +1 1 1 32 0.32 290 0 0 0.0032 -0.00096 -0.00096 0 0 0 448 1.44603e-14 2.92447e-14 0 0 0 0.7168 0.7168 0 0 +1 1 1 33 0.33 290 0 0 0.0033 -0.00099 -0.00099 0 0 0 462 4.9261e-15 2.07726e-14 0 0 0 0.7623 0.7623 0 0 +1 1 1 34 0.34 290 0 0 0.0034 -0.00102 -0.00102 0 0 0 476 -4.72406e-14 -4.45429e-14 0 0 0 0.8092 0.8092 0 0 +1 1 1 35 0.35 290 0 0 0.0035 -0.00105 -0.00105 0 0 0 490 -1.13618e-13 -1.09858e-13 0 0 0 0.8575 0.8575 0 0 +1 1 1 36 0.36 290 0 0 0.0036 -0.00108 -0.00108 0 0 0 504 -1.08942e-13 -1.18331e-13 0 0 0 0.9072 0.9072 0 0 +1 1 1 37 0.37 290 0 0 0.0037 -0.00111 -0.00111 0 0 0 518 -1.75319e-13 -1.83646e-13 0 0 0 0.9583 0.9583 0 0 +1 1 1 38 0.38 290 0 0 0.0038 -0.00114 -0.00114 0 0 0 532 -1.84853e-13 -1.92118e-13 0 0 0 1.0108 1.0108 0 0 +1 1 1 39 0.39 290 0 0 0.0039 -0.00117 -0.00117 0 0 0 546 -2.3702e-13 -2.29012e-13 0 0 0 1.0647 1.0647 0 0 +1 1 1 40 0.4 290 0 0 0.004 -0.0012 -0.0012 0 0 0 560 -2.46554e-13 -2.37484e-13 0 0 0 1.12 1.12 0 0 +1 1 1 41 0.41 290 0 0 0.0041 -0.00123 -0.00123 0 0 0 574 -2.41878e-13 -2.45956e-13 0 0 0 1.1767 1.1767 0 0 +1 1 1 42 0.42 290 0 0 0.0042 -0.00126 -0.00126 0 0 0 588 -2.51412e-13 -2.54428e-13 0 0 0 1.2348 1.2348 0 0 +1 1 1 43 0.43 290 0 0 0.0043 -0.00129 -0.00129 0 0 0 602 -2.46735e-13 -2.62901e-13 0 0 0 1.2943 1.2943 0 0 +1 1 1 44 0.44 290 0 0 0.0044 -0.00132 -0.00132 0 0 0 616 -2.56269e-13 -2.71373e-13 0 0 0 1.3552 1.3552 0 0 +1 1 1 45 0.45 290 0 0 0.0045 -0.00135482 -0.00135482 0 0 0 626.625 -1.28011e-09 -1.28013e-09 0 0 0 1.41733 1.40235 0.00012903 0.0148478 +1 1 1 46 0.46 290 0 0 0.0046 -0.00139252 -0.00139252 0 0 0 635.233 7.5119e-08 7.51189e-08 0 0 0 1.48042 1.44114 0.000641315 0.0386381 +1 1 1 47 0.47 290 0 0 0.0047 -0.00143069 -0.00143069 0 0 0 643.52 1.63557e-07 1.63557e-07 0 0 0 1.54436 1.47899 0.00149358 0.0638733 +1 1 1 48 0.48 290 0 0 0.0048 -0.00146933 -0.00146933 0 0 0 651.472 2.63281e-07 2.63281e-07 0 0 0 1.60911 1.51577 0.00270752 0.0906325 +1 1 1 49 0.49 290 0 0 0.0049 -0.00150847 -0.00150847 0 0 0 659.074 3.7225e-07 3.7225e-07 0 0 0 1.67464 1.55135 0.0043034 0.118985 +1 1 1 50 0.5 290 0 0 0.005 -0.00154812 -0.00154812 0 0 0 666.314 4.87008e-07 4.87008e-07 0 0 0 1.74091 1.58562 0.006299 0.148986 +1 1 1 51 0.51 290 0 0 0.0051 -0.0015883 -0.0015883 0 0 0 673.187 6.02869e-07 6.02869e-07 0 0 0 1.80788 1.6185 0.00870863 0.180672 +1 1 1 52 0.52 290 0 0 0.0052 -0.00162901 -0.00162901 0 0 0 679.691 7.14459e-07 7.14459e-07 0 0 0 1.87553 1.64993 0.0115421 0.214055 +1 1 1 53 0.53 290 0 0 0.0053 -0.00167024 -0.00167024 0 0 0 685.832 8.16573e-07 8.16573e-07 0 0 0 1.9438 1.67987 0.014804 0.249124 +1 1 1 54 0.54 290 0 0 0.0054 -0.00171197 -0.00171197 0 0 0 691.619 9.05103e-07 9.05103e-07 0 0 0 2.01268 1.70834 0.0184931 0.285838 +1 1 1 55 0.55 290 0 0 0.0055 -0.00175419 -0.00175419 0 0 0 697.07 9.77725e-07 9.77725e-07 0 0 0 2.08211 1.73538 0.0226025 0.324129 +1 1 1 56 0.56 290 0 0 0.0056 -0.00179685 -0.00179685 0 0 0 702.206 1.03412e-06 1.03412e-06 0 0 0 2.15207 1.76105 0.0271198 0.363907 +1 1 1 57 0.57 290 0 0 0.0057 -0.00183992 -0.00183992 0 0 0 707.054 1.07567e-06 1.07567e-06 0 0 0 2.22254 1.78545 0.0320281 0.405063 +1 1 1 58 0.58 290 0 0 0.0058 -0.00188337 -0.00188337 0 0 0 711.641 1.10484e-06 1.10484e-06 0 0 0 2.29347 1.80869 0.0373075 0.447476 +1 1 1 59 0.59 290 0 0 0.0059 -0.00192715 -0.00192715 0 0 0 715.997 1.12445e-06 1.12445e-06 0 0 0 2.36485 1.8309 0.0429357 0.491019 +1 1 1 60 0.6 290 0 0 0.006 -0.00197121 -0.00197121 0 0 0 720.151 1.13716e-06 1.13716e-06 0 0 0 2.43666 1.8522 0.0488898 0.535567 +1 1 1 61 0.61 290 0 0 0.0061 -0.00201553 -0.00201553 0 0 0 724.129 1.14517e-06 1.14517e-06 0 0 0 2.50887 1.87273 0.0551474 0.581001 +1 1 1 62 0.62 290 0 0 0.0062 -0.00206006 -0.00206006 0 0 0 727.958 1.15011e-06 1.15011e-06 0 0 0 2.58148 1.89258 0.061687 0.627209 +1 1 1 63 0.63 290 0 0 0.0063 -0.00210477 -0.00210477 0 0 0 731.659 1.15312e-06 1.15312e-06 0 0 0 2.65446 1.91188 0.0684889 0.674095 +1 1 1 64 0.64 290 0 0 0.0064 -0.00214964 -0.00214964 0 0 0 735.252 1.15494e-06 1.15494e-06 0 0 0 2.72781 1.9307 0.0755356 0.721571 +1 1 1 65 0.65 290 0 0 0.0065 -0.00219464 -0.00219464 0 0 0 738.753 1.15605e-06 1.15605e-06 0 0 0 2.80151 1.94913 0.0828114 0.769565 +1 1 1 66 0.66 290 0 0 0.0066 -0.00223975 -0.00223975 0 0 0 742.176 1.15673e-06 1.15673e-06 0 0 0 2.87555 1.96723 0.090303 0.818015 +1 1 1 67 0.67 290 0 0 0.0067 -0.00228495 -0.00228495 0 0 0 745.533 1.15716e-06 1.15716e-06 0 0 0 2.94994 1.98507 0.0979986 0.866869 +1 1 1 68 0.68 290 0 0 0.0068 -0.00233024 -0.00233024 0 0 0 748.833 1.15743e-06 1.15743e-06 0 0 0 3.02466 2.00268 0.105889 0.916085 +1 1 1 69 0.69 290 0 0 0.0069 -0.00237559 -0.00237559 0 0 0 752.084 1.15761e-06 1.15761e-06 0 0 0 3.0997 2.02011 0.113965 0.965629 +1 1 1 70 0.7 290 0 0 0.007 -0.00242101 -0.00242101 0 0 0 755.292 5.16808e-07 5.16808e-07 0 0 0 3.17507 2.03738 0.12222 1.01547 +1 1 1 71 0.71 290 0 0 0.0071 -0.00246648 -0.00246648 0 0 0 758.462 8.73085e-09 8.73089e-09 0 0 0 3.25076 2.05452 0.130648 1.06559 +1 1 1 72 0.72 290 0 0 0.0072 -0.002512 -0.002512 0 0 0 761.598 -4.04041e-07 -4.04041e-07 0 0 0 3.32676 2.07154 0.139243 1.11598 +1 1 1 73 0.73 290 0 0 0.0073 -0.00255757 -0.00255757 0 0 0 764.704 -7.47593e-07 -7.47593e-07 0 0 0 3.40308 2.08847 0.148003 1.1666 +1 1 1 74 0.74 290 0 0 0.0074 -0.00260317 -0.00260317 0 0 0 767.782 -1.04025e-06 -1.04025e-06 0 0 0 3.4797 2.10532 0.156922 1.21746 +1 1 1 75 0.75 290 0 0 0.0075 -0.00264881 -0.00264881 0 0 0 770.834 -1.29501e-06 -1.29501e-06 0 0 0 3.55663 2.12209 0.165998 1.26855 +1 1 1 76 0.76 290 0 0 0.0076 -0.00269448 -0.00269448 0 0 0 773.861 -1.52116e-06 -1.52116e-06 0 0 0 3.63387 2.13879 0.175228 1.31985 +1 1 1 77 0.77 290 0 0 0.0077 -0.00274019 -0.00274019 0 0 0 776.866 -1.72544e-06 -1.72544e-06 0 0 0 3.7114 2.15543 0.184609 1.37136 +1 1 1 78 0.78 290 0 0 0.0078 -0.00278593 -0.00278593 0 0 0 779.849 -1.91275e-06 -1.91275e-06 0 0 0 3.78924 2.17201 0.194139 1.42309 +1 1 1 79 0.79 290 0 0 0.0079 -0.0028317 -0.0028317 0 0 0 782.811 -2.08673e-06 -2.08673e-06 0 0 0 3.86737 2.18854 0.203816 1.47501 +1 1 1 80 0.8 290 0 0 0.008 -0.0028775 -0.0028775 0 0 0 785.752 -2.25006e-06 -2.25006e-06 0 0 0 3.9458 2.20502 0.213639 1.52714 +1 1 1 81 0.81 290 0 0 0.0081 -0.00292332 -0.00292332 0 0 0 788.674 -2.40477e-06 -2.40477e-06 0 0 0 4.02452 2.22145 0.223604 1.57946 +1 1 1 82 0.82 290 0 0 0.0082 -0.00296918 -0.00296918 0 0 0 791.577 -2.55239e-06 -2.55239e-06 0 0 0 4.10353 2.23784 0.233712 1.63198 +1 1 1 83 0.83 290 0 0 0.0083 -0.00301505 -0.00301505 0 0 0 794.462 -2.69408e-06 -2.69408e-06 0 0 0 4.18284 2.25418 0.24396 1.6847 +1 1 1 84 0.84 290 0 0 0.0084 -0.00306096 -0.00306096 0 0 0 797.328 -2.83072e-06 -2.83072e-06 0 0 0 4.26243 2.27047 0.254347 1.73761 +1 1 1 85 0.85 290 0 0 0.0085 -0.00310689 -0.00310689 0 0 0 800.176 -2.963e-06 -2.963e-06 0 0 0 4.3423 2.28672 0.26487 1.79071 +1 1 1 86 0.86 290 0 0 0.0086 -0.00315285 -0.00315285 0 0 0 803.007 -3.09144e-06 -3.09144e-06 0 0 0 4.42246 2.30293 0.27553 1.844 +1 1 1 87 0.87 290 0 0 0.0087 -0.00319883 -0.00319883 0 0 0 805.819 -3.21644e-06 -3.21644e-06 0 0 0 4.5029 2.31909 0.286325 1.89749 +1 1 1 88 0.88 290 0 0 0.0088 -0.00324484 -0.00324484 0 0 0 808.615 -3.33834e-06 -3.33834e-06 0 0 0 4.58362 2.33521 0.297253 1.95116 +1 1 1 89 0.89 290 0 0 0.0089 -0.00329087 -0.00329087 0 0 0 811.394 -3.45738e-06 -3.45738e-06 0 0 0 4.66462 2.35129 0.308312 2.00502 +1 1 1 90 0.9 290 0 0 0.009 -0.00333692 -0.00333692 0 0 0 814.156 -3.57376e-06 -3.57376e-06 0 0 0 4.7459 2.36732 0.319503 2.05908 +1 1 1 91 0.91 290 0 0 0.0091 -0.003383 -0.003383 0 0 0 816.901 -3.68763e-06 -3.68763e-06 0 0 0 4.82745 2.38331 0.330822 2.11332 +1 1 1 92 0.92 290 0 0 0.0092 -0.0034291 -0.0034291 0 0 0 819.63 -3.79913e-06 -3.79913e-06 0 0 0 4.90928 2.39926 0.34227 2.16775 +1 1 1 93 0.93 290 0 0 0.0093 -0.00347523 -0.00347523 0 0 0 822.342 -3.90836e-06 -3.90836e-06 0 0 0 4.99138 2.41517 0.353845 2.22237 +1 1 1 94 0.94 290 0 0 0.0094 -0.00352137 -0.00352137 0 0 0 825.039 -4.0154e-06 -4.0154e-06 0 0 0 5.07375 2.43103 0.365546 2.27717 +1 1 1 95 0.95 290 0 0 0.0095 -0.00356754 -0.00356754 0 0 0 827.719 -4.12033e-06 -4.12033e-06 0 0 0 5.15639 2.44685 0.377371 2.33216 +1 1 1 96 0.96 290 0 0 0.0096 -0.00361374 -0.00361374 0 0 0 830.384 -4.2232e-06 -4.2232e-06 0 0 0 5.23929 2.46263 0.389319 2.38734 +1 1 1 97 0.97 290 0 0 0.0097 -0.00365995 -0.00365995 0 0 0 833.033 -4.32408e-06 -4.32408e-06 0 0 0 5.32246 2.47837 0.40139 2.4427 +1 1 1 98 0.98 290 0 0 0.0098 -0.00370619 -0.00370619 0 0 0 835.666 -4.423e-06 -4.423e-06 0 0 0 5.4059 2.49406 0.413581 2.49825 +1 1 1 99 0.99 290 0 0 0.0099 -0.00375245 -0.00375245 0 0 0 838.284 -4.52001e-06 -4.52001e-06 0 0 0 5.48959 2.50972 0.425892 2.55399 +1 1 1 100 1 290 0 0 0.01 -0.00379873 -0.00379873 0 0 0 840.887 -4.61515e-06 -4.61515e-06 0 0 0 5.57355 2.52532 0.438321 2.60991 +1 1 2 1 1.01 290 0 0 0.0098 -0.00373873 -0.00373873 0 0 0 812.887 -4.569e-06 -4.569e-06 0 0 0 5.40818 2.35995 0.438321 2.60991 +1 1 2 2 1.02 290 0 0 0.0096 -0.00367873 -0.00367873 0 0 0 784.887 -4.52284e-06 -4.52284e-06 0 0 0 5.2484 2.20017 0.438321 2.60991 +1 1 2 3 1.03 290 0 0 0.0094 -0.00361873 -0.00361873 0 0 0 756.887 -4.47669e-06 -4.47669e-06 0 0 0 5.09422 2.04599 0.438321 2.60991 +1 1 2 4 1.04 290 0 0 0.0092 -0.00355873 -0.00355873 0 0 0 728.887 -4.43054e-06 -4.43054e-06 0 0 0 4.94564 1.89742 0.438321 2.60991 +1 1 2 5 1.05 290 0 0 0.009 -0.00349873 -0.00349873 0 0 0 700.887 -4.38439e-06 -4.38439e-06 0 0 0 4.80267 1.75444 0.438321 2.60991 +1 1 2 6 1.06 290 0 0 0.0088 -0.00343873 -0.00343873 0 0 0 672.887 -4.33824e-06 -4.33824e-06 0 0 0 4.66529 1.61706 0.438321 2.60991 +1 1 2 7 1.07 290 0 0 0.0086 -0.00337873 -0.00337873 0 0 0 644.887 -4.29209e-06 -4.29209e-06 0 0 0 4.53351 1.48528 0.438321 2.60991 +1 1 2 8 1.08 290 0 0 0.0084 -0.00331873 -0.00331873 0 0 0 616.887 -4.24594e-06 -4.24594e-06 0 0 0 4.40733 1.35911 0.438321 2.60991 +1 1 2 9 1.09 290 0 0 0.0082 -0.00325873 -0.00325873 0 0 0 588.887 -4.19978e-06 -4.19978e-06 0 0 0 4.28676 1.23853 0.438321 2.60991 +1 1 2 10 1.1 290 0 0 0.008 -0.00319873 -0.00319873 0 0 0 560.887 -4.15363e-06 -4.15363e-06 0 0 0 4.17178 1.12355 0.438321 2.60991 +1 1 2 11 1.11 290 0 0 0.0078 -0.00313873 -0.00313873 0 0 0 532.887 -4.10748e-06 -4.10748e-06 0 0 0 4.0624 1.01417 0.438321 2.60991 +1 1 2 12 1.12 290 0 0 0.0076 -0.00307873 -0.00307873 0 0 0 504.887 -4.06133e-06 -4.06133e-06 0 0 0 3.95862 0.910396 0.438321 2.60991 +1 1 2 13 1.13 290 0 0 0.0074 -0.00301873 -0.00301873 0 0 0 476.887 -4.01518e-06 -4.01518e-06 0 0 0 3.86045 0.812219 0.438321 2.60991 +1 1 2 14 1.14 290 0 0 0.0072 -0.00295873 -0.00295873 0 0 0 448.887 -3.96903e-06 -3.96903e-06 0 0 0 3.76787 0.719641 0.438321 2.60991 +1 1 2 15 1.15 290 0 0 0.007 -0.00289873 -0.00289873 0 0 0 420.887 -3.92287e-06 -3.92287e-06 0 0 0 3.68089 0.632664 0.438321 2.60991 +1 1 2 16 1.16 290 0 0 0.0068 -0.00283873 -0.00283873 0 0 0 392.887 -3.87672e-06 -3.87672e-06 0 0 0 3.59951 0.551286 0.438321 2.60991 +1 1 2 17 1.17 290 0 0 0.0066 -0.00277873 -0.00277873 0 0 0 364.887 -3.83057e-06 -3.83057e-06 0 0 0 3.52374 0.475509 0.438321 2.60991 +1 1 2 18 1.18 290 0 0 0.0064 -0.00271873 -0.00271873 0 0 0 336.887 -3.78442e-06 -3.78442e-06 0 0 0 3.45356 0.405332 0.438321 2.60991 +1 1 2 19 1.19 290 0 0 0.0062 -0.00265873 -0.00265873 0 0 0 308.887 -3.73827e-06 -3.73827e-06 0 0 0 3.38898 0.340754 0.438321 2.60991 +1 1 2 20 1.2 290 0 0 0.006 -0.00259873 -0.00259873 0 0 0 280.887 -3.69212e-06 -3.69212e-06 0 0 0 3.33 0.281777 0.438321 2.60991 +1 1 2 21 1.21 290 0 0 0.0058 -0.00253873 -0.00253873 0 0 0 252.887 -3.64597e-06 -3.64597e-06 0 0 0 3.27663 0.228399 0.438321 2.60991 +1 1 2 22 1.22 290 0 0 0.0056 -0.00247873 -0.00247873 0 0 0 224.887 -3.59981e-06 -3.59981e-06 0 0 0 3.22885 0.180622 0.438321 2.60991 +1 1 2 23 1.23 290 0 0 0.0054 -0.00241873 -0.00241873 0 0 0 196.887 -3.55366e-06 -3.55366e-06 0 0 0 3.18667 0.138445 0.438321 2.60991 +1 1 2 24 1.24 290 0 0 0.0052 -0.00235873 -0.00235873 0 0 0 168.887 -3.50751e-06 -3.50751e-06 0 0 0 3.15009 0.101867 0.438321 2.60991 +1 1 2 25 1.25 290 0 0 0.005 -0.00229873 -0.00229873 0 0 0 140.887 -3.46136e-06 -3.46136e-06 0 0 0 3.11912 0.0708898 0.438321 2.60991 +1 1 2 26 1.26 290 0 0 0.0048 -0.00223873 -0.00223873 0 0 0 112.887 -3.41521e-06 -3.41521e-06 0 0 0 3.09374 0.0455124 0.438321 2.60991 +1 1 2 27 1.27 290 0 0 0.0046 -0.00217873 -0.00217873 0 0 0 84.887 -3.36906e-06 -3.36906e-06 0 0 0 3.07396 0.025735 0.438321 2.60991 +1 1 2 28 1.28 290 0 0 0.0044 -0.00211873 -0.00211873 0 0 0 56.887 -3.3229e-06 -3.3229e-06 0 0 0 3.05979 0.0115576 0.438321 2.60991 +1 1 2 29 1.29 290 0 0 0.0042 -0.00205873 -0.00205873 0 0 0 28.887 -3.27675e-06 -3.27675e-06 0 0 0 3.05121 0.00298021 0.438321 2.60991 +1 1 2 30 1.3 290 0 0 0.004 -0.00199873 -0.00199873 0 0 0 0.886999 -3.2306e-06 -3.2306e-06 0 0 0 3.04823 2.8099e-06 0.438321 2.60991 +1 1 2 31 1.31 290 0 0 0.0038 -0.00193873 -0.00193873 0 0 0 -27.113 -3.18445e-06 -3.18445e-06 0 0 0 3.05085 0.00262541 0.438321 2.60991 +1 1 2 32 1.32 290 0 0 0.0036 -0.00187873 -0.00187873 0 0 0 -55.113 -3.1383e-06 -3.1383e-06 0 0 0 3.05908 0.010848 0.438321 2.60991 +1 1 2 33 1.33 290 0 0 0.0034 -0.00181873 -0.00181873 0 0 0 -83.113 -3.09215e-06 -3.09215e-06 0 0 0 3.0729 0.0246706 0.438321 2.60991 +1 1 2 34 1.34 290 0 0 0.0032 -0.00175873 -0.00175873 0 0 0 -111.113 -3.046e-06 -3.046e-06 0 0 0 3.09232 0.0440932 0.438321 2.60991 +1 1 2 35 1.35 290 0 0 0.003 -0.00169873 -0.00169873 0 0 0 -139.113 -2.99984e-06 -2.99984e-06 0 0 0 3.11734 0.0691158 0.438321 2.60991 +1 1 2 36 1.36 290 0 0 0.0028 -0.00163873 -0.00163873 0 0 0 -167.113 -2.95369e-06 -2.95369e-06 0 0 0 3.14797 0.0997384 0.438321 2.60991 +1 1 2 37 1.37 290 0 0 0.0026 -0.00157873 -0.00157873 0 0 0 -195.113 -2.90754e-06 -2.90754e-06 0 0 0 3.18419 0.135961 0.438321 2.60991 +1 1 2 38 1.38 290 0 0 0.0024 -0.00151873 -0.00151873 0 0 0 -223.113 -2.86139e-06 -2.86139e-06 0 0 0 3.22601 0.177784 0.438321 2.60991 +1 1 2 39 1.39 290 0 0 0.0022 -0.00145873 -0.00145873 0 0 0 -251.113 -2.81524e-06 -2.81524e-06 0 0 0 3.27343 0.225206 0.438321 2.60991 +1 1 2 40 1.4 290 0 0 0.002 -0.00139873 -0.00139873 0 0 0 -279.113 -2.76909e-06 -2.76909e-06 0 0 0 3.32646 0.278229 0.438321 2.60991 +1 1 2 41 1.41 290 0 0 0.0018 -0.00133873 -0.00133873 0 0 0 -307.113 -2.72294e-06 -2.72294e-06 0 0 0 3.38508 0.336851 0.438321 2.60991 +1 1 2 42 1.42 290 0 0 0.0016 -0.00127873 -0.00127873 0 0 0 -335.113 -2.67678e-06 -2.67678e-06 0 0 0 3.4493 0.401074 0.438321 2.60991 +1 1 2 43 1.43 290 0 0 0.0014 -0.00121873 -0.00121873 0 0 0 -363.113 -2.63063e-06 -2.63063e-06 0 0 0 3.51912 0.470897 0.438321 2.60991 +1 1 2 44 1.44 290 0 0 0.0012 -0.00115873 -0.00115873 0 0 0 -391.113 -2.58448e-06 -2.58448e-06 0 0 0 3.59455 0.546319 0.438321 2.60991 +1 1 2 45 1.45 290 0 0 0.001 -0.00109873 -0.00109873 0 0 0 -419.113 -2.53833e-06 -2.53833e-06 0 0 0 3.67557 0.627342 0.438321 2.60991 +1 1 2 46 1.46 290 0 0 0.0008 -0.00103873 -0.00103873 0 0 0 -447.113 -2.49218e-06 -2.49218e-06 0 0 0 3.76219 0.713964 0.438321 2.60991 +1 1 2 47 1.47 290 0 0 0.0006 -0.000978733 -0.000978733 0 0 0 -475.113 -2.44603e-06 -2.44603e-06 0 0 0 3.85441 0.806187 0.438321 2.60991 +1 1 2 48 1.48 290 0 0 0.0004 -0.000918733 -0.000918733 0 0 0 -503.113 -2.39988e-06 -2.39988e-06 0 0 0 3.95224 0.90401 0.438321 2.60991 +1 1 2 49 1.49 290 0 0 0.0002 -0.000858733 -0.000858733 0 0 0 -531.113 -2.35372e-06 -2.35372e-06 0 0 0 4.05566 1.00743 0.438321 2.60991 +1 1 2 50 1.5 290 0 0 -4.8518e-18 -0.000790609 -0.000790609 0 0 0 -553.427 -2.30047e-06 -2.30047e-06 0 0 0 4.16411 1.09386 0.432819 2.63743 +1 1 2 51 1.51 290 0 0 -0.0002 -0.000720088 -0.000720088 0 0 0 -574.061 -2.54001e-06 -2.54001e-06 0 0 0 4.27686 1.17695 0.426733 2.67318 +1 1 2 52 1.52 290 0 0 -0.0004 -0.000648427 -0.000648427 0 0 0 -593.899 -2.92393e-06 -2.92393e-06 0 0 0 4.39366 1.2597 0.421088 2.71287 +1 1 2 53 1.53 290 0 0 -0.0006 -0.000575455 -0.000575455 0 0 0 -612.818 -3.50778e-06 -3.50778e-06 0 0 0 4.51433 1.34124 0.415965 2.75713 +1 1 2 54 1.54 290 0 0 -0.0008 -0.00050099 -0.00050099 0 0 0 -630.693 -3.45901e-06 -3.45901e-06 0 0 0 4.63868 1.42062 0.41146 2.8066 +1 1 2 55 1.55 290 0 0 -0.001 -0.000424856 -0.000424856 0 0 0 -647.399 -3.40919e-06 -3.40919e-06 0 0 0 4.76649 1.49688 0.407675 2.86194 +1 1 2 56 1.56 290 0 0 -0.0012 -0.000346907 -0.000346907 0 0 0 -662.835 -3.3586e-06 -3.3586e-06 0 0 0 4.89751 1.56911 0.404716 2.92369 +1 1 2 57 1.57 290 0 0 -0.0014 -0.000267062 -0.000267062 0 0 0 -676.944 -3.30807e-06 -3.30807e-06 0 0 0 5.03149 1.63662 0.402682 2.99219 +1 1 2 58 1.58 290 0 0 -0.0016 -0.00018534 -0.00018534 0 0 0 -689.738 -3.25853e-06 -3.25853e-06 0 0 0 5.16816 1.69907 0.401651 3.06744 +1 1 2 59 1.59 290 0 0 -0.0018 -0.000101871 -0.000101871 0 0 0 -701.31 -3.21038e-06 -3.21038e-06 0 0 0 5.30726 1.75655 0.401667 3.14904 +1 1 2 60 1.6 290 0 0 -0.002 -1.68831e-05 -1.68831e-05 0 0 0 -711.818 -3.57179e-06 -3.57179e-06 0 0 0 5.44858 1.80959 0.402741 3.23625 +1 1 2 61 1.61 290 0 0 -0.0022 6.93429e-05 6.93429e-05 0 0 0 -721.46 -3.71763e-06 -3.71763e-06 0 0 0 5.59191 1.85894 0.40485 3.32811 +1 1 2 62 1.62 290 0 0 -0.0024 0.000156526 0.000156526 0 0 0 -730.432 -3.75203e-06 -3.75203e-06 0 0 0 5.73709 1.90547 0.407952 3.42368 +1 1 2 63 1.63 290 0 0 -0.0026 0.000244424 0.000244424 0 0 0 -738.903 -3.73796e-06 -3.73796e-06 0 0 0 5.88403 1.94992 0.411998 3.52211 +1 1 2 64 1.64 290 0 0 -0.0028 0.000332848 0.000332848 0 0 0 -747.007 -3.70477e-06 -3.70477e-06 0 0 0 6.03262 1.99292 0.416941 3.62275 +1 1 2 65 1.65 290 0 0 -0.003 0.000421663 0.000421663 0 0 0 -754.836 -3.66425e-06 -3.66425e-06 0 0 0 6.1828 2.03492 0.422741 3.72514 +1 1 2 66 1.66 290 0 0 -0.0032 0.000510776 0.000510776 0 0 0 -762.457 -3.62085e-06 -3.62085e-06 0 0 0 6.33453 2.07622 0.429363 3.82895 +1 1 2 67 1.67 290 0 0 -0.0034 0.000600126 0.000600126 0 0 0 -769.912 -3.57625e-06 -3.57625e-06 0 0 0 6.48777 2.11701 0.436782 3.93397 +1 1 2 68 1.68 290 0 0 -0.0036 0.000689674 0.000689674 0 0 0 -777.228 -3.53109e-06 -3.53109e-06 0 0 0 6.64248 2.15744 0.444976 4.04007 +1 1 2 69 1.69 290 0 0 -0.0038 0.000779394 0.000779394 0 0 0 -784.424 -3.48566e-06 -3.48566e-06 0 0 0 6.79865 2.19757 0.453928 4.14715 +1 1 2 70 1.7 290 0 0 -0.004 0.00086927 0.00086927 0 0 0 -791.511 -3.44008e-06 -3.44008e-06 0 0 0 6.95624 2.23746 0.463623 4.25516 +1 1 2 71 1.71 290 0 0 -0.0042 0.000959291 0.000959291 0 0 0 -798.496 -3.39442e-06 -3.39442e-06 0 0 0 7.11524 2.27713 0.474047 4.36407 +1 1 2 72 1.72 290 0 0 -0.0044 0.00104945 0.00104945 0 0 0 -805.385 -3.3487e-06 -3.3487e-06 0 0 0 7.27563 2.31659 0.485189 4.47385 +1 1 2 73 1.73 290 0 0 -0.0046 0.00113974 0.00113974 0 0 0 -812.181 -3.30294e-06 -3.30294e-06 0 0 0 7.43739 2.35585 0.497038 4.5845 +1 1 2 74 1.74 290 0 0 -0.0048 0.00123016 0.00123016 0 0 0 -818.886 -3.25715e-06 -3.25715e-06 0 0 0 7.60049 2.39491 0.509584 4.696 +1 1 2 75 1.75 290 0 0 -0.005 0.00132071 0.00132071 0 0 0 -825.503 -3.21134e-06 -3.21134e-06 0 0 0 7.76493 2.43377 0.522815 4.80835 +1 1 2 76 1.76 290 0 0 -0.0052 0.00141138 0.00141138 0 0 0 -832.034 -3.16551e-06 -3.16551e-06 0 0 0 7.93069 2.47243 0.536722 4.92153 +1 1 2 77 1.77 290 0 0 -0.0054 0.00150217 0.00150217 0 0 0 -838.48 -3.11967e-06 -3.11967e-06 0 0 0 8.09774 2.51089 0.551294 5.03556 +1 1 2 78 1.78 290 0 0 -0.0056 0.00159308 0.00159308 0 0 0 -844.842 -3.07381e-06 -3.07381e-06 0 0 0 8.26607 2.54913 0.566522 5.15042 +1 1 2 79 1.79 290 0 0 -0.0058 0.00168411 0.00168411 0 0 0 -851.121 -3.02794e-06 -3.02794e-06 0 0 0 8.43567 2.58717 0.582395 5.2661 +1 1 2 80 1.8 290 0 0 -0.006 0.00177526 0.00177526 0 0 0 -857.319 -2.98206e-06 -2.98206e-06 0 0 0 8.60651 2.62499 0.598904 5.38262 +1 1 2 81 1.81 290 0 0 -0.0062 0.00186652 0.00186652 0 0 0 -863.438 -2.93616e-06 -2.93616e-06 0 0 0 8.77859 2.66259 0.616038 5.49996 +1 1 2 82 1.82 290 0 0 -0.0064 0.00195789 0.00195789 0 0 0 -869.478 -2.89025e-06 -2.89025e-06 0 0 0 8.95188 2.69997 0.633788 5.61812 +1 1 2 83 1.83 290 0 0 -0.0066 0.00204937 0.00204937 0 0 0 -875.44 -2.84433e-06 -2.84432e-06 0 0 0 9.12637 2.73713 0.652142 5.7371 +1 1 2 84 1.84 290 0 0 -0.0068 0.00214096 0.00214096 0 0 0 -881.327 -2.79839e-06 -2.79839e-06 0 0 0 9.30205 2.77406 0.671092 5.8569 +1 1 2 85 1.85 290 0 0 -0.007 0.00223266 0.00223266 0 0 0 -887.138 -2.75245e-06 -2.75245e-06 0 0 0 9.47889 2.81076 0.690626 5.9775 +1 1 2 86 1.86 290 0 0 -0.0072 0.00232446 0.00232446 0 0 0 -892.876 -2.70649e-06 -2.70649e-06 0 0 0 9.65689 2.84724 0.710735 6.09892 +1 1 2 87 1.87 290 0 0 -0.0074 0.00241637 0.00241637 0 0 0 -898.541 -2.66053e-06 -2.66053e-06 0 0 0 9.83604 2.88349 0.731409 6.22114 +1 1 2 88 1.88 290 0 0 -0.0076 0.00250838 0.00250838 0 0 0 -904.135 -2.61455e-06 -2.61455e-06 0 0 0 10.0163 2.9195 0.752638 6.34417 +1 1 2 89 1.89 290 0 0 -0.0078 0.00260049 0.00260049 0 0 0 -909.659 -2.56857e-06 -2.56857e-06 0 0 0 10.1977 2.95528 0.774411 6.46799 +1 1 2 90 1.9 290 0 0 -0.008 0.00269269 0.00269269 0 0 0 -915.114 -2.52258e-06 -2.52258e-06 0 0 0 10.3802 2.99083 0.796718 6.59261 +1 1 2 91 1.91 290 0 0 -0.0082 0.002785 0.002785 0 0 0 -920.501 -2.47657e-06 -2.47657e-06 0 0 0 10.5637 3.02615 0.819551 6.71802 +1 1 2 92 1.92 290 0 0 -0.0084 0.0028774 0.0028774 0 0 0 -925.822 -2.43056e-06 -2.43056e-06 0 0 0 10.7484 3.06124 0.842898 6.84422 +1 1 2 93 1.93 290 0 0 -0.0086 0.00296989 0.00296989 0 0 0 -931.078 -2.38455e-06 -2.38455e-06 0 0 0 10.934 3.0961 0.86675 6.9712 +1 1 2 94 1.94 290 0 0 -0.0088 0.00306247 0.00306247 0 0 0 -936.27 -2.33852e-06 -2.33852e-06 0 0 0 11.1208 3.13072 0.891098 7.09896 +1 1 2 95 1.95 290 0 0 -0.009 0.00315514 0.00315514 0 0 0 -941.399 -2.29249e-06 -2.29249e-06 0 0 0 11.3085 3.16511 0.915931 7.2275 +1 1 2 96 1.96 290 0 0 -0.0092 0.00324791 0.00324791 0 0 0 -946.466 -2.24645e-06 -2.24645e-06 0 0 0 11.4973 3.19928 0.941239 7.35681 +1 1 2 97 1.97 290 0 0 -0.0094 0.00334075 0.00334075 0 0 0 -951.473 -2.2004e-06 -2.2004e-06 0 0 0 11.6871 3.23322 0.967014 7.48689 +1 1 2 98 1.98 290 0 0 -0.0096 0.00343368 0.00343368 0 0 0 -956.421 -2.15435e-06 -2.15435e-06 0 0 0 11.8779 3.26693 0.993245 7.61774 +1 1 2 99 1.99 290 0 0 -0.0098 0.0035267 0.0035267 0 0 0 -961.31 -1.42535e-06 -1.42535e-06 0 0 0 12.0697 3.30042 1.01992 7.74935 +1 1 2 100 2 290 0 0 -0.01 0.0036198 0.0036198 0 0 0 -966.142 -7.23339e-07 -7.23339e-07 0 0 0 12.2624 3.33368 1.04704 7.88171 +2 1 1 1 2.01 290 0 0 -0.00990071 0.00359001 0.00359001 0 0 0 -952.241 -7.16105e-07 -7.16105e-07 0 0 0 12.1672 3.23844 1.04704 7.88171 +2 1 1 2 2.02 290 0 0 -0.00980142 0.00356022 0.00356022 0 0 0 -938.341 -7.08872e-07 -7.08872e-07 0 0 0 12.0733 3.14458 1.04704 7.88171 +2 1 1 3 2.03 290 0 0 -0.00970213 0.00353044 0.00353044 0 0 0 -924.44 -7.01639e-07 -7.01639e-07 0 0 0 11.9809 3.0521 1.04704 7.88171 +2 1 1 4 2.04 290 0 0 -0.00960284 0.00350065 0.00350065 0 0 0 -910.539 -6.94405e-07 -6.94405e-07 0 0 0 11.8898 2.96101 1.04704 7.88171 +2 1 1 5 2.05 290 0 0 -0.00950355 0.00347086 0.00347086 0 0 0 -896.638 -6.87172e-07 -6.87172e-07 0 0 0 11.8 2.87129 1.04704 7.88171 +2 1 1 6 2.06 290 0 0 -0.00940425 0.00344107 0.00344107 0 0 0 -882.738 -6.79938e-07 -6.79938e-07 0 0 0 11.7117 2.78295 1.04704 7.88171 +2 1 1 7 2.07 290 0 0 -0.00930496 0.00341129 0.00341129 0 0 0 -868.837 -6.72705e-07 -6.72705e-07 0 0 0 11.6247 2.69599 1.04704 7.88171 +2 1 1 8 2.08 290 0 0 -0.00920567 0.0033815 0.0033815 0 0 0 -854.936 -6.65472e-07 -6.65472e-07 0 0 0 11.5392 2.61041 1.04704 7.88171 +2 1 1 9 2.09 290 0 0 -0.00910638 0.00335171 0.00335171 0 0 0 -841.035 -6.58238e-07 -6.58238e-07 0 0 0 11.455 2.52622 1.04704 7.88171 +2 1 1 10 2.1 290 0 0 -0.00900709 0.00332192 0.00332192 0 0 0 -827.135 -6.51005e-07 -6.51005e-07 0 0 0 11.3722 2.4434 1.04704 7.88171 +2 1 1 11 2.11 290 0 0 -0.0089078 0.00329214 0.00329214 0 0 0 -813.234 -6.43771e-07 -6.43772e-07 0 0 0 11.2907 2.36196 1.04704 7.88171 +2 1 1 12 2.12 290 0 0 -0.00880851 0.00326235 0.00326235 0 0 0 -799.333 -6.36538e-07 -6.36538e-07 0 0 0 11.2107 2.28191 1.04704 7.88171 +2 1 1 13 2.13 290 0 0 -0.00870922 0.00323256 0.00323256 0 0 0 -785.432 -6.29305e-07 -6.29305e-07 0 0 0 11.132 2.20323 1.04704 7.88171 +2 1 1 14 2.14 290 0 0 -0.00860993 0.00320277 0.00320277 0 0 0 -771.532 -6.22071e-07 -6.22071e-07 0 0 0 11.0547 2.12593 1.04704 7.88171 +2 1 1 15 2.15 290 0 0 -0.00851064 0.00317299 0.00317299 0 0 0 -757.631 -6.14838e-07 -6.14838e-07 0 0 0 10.9788 2.05002 1.04704 7.88171 +2 1 1 16 2.16 290 0 0 -0.00841134 0.0031432 0.0031432 0 0 0 -743.73 -6.07604e-07 -6.07605e-07 0 0 0 10.9042 1.97548 1.04704 7.88171 +2 1 1 17 2.17 290 0 0 -0.00831205 0.00311341 0.00311341 0 0 0 -729.829 -6.00371e-07 -6.00371e-07 0 0 0 10.8311 1.90233 1.04704 7.88171 +2 1 1 18 2.18 290 0 0 -0.00821276 0.00308363 0.00308363 0 0 0 -715.929 -5.93138e-07 -5.93138e-07 0 0 0 10.7593 1.83055 1.04704 7.88171 +2 1 1 19 2.19 290 0 0 -0.00811347 0.00305384 0.00305384 0 0 0 -702.028 -5.85904e-07 -5.85904e-07 0 0 0 10.6889 1.76015 1.04704 7.88171 +2 1 1 20 2.2 290 0 0 -0.00801418 0.00302405 0.00302405 0 0 0 -688.127 -5.78671e-07 -5.78671e-07 0 0 0 10.6199 1.69114 1.04704 7.88171 +2 1 1 21 2.21 290 0 0 -0.00791489 0.00299426 0.00299426 0 0 0 -674.227 -5.71438e-07 -5.71438e-07 0 0 0 10.5523 1.6235 1.04704 7.88171 +2 1 1 22 2.22 290 0 0 -0.0078156 0.00296448 0.00296448 0 0 0 -660.326 -5.64204e-07 -5.64204e-07 0 0 0 10.486 1.55725 1.04704 7.88171 +2 1 1 23 2.23 290 0 0 -0.00771631 0.00293469 0.00293469 0 0 0 -646.425 -5.56971e-07 -5.56971e-07 0 0 0 10.4211 1.49238 1.04704 7.88171 +2 1 1 24 2.24 290 0 0 -0.00761702 0.0029049 0.0029049 0 0 0 -632.524 -5.49737e-07 -5.49737e-07 0 0 0 10.3576 1.42888 1.04704 7.88171 +2 1 1 25 2.25 290 0 0 -0.00751773 0.00287511 0.00287511 0 0 0 -618.624 -5.42504e-07 -5.42504e-07 0 0 0 10.2955 1.36677 1.04704 7.88171 +2 1 1 26 2.26 290 0 0 -0.00741843 0.00284533 0.00284533 0 0 0 -604.723 -5.35271e-07 -5.35271e-07 0 0 0 10.2348 1.30603 1.04704 7.88171 +2 1 1 27 2.27 290 0 0 -0.00731914 0.00281554 0.00281554 0 0 0 -590.822 -5.28037e-07 -5.28037e-07 0 0 0 10.1754 1.24668 1.04704 7.88171 +2 1 1 28 2.28 290 0 0 -0.00721985 0.00278575 0.00278575 0 0 0 -576.921 -5.20804e-07 -5.20804e-07 0 0 0 10.1175 1.18871 1.04704 7.88171 +2 1 1 29 2.29 290 0 0 -0.00712056 0.00275597 0.00275597 0 0 0 -563.021 -5.1357e-07 -5.13571e-07 0 0 0 10.0609 1.13211 1.04704 7.88171 +2 1 1 30 2.3 290 0 0 -0.00702127 0.00272618 0.00272618 0 0 0 -549.12 -5.06337e-07 -5.06337e-07 0 0 0 10.0057 1.0769 1.04704 7.88171 +2 1 1 31 2.31 290 0 0 -0.00692198 0.00269639 0.00269639 0 0 0 -535.219 -4.99104e-07 -4.99104e-07 0 0 0 9.95182 1.02307 1.04704 7.88171 +2 1 1 32 2.32 290 0 0 -0.00682269 0.0026666 0.0026666 0 0 0 -521.318 -4.9187e-07 -4.9187e-07 0 0 0 9.89937 0.970617 1.04704 7.88171 +2 1 1 33 2.33 290 0 0 -0.0067234 0.00263682 0.00263682 0 0 0 -507.418 -4.84637e-07 -4.84637e-07 0 0 0 9.8483 0.919545 1.04704 7.88171 +2 1 1 34 2.34 290 0 0 -0.00662411 0.00260703 0.00260703 0 0 0 -493.517 -4.77404e-07 -4.77404e-07 0 0 0 9.79861 0.869853 1.04704 7.88171 +2 1 1 35 2.35 290 0 0 -0.00652482 0.00257724 0.00257724 0 0 0 -479.616 -4.7017e-07 -4.7017e-07 0 0 0 9.7503 0.821542 1.04704 7.88171 +2 1 1 36 2.36 290 0 0 -0.00642552 0.00254745 0.00254745 0 0 0 -465.715 -4.62937e-07 -4.62937e-07 0 0 0 9.70336 0.77461 1.04704 7.88171 +2 1 1 37 2.37 290 0 0 -0.00632623 0.00251767 0.00251767 0 0 0 -451.815 -4.55703e-07 -4.55703e-07 0 0 0 9.65781 0.729059 1.04704 7.88171 +2 1 1 38 2.38 290 0 0 -0.00622694 0.00248788 0.00248788 0 0 0 -437.914 -4.4847e-07 -4.4847e-07 0 0 0 9.61364 0.684888 1.04704 7.88171 +2 1 1 39 2.39 290 0 0 -0.00612765 0.00245809 0.00245809 0 0 0 -424.013 -4.41237e-07 -4.41237e-07 0 0 0 9.57085 0.642097 1.04704 7.88171 +2 1 1 40 2.4 290 0 0 -0.00602836 0.00242831 0.00242831 0 0 0 -410.112 -4.34003e-07 -4.34003e-07 0 0 0 9.52944 0.600686 1.04704 7.88171 +2 1 1 41 2.41 290 0 0 -0.00592907 0.00239852 0.00239852 0 0 0 -396.212 -4.2677e-07 -4.2677e-07 0 0 0 9.48941 0.560656 1.04704 7.88171 +2 1 1 42 2.42 290 0 0 -0.00582978 0.00236873 0.00236873 0 0 0 -382.311 -4.19536e-07 -4.19536e-07 0 0 0 9.45076 0.522006 1.04704 7.88171 +2 1 1 43 2.43 290 0 0 -0.00573049 0.00233894 0.00233894 0 0 0 -368.41 -4.12303e-07 -4.12303e-07 0 0 0 9.41349 0.484736 1.04704 7.88171 +2 1 1 44 2.44 290 0 0 -0.0056312 0.00230916 0.00230916 0 0 0 -354.509 -4.0507e-07 -4.0507e-07 0 0 0 9.3776 0.448846 1.04704 7.88171 +2 1 1 45 2.45 290 0 0 -0.00553191 0.00227937 0.00227937 0 0 0 -340.609 -3.97836e-07 -3.97836e-07 0 0 0 9.34309 0.414337 1.04704 7.88171 +2 1 1 46 2.46 290 0 0 -0.00543261 0.00224958 0.00224958 0 0 0 -326.708 -3.90603e-07 -3.90603e-07 0 0 0 9.30996 0.381208 1.04704 7.88171 +2 1 1 47 2.47 290 0 0 -0.00533332 0.00221979 0.00221979 0 0 0 -312.807 -3.83369e-07 -3.8337e-07 0 0 0 9.27821 0.349459 1.04704 7.88171 +2 1 1 48 2.48 290 0 0 -0.00523403 0.00219001 0.00219001 0 0 0 -298.907 -3.76136e-07 -3.76136e-07 0 0 0 9.24784 0.31909 1.04704 7.88171 +2 1 1 49 2.49 290 0 0 -0.00513474 0.00216022 0.00216022 0 0 0 -285.006 -3.68903e-07 -3.68903e-07 0 0 0 9.21885 0.290101 1.04704 7.88171 +2 1 1 50 2.5 290 0 0 -0.00503545 0.00213043 0.00213043 0 0 0 -271.105 -3.61669e-07 -3.61669e-07 0 0 0 9.19125 0.262493 1.04704 7.88171 +2 1 1 51 2.51 290 0 0 -0.00493616 0.00210064 0.00210064 0 0 0 -257.204 -3.54436e-07 -3.54436e-07 0 0 0 9.16502 0.236264 1.04704 7.88171 +2 1 1 52 2.52 290 0 0 -0.00483687 0.00207086 0.00207086 0 0 0 -243.304 -3.47203e-07 -3.47203e-07 0 0 0 9.14017 0.211417 1.04704 7.88171 +2 1 1 53 2.53 290 0 0 -0.00473758 0.00204107 0.00204107 0 0 0 -229.403 -3.39969e-07 -3.39969e-07 0 0 0 9.1167 0.187949 1.04704 7.88171 +2 1 1 54 2.54 290 0 0 -0.00463829 0.00201128 0.00201128 0 0 0 -215.502 -3.32736e-07 -3.32736e-07 0 0 0 9.09462 0.165861 1.04704 7.88171 +2 1 1 55 2.55 290 0 0 -0.004539 0.0019815 0.0019815 0 0 0 -201.601 -3.25502e-07 -3.25502e-07 0 0 0 9.07391 0.145154 1.04704 7.88171 +2 1 1 56 2.56 290 0 0 -0.0044397 0.00195171 0.00195171 0 0 0 -187.701 -3.18269e-07 -3.18269e-07 0 0 0 9.05458 0.125827 1.04704 7.88171 +2 1 1 57 2.57 290 0 0 -0.00434041 0.00192192 0.00192192 0 0 0 -173.8 -3.11036e-07 -3.11036e-07 0 0 0 9.03663 0.10788 1.04704 7.88171 +2 1 1 58 2.58 290 0 0 -0.00424112 0.00189213 0.00189213 0 0 0 -159.899 -3.03802e-07 -3.03802e-07 0 0 0 9.02007 0.0913133 1.04704 7.88171 +2 1 1 59 2.59 290 0 0 -0.00414183 0.00186235 0.00186235 0 0 0 -145.998 -2.96569e-07 -2.96569e-07 0 0 0 9.00488 0.0761269 1.04704 7.88171 +2 1 1 60 2.6 290 0 0 -0.00404254 0.00183256 0.00183256 0 0 0 -132.098 -2.89336e-07 -2.89336e-07 0 0 0 8.99107 0.0623207 1.04704 7.88171 +2 1 1 61 2.61 290 0 0 -0.00394325 0.00180277 0.00180277 0 0 0 -118.197 -2.82102e-07 -2.82102e-07 0 0 0 8.97865 0.0498947 1.04704 7.88171 +2 1 1 62 2.62 290 0 0 -0.00384396 0.00177298 0.00177298 0 0 0 -104.296 -2.74869e-07 -2.74869e-07 0 0 0 8.9676 0.0388489 1.04704 7.88171 +2 1 1 63 2.63 290 0 0 -0.00374467 0.0017432 0.0017432 0 0 0 -90.3954 -2.67636e-07 -2.67636e-07 0 0 0 8.95794 0.0291833 1.04704 7.88171 +2 1 1 64 2.64 290 0 0 -0.00364538 0.00171341 0.00171341 0 0 0 -76.4947 -2.60402e-07 -2.60402e-07 0 0 0 8.94965 0.020898 1.04704 7.88171 +2 1 1 65 2.65 290 0 0 -0.00354609 0.00168362 0.00168362 0 0 0 -62.5939 -2.53169e-07 -2.53169e-07 0 0 0 8.94275 0.0139929 1.04704 7.88171 +2 1 1 66 2.66 290 0 0 -0.00344679 0.00165384 0.00165384 0 0 0 -48.6932 -2.45936e-07 -2.45936e-07 0 0 0 8.93722 0.00846796 1.04704 7.88171 +2 1 1 67 2.67 290 0 0 -0.0033475 0.00162405 0.00162405 0 0 0 -34.7925 -2.38702e-07 -2.38702e-07 0 0 0 8.93308 0.00432327 1.04704 7.88171 +2 1 1 68 2.68 290 0 0 -0.00324821 0.00159426 0.00159426 0 0 0 -20.8917 -2.31469e-07 -2.31469e-07 0 0 0 8.93031 0.0015588 1.04704 7.88171 +2 1 1 69 2.69 290 0 0 -0.00314892 0.00156447 0.00156447 0 0 0 -6.99099 -2.24235e-07 -2.24236e-07 0 0 0 8.92893 0.00017455 1.04704 7.88171 +2 1 1 70 2.7 290 0 0 -0.00304963 0.00153469 0.00153469 0 0 0 6.90975 -2.17002e-07 -2.17002e-07 0 0 0 8.92892 0.000170517 1.04704 7.88171 +2 1 1 71 2.71 290 0 0 -0.00295034 0.0015049 0.0015049 0 0 0 20.8105 -2.09769e-07 -2.09769e-07 0 0 0 8.9303 0.0015467 1.04704 7.88171 +2 1 1 72 2.72 290 0 0 -0.00285105 0.00147511 0.00147511 0 0 0 34.7112 -2.02535e-07 -2.02535e-07 0 0 0 8.93306 0.00430311 1.04704 7.88171 +2 1 1 73 2.73 290 0 0 -0.00275176 0.00144532 0.00144532 0 0 0 48.612 -1.95302e-07 -1.95302e-07 0 0 0 8.93719 0.00843973 1.04704 7.88171 +2 1 1 74 2.74 290 0 0 -0.00265247 0.00141554 0.00141554 0 0 0 62.5127 -1.88069e-07 -1.88069e-07 0 0 0 8.94271 0.0139566 1.04704 7.88171 +2 1 1 75 2.75 290 0 0 -0.00255318 0.00138575 0.00138575 0 0 0 76.4135 -1.80835e-07 -1.80835e-07 0 0 0 8.94961 0.0208536 1.04704 7.88171 +2 1 1 76 2.76 290 0 0 -0.00245388 0.00135596 0.00135596 0 0 0 90.3142 -1.73602e-07 -1.73602e-07 0 0 0 8.95788 0.0291309 1.04704 7.88171 +2 1 1 77 2.77 290 0 0 -0.00235459 0.00132617 0.00132617 0 0 0 104.215 -1.66369e-07 -1.66369e-07 0 0 0 8.96754 0.0387884 1.04704 7.88171 +2 1 1 78 2.78 290 0 0 -0.0022553 0.00129639 0.00129639 0 0 0 118.116 -1.59135e-07 -1.59135e-07 0 0 0 8.97858 0.0498261 1.04704 7.88171 +2 1 1 79 2.79 290 0 0 -0.00215601 0.0012666 0.0012666 0 0 0 132.016 -1.51902e-07 -1.51902e-07 0 0 0 8.991 0.062244 1.04704 7.88171 +2 1 1 80 2.8 290 0 0 -0.00205672 0.00123681 0.00123681 0 0 0 145.917 -1.44668e-07 -1.44668e-07 0 0 0 9.0048 0.0760422 1.04704 7.88171 +2 1 1 81 2.81 290 0 0 -0.00195743 0.00120703 0.00120703 0 0 0 159.818 -1.37435e-07 -1.37435e-07 0 0 0 9.01997 0.0912206 1.04704 7.88171 +2 1 1 82 2.82 290 0 0 -0.00185814 0.00117724 0.00117724 0 0 0 173.719 -1.30202e-07 -1.30202e-07 0 0 0 9.03653 0.107779 1.04704 7.88171 +2 1 1 83 2.83 290 0 0 -0.00175885 0.00114745 0.00114745 0 0 0 187.619 -1.22968e-07 -1.22968e-07 0 0 0 9.05447 0.125718 1.04704 7.88171 +2 1 1 84 2.84 290 0 0 -0.00165956 0.00111766 0.00111766 0 0 0 201.52 -1.15735e-07 -1.15735e-07 0 0 0 9.07379 0.145037 1.04704 7.88171 +2 1 1 85 2.85 290 0 0 -0.00156027 0.00108788 0.00108788 0 0 0 215.421 -1.08502e-07 -1.08502e-07 0 0 0 9.09449 0.165736 1.04704 7.88171 +2 1 1 86 2.86 290 0 0 -0.00146097 0.00105809 0.00105809 0 0 0 229.322 -1.01268e-07 -1.01268e-07 0 0 0 9.11657 0.187816 1.04704 7.88171 +2 1 1 87 2.87 290 0 0 -0.00136168 0.0010283 0.0010283 0 0 0 243.222 -9.40349e-08 -9.40349e-08 0 0 0 9.14003 0.211275 1.04704 7.88171 +2 1 1 88 2.88 290 0 0 -0.00126239 0.000998515 0.000998515 0 0 0 257.123 -8.68015e-08 -8.68015e-08 0 0 0 9.16487 0.236115 1.04704 7.88171 +2 1 1 89 2.89 290 0 0 -0.0011631 0.000968727 0.000968727 0 0 0 271.024 -7.95681e-08 -7.95681e-08 0 0 0 9.19109 0.262335 1.04704 7.88171 +2 1 1 90 2.9 290 0 0 -0.00106381 0.00093894 0.00093894 0 0 0 284.925 -7.23347e-08 -7.23347e-08 0 0 0 9.21869 0.289936 1.04704 7.88171 +2 1 1 91 2.91 290 0 0 -0.000964519 0.000909153 0.000909153 0 0 0 298.825 -6.51013e-08 -6.51014e-08 0 0 0 9.24767 0.318916 1.04704 7.88171 +2 1 1 92 2.92 290 0 0 -0.000865228 0.000879365 0.000879365 0 0 0 312.726 -5.78679e-08 -5.7868e-08 0 0 0 9.27803 0.349277 1.04704 7.88171 +2 1 1 93 2.93 290 0 0 -0.000765937 0.000849578 0.000849578 0 0 0 326.627 -5.06345e-08 -5.06346e-08 0 0 0 9.30977 0.381018 1.04704 7.88171 +2 1 1 94 2.94 290 0 0 -0.000666646 0.000819791 0.000819791 0 0 0 340.528 -4.34011e-08 -4.34012e-08 0 0 0 9.34289 0.414139 1.04704 7.88171 +2 1 1 95 2.95 290 0 0 -0.000567355 0.000790004 0.000790004 0 0 0 354.428 -3.61677e-08 -3.61678e-08 0 0 0 9.37739 0.448641 1.04704 7.88171 +2 1 1 96 2.96 290 0 0 -0.000468064 0.000760216 0.000760216 0 0 0 368.329 -2.89343e-08 -2.89344e-08 0 0 0 9.41328 0.484522 1.04704 7.88171 +2 1 1 97 2.97 290 0 0 -0.000368773 0.000730429 0.000730429 0 0 0 382.23 -2.17009e-08 -2.1701e-08 0 0 0 9.45054 0.521784 1.04704 7.88171 +2 1 1 98 2.98 290 0 0 -0.000269482 0.000700642 0.000700642 0 0 0 396.13 -1.44675e-08 -1.44676e-08 0 0 0 9.48918 0.560426 1.04704 7.88171 +2 1 1 99 2.99 290 0 0 -0.000170191 0.000670854 0.000670854 0 0 0 410.031 -7.23413e-09 -7.23421e-09 0 0 0 9.5292 0.600449 1.04704 7.88171 +2 1 1 100 3 290 0 0 -7.09e-05 0.000641067 0.000641067 0 0 0 423.932 -7.32131e-13 -7.88346e-13 0 0 0 9.5706 0.641851 1.04704 7.88171 +3 1 1 1 3 290 0 0 -7.09e-05 0.000641067 0.000641067 0 0 0 423.932 -7.48266e-13 -8.25995e-13 0 0 0 9.5706 0.641851 1.04704 7.88171 +3 1 1 2 3.005 290 0 0 0.000126 0.000581997 0.000581997 0 0 0 451.498 -7.74579e-13 -8.50356e-13 0 0 0 9.65679 0.728037 1.04704 7.88171 +3 1 1 3 3.01 290 0 0 0.000333 0.000519897 0.000519897 0 0 0 480.478 -7.4322e-13 -8.01772e-13 0 0 0 9.75325 0.824497 1.04704 7.88171 +3 1 1 4 3.015 290 0 0 0.000526 0.000461997 0.000461997 0 0 0 507.498 -7.95202e-13 -8.718e-13 0 0 0 9.84859 0.919836 1.04704 7.88171 +3 1 1 5 3.02 290 0 0 0.0007279 0.000401427 0.000401427 0 0 0 535.764 -7.89226e-13 -8.44526e-13 0 0 0 9.95391 1.02515 1.04704 7.88171 +3 1 1 6 3.025 290 0 0 0.0009266 0.000341817 0.000341817 0 0 0 563.582 -7.54169e-13 -8.15701e-13 0 0 0 10.0631 1.13437 1.04704 7.88171 +3 1 1 7 3.03 290 0 0 0.001132 0.000280197 0.000280197 0 0 0 592.338 -7.81474e-13 -8.18729e-13 0 0 0 10.1818 1.25309 1.04704 7.88171 +3 1 1 8 3.035 290 0 0 0.00133 0.000220797 0.000220797 0 0 0 620.058 -7.47627e-13 -8.21146e-13 0 0 0 10.3019 1.37311 1.04704 7.88171 +3 1 1 9 3.04 290 0 0 0.001533 0.000156476 0.000156476 0 0 0 646.083 3.33328e-07 3.33328e-07 0 0 0 10.4304 1.4908 1.04437 7.89522 +3 1 1 10 3.045 290 0 0 0.001727 8.85754e-05 8.85754e-05 0 0 0 666.453 5.35545e-07 5.35545e-07 0 0 0 10.5577 1.58628 1.03773 7.93369 +3 1 1 11 3.05 290 0 0 0.001933 1.54036e-05 1.54036e-05 0 0 0 687.333 9.24484e-07 9.24484e-07 0 0 0 10.6971 1.68724 1.03108 7.97882 +3 1 1 12 3.055 290 0 0 0.002134 -5.72444e-05 -5.72444e-05 0 0 0 706.829 1.4519e-06 1.4519e-06 0 0 0 10.8373 1.78431 1.02501 8.02793 +3 1 1 13 3.06 290 0 0 0.002335 -0.000131302 -0.000131302 0 0 0 725.338 1.44976e-06 1.44976e-06 0 0 0 10.9812 1.87898 1.01945 8.08275 +3 1 1 14 3.065 290 0 0 0.002534 -0.000206195 -0.000206195 0 0 0 742.563 1.44675e-06 1.44675e-06 0 0 0 11.1272 1.96929 1.01452 8.14343 +3 1 1 15 3.07 290 0 0 0.00274 -0.000285521 -0.000285521 0 0 0 759.135 1.44207e-06 1.44207e-06 0 0 0 11.2819 2.05817 1.01017 8.21357 +3 1 1 16 3.075 290 0 0 0.002938 -0.00036364 -0.00036364 0 0 0 773.752 1.43789e-06 1.43789e-06 0 0 0 11.4337 2.13819 1.00676 8.28872 +3 1 1 17 3.08 290 0 0 0.003138 -0.000444418 -0.000444418 0 0 0 787.207 1.43405e-06 1.43405e-06 0 0 0 11.5898 2.2132 1.0042 8.37237 +3 1 1 18 3.085 290 0 0 0.003332 -0.000524516 -0.000524516 0 0 0 799.039 1.43181e-06 1.43181e-06 0 0 0 11.7436 2.28022 1.00262 8.46079 +3 1 1 19 3.09 290 0 0 0.003545 -0.000614178 -0.000614178 0 0 0 810.825 2.13615e-06 2.13615e-06 0 0 0 11.9151 2.34799 1.00201 8.56508 +3 1 1 20 3.095 290 0 0 0.003737 -0.000696371 -0.000696371 0 0 0 820.49 2.36654e-06 2.36654e-06 0 0 0 12.0717 2.4043 1.00239 8.665 +3 1 1 21 3.1 290 0 0 0.003942 -0.000785205 -0.000785205 0 0 0 830.056 2.50222e-06 2.50222e-06 0 0 0 12.2409 2.46069 1.00383 8.77635 +3 1 1 22 3.105 290 0 0 0.004136 -0.000870082 -0.000870082 0 0 0 838.543 2.54627e-06 2.54627e-06 0 0 0 12.4027 2.51126 1.00609 8.88537 +3 1 1 23 3.11 290 0 0 0.004343 -0.000961266 -0.000961266 0 0 0 847.164 2.56964e-06 2.56964e-06 0 0 0 12.5772 2.56317 1.00948 9.00455 +3 1 1 24 3.115 290 0 0 0.004549 -0.00105249 -0.00105249 0 0 0 855.406 2.57904e-06 2.57904e-06 0 0 0 12.7526 2.61328 1.01379 9.12549 +3 1 1 25 3.12 290 0 0 0.004744 -0.00113918 -0.00113918 0 0 0 862.972 2.58253e-06 2.58253e-06 0 0 0 12.9201 2.65972 1.01868 9.24171 +3 1 1 26 3.125 290 0 0 0.004945 -0.0012288 -0.0012288 0 0 0 870.588 2.58467e-06 2.58467e-06 0 0 0 13.0943 2.70687 1.02455 9.3629 +3 1 1 27 3.13 290 0 0 0.00515 -0.00132043 -0.00132043 0 0 0 878.198 2.58609e-06 2.58609e-06 0 0 0 13.2736 2.7544 1.03138 9.48779 +3 1 1 28 3.135 290 0 0 0.00535 -0.00141001 -0.00141001 0 0 0 885.49 2.58697e-06 2.58697e-06 0 0 0 13.4499 2.80033 1.03883 9.61078 +3 1 1 29 3.14 290 0 0 0.005549 -0.00149932 -0.00149932 0 0 0 892.629 2.58765e-06 2.58765e-06 0 0 0 13.6269 2.84567 1.04701 9.73419 +3 1 1 30 3.145 290 0 0 0.005751 -0.00159012 -0.00159012 0 0 0 899.768 2.58824e-06 2.58824e-06 0 0 0 13.8079 2.89136 1.05608 9.86045 +3 1 1 31 3.15 290 0 0 0.005952 -0.00168062 -0.00168062 0 0 0 906.768 2.58875e-06 2.58875e-06 0 0 0 13.9895 2.93653 1.06587 9.98706 +3 1 1 32 3.155 290 0 0 0.00615 -0.0017699 -0.0017699 0 0 0 913.567 2.58918e-06 2.58918e-06 0 0 0 14.1697 2.98073 1.07622 10.1127 +3 1 1 33 3.16 290 0 0 0.006352 -0.00186113 -0.00186113 0 0 0 920.408 2.58962e-06 2.58962e-06 0 0 0 14.3549 3.02554 1.08752 10.2418 +3 1 1 34 3.165 290 0 0 0.006553 -0.00195204 -0.00195204 0 0 0 927.122 2.59002e-06 2.59002e-06 0 0 0 14.5406 3.06984 1.09949 10.3712 +3 1 1 35 3.17 290 0 0 0.006755 -0.00204353 -0.00204353 0 0 0 933.778 2.5904e-06 2.5904e-06 0 0 0 14.7285 3.11407 1.11224 10.5022 +3 1 1 36 3.175 290 0 0 0.006959 -0.00213606 -0.00213606 0 0 0 940.407 2.59078e-06 2.59078e-06 0 0 0 14.9197 3.15845 1.12583 10.6354 +3 1 1 37 3.18 290 0 0 0.007154 -0.00222463 -0.00222463 0 0 0 946.659 2.59109e-06 2.59109e-06 0 0 0 15.1037 3.20058 1.13947 10.7636 +3 1 1 38 3.185 290 0 0 0.007357 -0.00231696 -0.00231696 0 0 0 953.08 2.59143e-06 2.59142e-06 0 0 0 15.2965 3.24415 1.15436 10.898 +3 1 1 39 3.19 290 0 0 0.007556 -0.00240759 -0.00240759 0 0 0 959.29 2.59172e-06 2.59172e-06 0 0 0 15.4868 3.28656 1.16961 11.0306 +3 1 1 40 3.195 290 0 0 0.00776 -0.00250061 -0.00250061 0 0 0 965.571 2.59204e-06 2.59204e-06 0 0 0 15.6831 3.32974 1.18593 11.1675 +3 1 1 41 3.2 290 0 0 0.007962 -0.00259285 -0.00259285 0 0 0 971.706 2.59233e-06 2.59233e-06 0 0 0 15.8788 3.37219 1.20274 11.3039 +3 1 1 42 3.205 290 0 0 0.008162 -0.00268429 -0.00268429 0 0 0 977.698 2.59259e-06 2.59259e-06 0 0 0 16.0737 3.41391 1.22002 11.4398 +3 1 1 43 3.21 290 0 0 0.008359 -0.00277447 -0.00277447 0 0 0 983.523 2.59283e-06 2.59283e-06 0 0 0 16.2669 3.4547 1.23764 11.5746 +3 1 1 44 3.215 290 0 0 0.008567 -0.0028698 -0.0028698 0 0 0 989.591 2.5931e-06 2.5931e-06 0 0 0 16.4721 3.49747 1.2569 11.7177 +3 1 1 45 3.22 290 0 0 0.008759 -0.0029579 -0.0029579 0 0 0 995.117 2.5933e-06 2.5933e-06 0 0 0 16.6626 3.53664 1.27524 11.8508 +3 1 1 46 3.225 290 0 0 0.008965 -0.00305254 -0.00305254 0 0 0 1000.97 2.59354e-06 2.59354e-06 0 0 0 16.8682 3.57836 1.29554 11.9943 +3 1 1 47 3.23 290 0 0 0.009171 -0.0031473 -0.0031473 0 0 0 1006.74 2.59377e-06 2.59377e-06 0 0 0 17.075 3.61975 1.31646 12.1388 +3 1 1 48 3.235 290 0 0 0.009368 -0.00323801 -0.00323801 0 0 0 1012.19 2.59395e-06 2.59395e-06 0 0 0 17.2739 3.65903 1.33702 12.2779 +3 1 1 49 3.24 290 0 0 0.009567 -0.00332975 -0.00332975 0 0 0 1017.62 2.59413e-06 2.59413e-06 0 0 0 17.4759 3.69841 1.35833 12.4191 +3 1 1 50 3.245 290 0 0 0.00977 -0.00342344 -0.00342344 0 0 0 1023.09 2.59431e-06 2.59431e-06 0 0 0 17.683 3.73827 1.38065 12.5641 +3 1 1 51 3.25 290 0 0 0.009963 -0.00351261 -0.00351261 0 0 0 1028.22 2.59446e-06 2.59446e-06 0 0 0 17.881 3.77587 1.40236 12.7027 +3 1 1 52 3.255 290 0 0 0.009958 -0.00351111 -0.00351111 0 0 0 1027.52 2.59446e-06 2.59446e-06 0 0 0 17.8758 3.77073 1.40236 12.7027 +3 1 1 53 3.26 290 0 0 0.009779 -0.00345741 -0.00345741 0 0 0 1002.46 2.59446e-06 2.59446e-06 0 0 0 17.6941 3.58905 1.40236 12.7027 +3 1 1 54 3.265 290 0 0 0.009587 -0.00339981 -0.00339981 0 0 0 975.584 2.59446e-06 2.59446e-06 0 0 0 17.5042 3.39916 1.40236 12.7027 +3 1 1 55 3.27 290 0 0 0.009386 -0.00333951 -0.00333951 0 0 0 947.444 2.59446e-06 2.59446e-06 0 0 0 17.311 3.20589 1.40236 12.7027 +3 1 1 56 3.275 290 0 0 0.009198 -0.00328311 -0.00328311 0 0 0 921.124 2.59446e-06 2.59446e-06 0 0 0 17.1353 3.03025 1.40236 12.7027 +3 1 1 57 3.28 290 0 0 0.009002 -0.00322431 -0.00322431 0 0 0 893.684 2.59446e-06 2.59446e-06 0 0 0 16.9575 2.85239 1.40236 12.7027 +3 1 1 58 3.285 290 0 0 0.008811 -0.00316701 -0.00316701 0 0 0 866.944 2.59446e-06 2.59446e-06 0 0 0 16.7893 2.68425 1.40236 12.7027 +3 1 1 59 3.29 290 0 0 0.008615 -0.00310821 -0.00310821 0 0 0 839.504 2.59446e-06 2.59446e-06 0 0 0 16.6221 2.51702 1.40236 12.7027 +3 1 1 60 3.295 290 0 0 0.008422 -0.00305031 -0.00305031 0 0 0 812.484 2.59446e-06 2.59446e-06 0 0 0 16.4627 2.35761 1.40236 12.7027 +3 1 1 61 3.3 290 0 0 0.008228 -0.00299211 -0.00299211 0 0 0 785.324 2.59446e-06 2.59446e-06 0 0 0 16.3077 2.20262 1.40236 12.7027 +3 1 1 62 3.305 290 0 0 0.00804 -0.00293571 -0.00293571 0 0 0 759.004 2.59446e-06 2.59446e-06 0 0 0 16.1625 2.05745 1.40236 12.7027 +3 1 1 63 3.31 290 0 0 0.007845 -0.00287721 -0.00287721 0 0 0 731.704 2.59446e-06 2.59446e-06 0 0 0 16.0172 1.91211 1.40236 12.7027 +3 1 1 64 3.315 290 0 0 0.007658 -0.00282111 -0.00282111 0 0 0 705.524 2.59446e-06 2.59446e-06 0 0 0 15.8828 1.77773 1.40236 12.7027 +3 1 1 65 3.32 290 0 0 0.007463 -0.00276261 -0.00276261 0 0 0 678.224 2.59446e-06 2.59446e-06 0 0 0 15.7479 1.64281 1.40236 12.7027 +3 1 1 66 3.325 290 0 0 0.007272 -0.00270531 -0.00270531 0 0 0 651.484 2.59446e-06 2.59446e-06 0 0 0 15.6209 1.51582 1.40236 12.7027 +3 1 1 67 3.33 290 0 0 0.007075 -0.00264621 -0.00264621 0 0 0 623.904 2.59446e-06 2.59446e-06 0 0 0 15.4953 1.3902 1.40236 12.7027 +3 1 1 68 3.335 290 0 0 0.006905 -0.00259521 -0.00259521 0 0 0 600.104 2.59446e-06 2.59446e-06 0 0 0 15.3912 1.28616 1.40236 12.7027 +3 1 1 69 3.34 290 0 0 0.006742 -0.00254631 -0.00254631 0 0 0 577.284 2.59446e-06 2.59446e-06 0 0 0 15.2953 1.1902 1.40236 12.7027 +3 1 1 70 3.345 290 0 0 0.006546 -0.00248751 -0.00248751 0 0 0 549.844 2.59446e-06 2.59446e-06 0 0 0 15.1848 1.07974 1.40236 12.7027 +3 1 1 71 3.35 290 0 0 0.006346 -0.00242751 -0.00242751 0 0 0 521.844 2.59446e-06 2.59446e-06 0 0 0 15.0777 0.972574 1.40236 12.7027 +3 1 1 72 3.355 290 0 0 0.006126 -0.00236151 -0.00236151 0 0 0 491.044 2.59446e-06 2.59446e-06 0 0 0 14.9662 0.861157 1.40236 12.7027 +3 1 1 73 3.36 290 0 0 0.00591 -0.00229671 -0.00229671 0 0 0 460.804 2.59446e-06 2.59446e-06 0 0 0 14.8634 0.758357 1.40236 12.7027 +3 1 1 74 3.365 290 0 0 0.005677 -0.00222681 -0.00222681 0 0 0 428.184 2.59446e-06 2.59446e-06 0 0 0 14.7599 0.65479 1.40236 12.7027 +3 1 1 75 3.37 290 0 0 0.005433 -0.00215361 -0.00215361 0 0 0 394.024 2.59446e-06 2.59446e-06 0 0 0 14.6596 0.554481 1.40236 12.7027 +3 1 1 76 3.375 290 0 0 0.005204 -0.00208491 -0.00208491 0 0 0 361.964 2.59446e-06 2.59446e-06 0 0 0 14.573 0.46792 1.40236 12.7027 +3 1 1 77 3.38 290 0 0 0.004997 -0.00202281 -0.00202281 0 0 0 332.984 2.59446e-06 2.59446e-06 0 0 0 14.5011 0.395993 1.40236 12.7027 +3 1 1 78 3.385 290 0 0 0.004791 -0.00196101 -0.00196101 0 0 0 304.144 2.59446e-06 2.59446e-06 0 0 0 14.4354 0.330369 1.40236 12.7027 +3 1 1 79 3.39 290 0 0 0.00459 -0.00190071 -0.00190071 0 0 0 276.004 2.59446e-06 2.59446e-06 0 0 0 14.3771 0.272064 1.40236 12.7027 +3 1 1 80 3.395 290 0 0 0.004387 -0.00183981 -0.00183981 0 0 0 247.584 2.59446e-06 2.59446e-06 0 0 0 14.324 0.21892 1.40236 12.7027 +3 1 1 81 3.4 290 0 0 0.004184 -0.00177891 -0.00177891 0 0 0 219.164 2.59446e-06 2.59446e-06 0 0 0 14.2766 0.171545 1.40236 12.7027 +3 1 1 82 3.405 290 0 0 0.003983 -0.00171861 -0.00171861 0 0 0 191.024 2.59446e-06 2.59446e-06 0 0 0 14.2354 0.130322 1.40236 12.7027 +3 1 1 83 3.41 290 0 0 0.003784 -0.00165891 -0.00165891 0 0 0 163.164 2.59446e-06 2.59446e-06 0 0 0 14.2002 0.0950799 1.40236 12.7027 +3 1 1 84 3.415 290 0 0 0.00358 -0.00159771 -0.00159771 0 0 0 134.604 2.59446e-06 2.59446e-06 0 0 0 14.1698 0.0647076 1.40236 12.7027 +3 1 1 85 3.42 290 0 0 0.003381 -0.00153801 -0.00153801 0 0 0 106.744 2.59446e-06 2.59446e-06 0 0 0 14.1458 0.0406936 1.40236 12.7027 +3 1 1 86 3.425 290 0 0 0.003179 -0.00147741 -0.00147741 0 0 0 78.4636 2.59446e-06 2.59446e-06 0 0 0 14.1271 0.0219876 1.40236 12.7027 +3 1 1 87 3.43 290 0 0 0.002979 -0.00141741 -0.00141741 0 0 0 50.4636 2.59446e-06 2.59446e-06 0 0 0 14.1142 0.00909492 1.40236 12.7027 +3 1 1 88 3.435 290 0 0 0.002775 -0.00135621 -0.00135621 0 0 0 21.9036 2.59446e-06 2.59446e-06 0 0 0 14.1068 0.00171346 1.40236 12.7027 +3 1 1 89 3.44 290 0 0 0.002575 -0.00129621 -0.00129621 0 0 0 -6.09637 2.59446e-06 2.59446e-06 0 0 0 14.1052 0.000132735 1.40236 12.7027 +3 1 1 90 3.445 290 0 0 0.002369 -0.00123441 -0.00123441 0 0 0 -34.9364 2.59446e-06 2.59446e-06 0 0 0 14.1094 0.00435911 1.40236 12.7027 +3 1 1 91 3.45 290 0 0 0.002174 -0.00117591 -0.00117591 0 0 0 -62.2364 2.59446e-06 2.59446e-06 0 0 0 14.1189 0.0138334 1.40236 12.7027 +3 1 1 92 3.455 290 0 0 0.001967 -0.00111381 -0.00111381 0 0 0 -91.2164 2.59446e-06 2.59446e-06 0 0 0 14.1348 0.0297158 1.40236 12.7027 +3 1 1 93 3.46 290 0 0 0.001768 -0.00105411 -0.00105411 0 0 0 -119.076 2.59446e-06 2.59446e-06 0 0 0 14.1557 0.0506399 1.40236 12.7027 +3 1 1 94 3.465 290 0 0 0.001568 -0.000994109 -0.000994109 0 0 0 -147.076 2.59446e-06 2.59446e-06 0 0 0 14.1823 0.0772552 1.40236 12.7027 +3 1 1 95 3.47 290 0 0 0.001366 -0.000933509 -0.000933509 0 0 0 -175.356 2.59446e-06 2.59446e-06 0 0 0 14.2149 0.109821 1.40236 12.7027 +3 1 1 96 3.475 290 0 0 0.001164 -0.000872909 -0.000872909 0 0 0 -203.636 2.59446e-06 2.59446e-06 0 0 0 14.2532 0.148099 1.40236 12.7027 +3 1 1 97 3.48 290 0 0 0.0009631 -0.000812639 -0.000812639 0 0 0 -231.762 2.59446e-06 2.59446e-06 0 0 0 14.2969 0.191835 1.40236 12.7027 +3 1 1 98 3.485 290 0 0 0.0007598 -0.000751649 -0.000751649 0 0 0 -260.224 2.59446e-06 2.59446e-06 0 0 0 14.3469 0.241845 1.40236 12.7027 +3 1 1 99 3.49 290 0 0 0.0005588 -0.000691349 -0.000691349 0 0 0 -288.364 2.59446e-06 2.59446e-06 0 0 0 14.4021 0.296979 1.40236 12.7027 +3 1 1 100 3.495 290 0 0 0.0003567 -0.000630719 -0.000630719 0 0 0 -316.658 2.59446e-06 2.59446e-06 0 0 0 14.4632 0.358116 1.40236 12.7027 +3 1 1 101 3.5 290 0 0 0.000161 -0.000572009 -0.000572009 0 0 0 -344.056 2.59446e-06 2.59446e-06 0 0 0 14.5278 0.422767 1.40236 12.7027 +3 1 1 102 3.505 290 0 0 -4.58e-05 -0.000509969 -0.000509969 0 0 0 -373.008 2.59446e-06 2.59446e-06 0 0 0 14.602 0.496912 1.40236 12.7027 +3 1 1 103 3.51 290 0 0 -0.000251 -0.000448409 -0.000448409 0 0 0 -401.736 2.59446e-06 2.59446e-06 0 0 0 14.6815 0.5764 1.40236 12.7027 +3 1 1 104 3.515 290 0 0 -0.000473 -0.000381809 -0.000381809 0 0 0 -432.816 2.59446e-06 2.59446e-06 0 0 0 14.7741 0.669036 1.40236 12.7027 +3 1 1 105 3.52 290 0 0 -0.0006533 -0.000327719 -0.000327719 0 0 0 -458.058 2.59446e-06 2.59446e-06 0 0 0 14.8544 0.749348 1.40236 12.7027 +3 1 1 106 3.525 290 0 0 -0.0008338 -0.000273569 -0.000273569 0 0 0 -483.328 2.59446e-06 2.59446e-06 0 0 0 14.9394 0.834308 1.40236 12.7027 +3 1 1 107 3.53 290 0 0 -0.001036 -0.000212909 -0.000212909 0 0 0 -511.636 2.59446e-06 2.59446e-06 0 0 0 15.04 0.934899 1.40236 12.7027 +3 1 1 108 3.535 290 0 0 -0.001266 -0.000143909 -0.000143909 0 0 0 -543.836 2.59446e-06 2.59446e-06 0 0 0 15.1614 1.05628 1.40236 12.7027 +3 1 1 109 3.54 290 0 0 -0.001442 -9.11091e-05 -9.11091e-05 0 0 0 -568.476 2.59446e-06 2.59446e-06 0 0 0 15.2592 1.15416 1.40236 12.7027 +3 1 1 110 3.545 290 0 0 -0.001663 -2.48091e-05 -2.48091e-05 0 0 0 -599.416 2.59446e-06 2.59446e-06 0 0 0 15.3883 1.28321 1.40236 12.7027 +3 1 1 111 3.55 290 0 0 -0.001853 3.21909e-05 3.21909e-05 0 0 0 -626.016 2.59446e-06 2.59446e-06 0 0 0 15.5047 1.39963 1.40236 12.7027 +3 1 1 112 3.555 290 0 0 -0.002054 9.24909e-05 9.24909e-05 0 0 0 -654.156 2.59446e-06 2.59446e-06 0 0 0 15.6334 1.52829 1.40236 12.7027 +3 1 1 113 3.56 290 0 0 -0.002259 0.000153991 0.000153991 0 0 0 -682.856 2.59446e-06 2.59446e-06 0 0 0 15.7704 1.66533 1.40236 12.7027 +3 1 1 114 3.565 290 0 0 -0.002461 0.000214591 0.000214591 0 0 0 -711.136 2.59446e-06 2.59446e-06 0 0 0 15.9112 1.80612 1.40236 12.7027 +3 1 1 115 3.57 290 0 0 -0.002659 0.000273991 0.000273991 0 0 0 -738.856 2.59446e-06 2.59446e-06 0 0 0 16.0548 1.94967 1.40236 12.7027 +3 1 1 116 3.575 290 0 0 -0.002862 0.000340712 0.000340712 0 0 0 -763.202 2.59636e-06 2.59636e-06 0 0 0 16.2072 2.08027 1.39868 12.7283 +3 1 1 117 3.58 290 0 0 -0.003061 0.000410714 0.000410714 0 0 0 -783.85 2.32517e-06 2.32517e-06 0 0 0 16.3611 2.19436 1.39319 12.7736 +3 1 1 118 3.585 290 0 0 -0.003257 0.000480755 0.000480755 0 0 0 -803.421 1.93759e-06 1.93759e-06 0 0 0 16.5167 2.30531 1.38825 12.8231 +3 1 1 119 3.59 290 0 0 -0.003458 0.000553873 0.000553873 0 0 0 -822.589 1.29954e-06 1.29954e-06 0 0 0 16.6801 2.41662 1.38378 12.8797 +3 1 1 120 3.595 290 0 0 -0.003656 0.000627377 0.000627377 0 0 0 -840.436 1.3021e-06 1.3021e-06 0 0 0 16.8448 2.52262 1.38005 12.9421 +3 1 1 121 3.6 290 0 0 -0.003869 0.000708261 0.000708261 0 0 0 -858.367 1.30753e-06 1.30753e-06 0 0 0 17.0257 2.63141 1.37697 13.0173 +3 1 1 122 3.605 290 0 0 -0.004064 0.000784197 0.000784197 0 0 0 -873.462 1.31196e-06 1.31196e-06 0 0 0 17.1945 2.72477 1.37502 13.0947 +3 1 1 123 3.61 290 0 0 -0.004268 0.000865611 0.000865611 0 0 0 -887.872 1.31772e-06 1.31772e-06 0 0 0 17.3742 2.81542 1.37405 13.1847 +3 1 1 124 3.615 290 0 0 -0.004478 0.000951544 0.000951544 0 0 0 -901.219 1.32306e-06 1.32306e-06 0 0 0 17.562 2.9007 1.3743 13.287 +3 1 1 125 3.62 290 0 0 -0.004672 0.00103278 0.00103278 0 0 0 -912.256 1.3252e-06 1.3252e-06 0 0 0 17.7379 2.97218 1.37562 13.3901 +3 1 1 126 3.625 290 0 0 -0.004881 0.00112195 0.00112195 0 0 0 -922.985 7.46564e-07 7.46564e-07 0 0 0 17.9297 3.04251 1.3783 13.5089 +3 1 1 127 3.63 290 0 0 -0.00507 0.00120386 0.00120386 0 0 0 -931.799 5.69099e-07 5.69099e-07 0 0 0 18.105 3.10089 1.38173 13.6224 +3 1 1 128 3.635 290 0 0 -0.005275 0.0012937 0.0012937 0 0 0 -940.663 4.64467e-07 4.64467e-07 0 0 0 18.2969 3.16017 1.38655 13.7502 +3 1 1 129 3.64 290 0 0 -0.005476 0.00138255 0.00138255 0 0 0 -948.813 4.27807e-07 4.27807e-07 0 0 0 18.4868 3.21516 1.39227 13.8794 +3 1 1 130 3.645 290 0 0 -0.005679 0.00147285 0.00147285 0 0 0 -956.653 4.12998e-07 4.12998e-07 0 0 0 18.6802 3.26852 1.39899 14.0127 +3 1 1 131 3.65 290 0 0 -0.005881 0.00156312 0.00156312 0 0 0 -964.168 4.06952e-07 4.06953e-07 0 0 0 18.8742 3.32007 1.40657 14.1476 +3 1 1 132 3.655 290 0 0 -0.006082 0.00165324 0.00165324 0 0 0 -971.431 4.04141e-07 4.04141e-07 0 0 0 19.0688 3.37028 1.41494 14.2835 +3 1 1 133 3.66 290 0 0 -0.006282 0.00174316 0.00174316 0 0 0 -978.491 4.02619e-07 4.02619e-07 0 0 0 19.2638 3.41945 1.42407 14.4202 +3 1 1 134 3.665 290 0 0 -0.006482 0.00183327 0.00183327 0 0 0 -985.414 4.01647e-07 4.01648e-07 0 0 0 19.4601 3.468 1.43397 14.5582 +3 1 1 135 3.67 290 0 0 -0.006687 0.00192581 0.00192581 0 0 0 -992.386 4.00874e-07 4.00874e-07 0 0 0 19.6629 3.51725 1.4449 14.7007 +3 1 1 136 3.675 290 0 0 -0.006887 0.00201625 0.00201625 0 0 0 -999.078 4.00321e-07 4.00321e-07 0 0 0 19.862 3.56485 1.45631 14.8409 +3 1 1 137 3.68 290 0 0 -0.00709 0.00210819 0.00210819 0 0 0 -1005.77 3.99822e-07 3.99822e-07 0 0 0 20.0655 3.61275 1.46862 14.9841 +3 1 1 138 3.685 290 0 0 -0.00729 0.00219891 0.00219891 0 0 0 -1012.26 3.99406e-07 3.99406e-07 0 0 0 20.2673 3.65956 1.48147 15.1263 +3 1 1 139 3.69 290 0 0 -0.007495 0.00229204 0.00229204 0 0 0 -1018.82 3.98986e-07 3.98986e-07 0 0 0 20.4755 3.70716 1.49537 15.273 +3 1 1 140 3.695 290 0 0 -0.007697 0.00238393 0.00238393 0 0 0 -1025.2 3.98618e-07 3.98618e-07 0 0 0 20.6819 3.75368 1.50977 15.4185 +3 1 1 141 3.7 290 0 0 -0.007895 0.00247413 0.00247413 0 0 0 -1031.36 3.983e-07 3.983e-07 0 0 0 20.8855 3.79893 1.52454 15.5621 +3 1 1 142 3.705 290 0 0 -0.008104 0.00256947 0.00256947 0 0 0 -1037.77 3.97926e-07 3.97926e-07 0 0 0 21.1018 3.84632 1.54086 15.7146 +3 1 1 143 3.71 290 0 0 -0.008306 0.00266174 0.00266174 0 0 0 -1043.88 3.97618e-07 3.97618e-07 0 0 0 21.312 3.89174 1.5573 15.863 +3 1 1 144 3.715 290 0 0 -0.008502 0.00275139 0.00275139 0 0 0 -1049.73 3.97359e-07 3.97358e-07 0 0 0 21.5172 3.93546 1.57387 16.0079 +3 1 1 145 3.72 290 0 0 -0.008711 0.0028471 0.0028471 0 0 0 -1055.88 3.9704e-07 3.97039e-07 0 0 0 21.7372 3.9817 1.59223 16.1633 +3 1 1 146 3.725 290 0 0 -0.008908 0.00293744 0.00293744 0 0 0 -1061.59 3.96801e-07 3.968e-07 0 0 0 21.9458 4.02493 1.61014 16.3107 +3 1 1 147 3.73 290 0 0 -0.009117 0.00303339 0.00303339 0 0 0 -1067.57 3.96513e-07 3.96513e-07 0 0 0 22.1683 4.07041 1.62981 16.4681 +3 1 1 148 3.735 290 0 0 -0.00931 0.00312211 0.00312211 0 0 0 -1073.02 3.96315e-07 3.96314e-07 0 0 0 22.3749 4.11206 1.64854 16.6143 +3 1 1 149 3.74 290 0 0 -0.009518 0.00321784 0.00321784 0 0 0 -1078.81 3.9606e-07 3.9606e-07 0 0 0 22.5986 4.15657 1.66935 16.7727 +3 1 1 150 3.745 290 0 0 -0.009719 0.00331045 0.00331045 0 0 0 -1084.33 3.9585e-07 3.9585e-07 0 0 0 22.816 4.19922 1.69006 16.9268 +3 1 1 151 3.75 290 0 0 -0.009925 0.00340548 0.00340548 0 0 0 -1089.91 3.95631e-07 3.95631e-07 0 0 0 23.04 4.24255 1.71188 17.0856 +3 1 1 152 3.755 290 0 0 -0.009932 0.00340871 0.00340871 0 0 0 -1090.1 3.95677e-07 3.95677e-07 0 0 0 23.0476 4.24401 1.71262 17.091 +3 1 1 153 3.76 290 0 0 -0.009694 0.00333731 0.00333731 0 0 0 -1056.78 3.95677e-07 3.95677e-07 0 0 0 22.7921 3.98853 1.71262 17.091 +3 1 1 154 3.765 290 0 0 -0.009514 0.00328331 0.00328331 0 0 0 -1031.58 3.95677e-07 3.95677e-07 0 0 0 22.6042 3.80058 1.71262 17.091 +3 1 1 155 3.77 290 0 0 -0.00933 0.00322811 0.00322811 0 0 0 -1005.82 3.95677e-07 3.95677e-07 0 0 0 22.4167 3.61314 1.71262 17.091 +3 1 1 156 3.775 290 0 0 -0.009136 0.00316991 0.00316991 0 0 0 -978.662 3.95677e-07 3.95677e-07 0 0 0 22.2243 3.42064 1.71262 17.091 +3 1 1 157 3.78 290 0 0 -0.008945 0.00311261 0.00311261 0 0 0 -951.922 3.95677e-07 3.95677e-07 0 0 0 22.0399 3.23627 1.71262 17.091 +3 1 1 158 3.785 290 0 0 -0.008755 0.00305561 0.00305561 0 0 0 -925.322 3.95677e-07 3.95677e-07 0 0 0 21.8615 3.05793 1.71262 17.091 +3 1 1 159 3.79 290 0 0 -0.008566 0.00299891 0.00299891 0 0 0 -898.862 3.95677e-07 3.95677e-07 0 0 0 21.6892 2.88555 1.71262 17.091 +3 1 1 160 3.795 290 0 0 -0.008376 0.00294191 0.00294191 0 0 0 -872.262 3.95677e-07 3.95677e-07 0 0 0 21.5209 2.71729 1.71262 17.091 +3 1 1 161 3.8 290 0 0 -0.008206 0.00289091 0.00289091 0 0 0 -848.462 3.95677e-07 3.95677e-07 0 0 0 21.3746 2.57103 1.71262 17.091 +3 1 1 162 3.805 290 0 0 -0.008016 0.00283391 0.00283391 0 0 0 -821.862 3.95677e-07 3.95677e-07 0 0 0 21.216 2.41235 1.71262 17.091 +3 1 1 163 3.81 290 0 0 -0.007818 0.00277451 0.00277451 0 0 0 -794.142 3.95677e-07 3.95677e-07 0 0 0 21.056 2.25236 1.71262 17.091 +3 1 1 164 3.815 290 0 0 -0.007621 0.00271541 0.00271541 0 0 0 -766.562 3.95677e-07 3.95677e-07 0 0 0 20.9022 2.09864 1.71262 17.091 +3 1 1 165 3.82 290 0 0 -0.007428 0.00265751 0.00265751 0 0 0 -739.542 3.95677e-07 3.95677e-07 0 0 0 20.7569 1.9533 1.71262 17.091 +3 1 1 166 3.825 290 0 0 -0.007235 0.00259961 0.00259961 0 0 0 -712.522 3.95677e-07 3.95677e-07 0 0 0 20.6168 1.81317 1.71262 17.091 +3 1 1 167 3.83 290 0 0 -0.007034 0.00253931 0.00253931 0 0 0 -684.382 3.95677e-07 3.95677e-07 0 0 0 20.4764 1.67278 1.71262 17.091 +3 1 1 168 3.835 290 0 0 -0.006843 0.00248201 0.00248201 0 0 0 -657.642 3.95677e-07 3.95677e-07 0 0 0 20.3482 1.54462 1.71262 17.091 +3 1 1 169 3.84 290 0 0 -0.006644 0.00242231 0.00242231 0 0 0 -629.782 3.95677e-07 3.95677e-07 0 0 0 20.2201 1.41652 1.71262 17.091 +3 1 1 170 3.845 290 0 0 -0.006447 0.00236321 0.00236321 0 0 0 -602.202 3.95677e-07 3.95677e-07 0 0 0 20.0988 1.29517 1.71262 17.091 +3 1 1 171 3.85 290 0 0 -0.006255 0.00230561 0.00230561 0 0 0 -575.322 3.95677e-07 3.95677e-07 0 0 0 19.9857 1.18213 1.71262 17.091 +3 1 1 172 3.855 290 0 0 -0.006061 0.00224741 0.00224741 0 0 0 -548.162 3.95677e-07 3.95677e-07 0 0 0 19.8768 1.07315 1.71262 17.091 +3 1 1 173 3.86 290 0 0 -0.005869 0.00218981 0.00218981 0 0 0 -521.282 3.95677e-07 3.95677e-07 0 0 0 19.7741 0.970483 1.71262 17.091 +3 1 1 174 3.865 290 0 0 -0.005716 0.00214391 0.00214391 0 0 0 -499.862 3.95677e-07 3.95677e-07 0 0 0 19.696 0.892366 1.71262 17.091 +3 1 1 175 3.87 290 0 0 -0.005559 0.00209681 0.00209681 0 0 0 -477.882 3.95677e-07 3.95677e-07 0 0 0 19.6192 0.815613 1.71262 17.091 +3 1 1 176 3.875 290 0 0 -0.00536 0.00203711 0.00203711 0 0 0 -450.022 3.95677e-07 3.95677e-07 0 0 0 19.5269 0.723286 1.71262 17.091 +3 1 1 177 3.88 290 0 0 -0.005148 0.00197351 0.00197351 0 0 0 -420.342 3.95677e-07 3.95677e-07 0 0 0 19.4346 0.631028 1.71262 17.091 +3 1 1 178 3.885 290 0 0 -0.004948 0.00191351 0.00191351 0 0 0 -392.342 3.95677e-07 3.95677e-07 0 0 0 19.3534 0.549759 1.71262 17.091 +3 1 1 179 3.89 290 0 0 -0.004718 0.00184451 0.00184451 0 0 0 -360.142 3.95677e-07 3.95677e-07 0 0 0 19.2668 0.463223 1.71262 17.091 +3 1 1 180 3.895 290 0 0 -0.004497 0.00177821 0.00177821 0 0 0 -329.202 3.95677e-07 3.95677e-07 0 0 0 19.1907 0.387051 1.71262 17.091 +3 1 1 181 3.9 290 0 0 -0.00426 0.00170711 0.00170711 0 0 0 -296.022 3.95677e-07 3.95677e-07 0 0 0 19.1166 0.312962 1.71262 17.091 +3 1 1 182 3.905 290 0 0 -0.004032 0.00163871 0.00163871 0 0 0 -264.102 3.95677e-07 3.95677e-07 0 0 0 19.0527 0.249107 1.71262 17.091 +3 1 1 183 3.91 290 0 0 -0.003822 0.00157571 0.00157571 0 0 0 -234.702 3.95677e-07 3.95677e-07 0 0 0 19.0003 0.196733 1.71262 17.091 +3 1 1 184 3.915 290 0 0 -0.003625 0.00151661 0.00151661 0 0 0 -207.122 3.95677e-07 3.95677e-07 0 0 0 18.9568 0.153213 1.71262 17.091 +3 1 1 185 3.92 290 0 0 -0.00342 0.00145511 0.00145511 0 0 0 -178.422 3.95677e-07 3.95677e-07 0 0 0 18.9173 0.113695 1.71262 17.091 +3 1 1 186 3.925 290 0 0 -0.003221 0.00139541 0.00139541 0 0 0 -150.562 3.95677e-07 3.95677e-07 0 0 0 18.8846 0.0809609 1.71262 17.091 +3 1 1 187 3.93 290 0 0 -0.003025 0.00133661 0.00133661 0 0 0 -123.122 3.95677e-07 3.95677e-07 0 0 0 18.8577 0.0541397 1.71262 17.091 +3 1 1 188 3.935 290 0 0 -0.002824 0.00127631 0.00127631 0 0 0 -94.9824 3.95677e-07 3.95677e-07 0 0 0 18.8358 0.0322202 1.71262 17.091 +3 1 1 189 3.94 290 0 0 -0.002622 0.00121571 0.00121571 0 0 0 -66.7024 3.95677e-07 3.95677e-07 0 0 0 18.8195 0.01589 1.71262 17.091 +3 1 1 190 3.945 290 0 0 -0.002429 0.00115781 0.00115781 0 0 0 -39.6824 3.95677e-07 3.95677e-07 0 0 0 18.8092 0.00562391 1.71262 17.091 +3 1 1 191 3.95 290 0 0 -0.002227 0.00109721 0.00109721 0 0 0 -11.4024 3.95677e-07 3.95677e-07 0 0 0 18.8041 0.000464339 1.71262 17.091 +3 1 1 192 3.955 290 0 0 -0.002033 0.00103901 0.00103901 0 0 0 15.7576 3.95677e-07 3.95677e-07 0 0 0 18.8045 0.000886791 1.71262 17.091 +3 1 1 193 3.96 290 0 0 -0.001832 0.000978711 0.000978711 0 0 0 43.8976 3.95677e-07 3.95677e-07 0 0 0 18.8105 0.00688214 1.71262 17.091 +3 1 1 194 3.965 290 0 0 -0.001634 0.000919311 0.000919311 0 0 0 71.6176 3.95677e-07 3.95677e-07 0 0 0 18.8219 0.0183181 1.71262 17.091 +3 1 1 195 3.97 290 0 0 -0.001432 0.000858711 0.000858711 0 0 0 99.8976 3.95677e-07 3.95677e-07 0 0 0 18.8393 0.0356412 1.71262 17.091 +3 1 1 196 3.975 290 0 0 -0.001236 0.000799911 0.000799911 0 0 0 127.338 3.95677e-07 3.95677e-07 0 0 0 18.8615 0.0579102 1.71262 17.091 +3 1 1 197 3.98 290 0 0 -0.001033 0.000739011 0.000739011 0 0 0 155.758 3.95677e-07 3.95677e-07 0 0 0 18.8903 0.0866444 1.71262 17.091 +3 1 1 198 3.985 290 0 0 -0.0008346 0.000679491 0.000679491 0 0 0 183.534 3.95677e-07 3.95677e-07 0 0 0 18.9239 0.120302 1.71262 17.091 +3 1 1 199 3.99 290 0 0 -0.0006298 0.000618051 0.000618051 0 0 0 212.206 3.95677e-07 3.95677e-07 0 0 0 18.9644 0.160826 1.71262 17.091 +3 1 1 200 3.995 290 0 0 -0.000429 0.000557811 0.000557811 0 0 0 240.318 3.95677e-07 3.95677e-07 0 0 0 19.0099 0.206259 1.71262 17.091 +3 1 1 201 4 290 0 0 -0.000228 0.000497511 0.000497511 0 0 0 268.458 3.95677e-07 3.95677e-07 0 0 0 19.061 0.257391 1.71262 17.091 diff --git a/testBin/Umats/EPHAC/comparison/simul_1.txt b/testBin/Umats/EPHAC/comparison/simul_1.txt index 1f9f906e8..34978d798 100644 --- a/testBin/Umats/EPHAC/comparison/simul_1.txt +++ b/testBin/Umats/EPHAC/comparison/simul_1.txt @@ -1,201 +1,201 @@ -3 1 1 1 0 290 0 0 -7.09e-05 0.000376421 0.000376421 0 0 0 238.68 -1.49796e-05 -1.49796e-05 0 0 0 6.27431 0.265939 0.832803 5.17557 -3 1 1 2 0.005 290 0 0 0.000126 0.000283382 0.000283382 0 0 0 242.467 -1.46387e-05 -1.46387e-05 0 0 0 6.32168 0.279095 0.842166 5.20042 -3 1 1 3 0.01 290 0 0 0.000333 0.000185435 0.000185435 0 0 0 246.355 -1.46382e-05 -1.46382e-05 0 0 0 6.37228 0.293107 0.852101 5.22707 -3 1 1 4 0.015 290 0 0 0.000526 9.39879e-05 9.39879e-05 0 0 0 249.892 -1.46379e-05 -1.46379e-05 0 0 0 6.42016 0.306298 0.861448 5.25242 -3 1 1 5 0.02 290 0 0 0.0007279 -1.79976e-06 -1.79976e-06 0 0 0 253.505 -1.46376e-05 -1.46376e-05 0 0 0 6.47098 0.320207 0.871313 5.27946 -3 1 1 6 0.025 290 0 0 0.0009266 -9.61919e-05 -9.61919e-05 0 0 0 256.976 -1.46373e-05 -1.46373e-05 0 0 0 6.5217 0.333973 0.881109 5.30662 -3 1 1 7 0.03 290 0 0 0.001132 -0.000193891 -0.000193891 0 0 0 260.476 -1.4637e-05 -1.4637e-05 0 0 0 6.57484 0.348262 0.891325 5.33525 -3 1 1 8 0.035 290 0 0 0.00133 -0.000288189 -0.000288189 0 0 0 263.768 -1.46367e-05 -1.46367e-05 0 0 0 6.62674 0.36206 0.90126 5.36342 -3 1 1 9 0.04 290 0 0 0.001533 -0.000384985 -0.000384985 0 0 0 267.061 -1.46364e-05 -1.46364e-05 0 0 0 6.68062 0.376214 0.911533 5.39287 -3 1 1 10 0.045 290 0 0 0.001727 -0.0004776 -0.0004776 0 0 0 270.13 -1.46362e-05 -1.46362e-05 0 0 0 6.73273 0.38972 0.921434 5.42157 -3 1 1 11 0.05 290 0 0 0.001933 -0.000576056 -0.000576056 0 0 0 273.311 -1.4636e-05 -1.4636e-05 0 0 0 6.7887 0.40403 0.932037 5.45264 -3 1 1 12 0.055 290 0 0 0.002134 -0.000672233 -0.000672233 0 0 0 276.337 -1.46357e-05 -1.46357e-05 0 0 0 6.84394 0.417934 0.942469 5.48354 -3 1 1 13 0.06 290 0 0 0.002335 -0.000768518 -0.000768518 0 0 0 279.287 -1.46355e-05 -1.46355e-05 0 0 0 6.89978 0.431766 0.952989 5.51503 -3 1 1 14 0.065 290 0 0 0.002534 -0.000863949 -0.000863949 0 0 0 282.136 -1.46354e-05 -1.46354e-05 0 0 0 6.95564 0.445371 0.963489 5.54678 -3 1 1 15 0.07 290 0 0 0.00274 -0.000962841 -0.000962841 0 0 0 285.012 -1.46352e-05 -1.46352e-05 0 0 0 7.01406 0.459352 0.974446 5.58026 -3 1 1 16 0.075 290 0 0 0.002938 -0.00105799 -0.00105799 0 0 0 287.705 -1.4635e-05 -1.4635e-05 0 0 0 7.07076 0.472671 0.985064 5.61302 -3 1 1 17 0.08 290 0 0 0.003138 -0.0011542 -0.0011542 0 0 0 290.359 -1.46349e-05 -1.46349e-05 0 0 0 7.12857 0.485998 0.995873 5.64669 -3 1 1 18 0.085 290 0 0 0.003332 -0.00124761 -0.00124761 0 0 0 292.87 -1.46347e-05 -1.46347e-05 0 0 0 7.18514 0.498791 1.00644 5.67991 -3 1 1 19 0.09 290 0 0 0.003545 -0.00135028 -0.00135028 0 0 0 295.557 -1.46346e-05 -1.46346e-05 0 0 0 7.24781 0.512685 1.01813 5.71699 -3 1 1 20 0.095 290 0 0 0.003737 -0.0014429 -0.0014429 0 0 0 297.917 -1.53233e-05 -1.53233e-05 0 0 0 7.30478 0.525047 1.02875 5.75098 -3 1 1 21 0.1 290 0 0 0.003942 -0.00154189 -0.00154189 0 0 0 300.375 -1.53231e-05 -1.53231e-05 0 0 0 7.3661 0.538085 1.04017 5.78785 -3 1 1 22 0.105 290 0 0 0.004136 -0.00163565 -0.00163565 0 0 0 302.642 -1.59669e-05 -1.59669e-05 0 0 0 7.4246 0.550251 1.05106 5.82328 -3 1 1 23 0.11 290 0 0 0.004343 -0.00173578 -0.00173578 0 0 0 305.002 -1.59667e-05 -1.59667e-05 0 0 0 7.48749 0.563053 1.06277 5.86167 -3 1 1 24 0.115 290 0 0 0.004549 -0.00183552 -0.00183552 0 0 0 307.288 -1.66626e-05 -1.66626e-05 0 0 0 7.55055 0.575597 1.07451 5.90045 -3 1 1 25 0.12 290 0 0 0.004744 -0.00193 -0.00193 0 0 0 309.398 -1.72227e-05 -1.72227e-05 0 0 0 7.61068 0.587282 1.0857 5.9377 -3 1 1 26 0.125 290 0 0 0.004945 -0.00202747 -0.00202747 0 0 0 311.519 -1.78057e-05 -1.78057e-05 0 0 0 7.67308 0.599137 1.09732 5.97663 -3 1 1 27 0.13 290 0 0 0.00515 -0.00212696 -0.00212696 0 0 0 313.627 -1.83925e-05 -1.83925e-05 0 0 0 7.73716 0.611025 1.10925 6.01688 -3 1 1 28 0.135 290 0 0 0.00535 -0.0022241 -0.0022241 0 0 0 315.631 -1.89087e-05 -1.89087e-05 0 0 0 7.80009 0.622419 1.12098 6.05669 -3 1 1 29 0.14 290 0 0 0.005549 -0.00232082 -0.00232082 0 0 0 317.575 -1.9391e-05 -1.9391e-05 0 0 0 7.86309 0.633556 1.13273 6.09681 -3 1 1 30 0.145 290 0 0 0.005751 -0.00241907 -0.00241907 0 0 0 319.499 -1.98691e-05 -1.98691e-05 0 0 0 7.92744 0.644656 1.14473 6.13805 -3 1 1 31 0.15 290 0 0 0.005952 -0.00251691 -0.00251691 0 0 0 321.366 -2.03151e-05 -2.03151e-05 0 0 0 7.99184 0.655494 1.15676 6.17959 -3 1 1 32 0.155 290 0 0 0.00615 -0.00261335 -0.00261335 0 0 0 323.158 -2.07188e-05 -2.07188e-05 0 0 0 8.05565 0.665966 1.16869 6.22099 -3 1 1 33 0.16 290 0 0 0.006352 -0.0027118 -0.0027118 0 0 0 324.942 -2.11248e-05 -2.11248e-05 0 0 0 8.12111 0.676443 1.18094 6.26373 -3 1 1 34 0.165 290 0 0 0.006553 -0.00280983 -0.00280983 0 0 0 326.672 -2.1503e-05 -2.1503e-05 0 0 0 8.1866 0.686661 1.19321 6.30673 -3 1 1 35 0.17 290 0 0 0.006755 -0.0029084 -0.0029084 0 0 0 328.367 -2.18661e-05 -2.18661e-05 0 0 0 8.25275 0.69672 1.20562 6.35041 -3 1 1 36 0.175 290 0 0 0.006959 -0.00300802 -0.00300802 0 0 0 330.036 -2.22195e-05 -2.22195e-05 0 0 0 8.31991 0.706669 1.21824 6.39501 -3 1 1 37 0.18 290 0 0 0.007154 -0.0031033 -0.0031033 0 0 0 331.592 -2.2511e-05 -2.2511e-05 0 0 0 8.38442 0.715977 1.23037 6.43807 -3 1 1 38 0.185 290 0 0 0.007357 -0.00320254 -0.00320254 0 0 0 333.172 -2.28221e-05 -2.28221e-05 0 0 0 8.45189 0.725467 1.24308 6.48334 -3 1 1 39 0.19 290 0 0 0.007556 -0.00329988 -0.00329988 0 0 0 334.683 -2.30988e-05 -2.30988e-05 0 0 0 8.51834 0.734567 1.25562 6.52815 -3 1 1 40 0.195 290 0 0 0.00776 -0.00339972 -0.00339972 0 0 0 336.193 -2.33802e-05 -2.33802e-05 0 0 0 8.58677 0.743694 1.26856 6.57452 -3 1 1 41 0.2 290 0 0 0.007962 -0.00349864 -0.00349864 0 0 0 337.652 -2.36379e-05 -2.36379e-05 0 0 0 8.65483 0.752528 1.28144 6.62086 -3 1 1 42 0.205 290 0 0 0.008162 -0.00359663 -0.00359663 0 0 0 339.061 -2.38738e-05 -2.38738e-05 0 0 0 8.7225 0.76108 1.29428 6.66714 -3 1 1 43 0.21 290 0 0 0.008359 -0.00369319 -0.00369319 0 0 0 340.416 -2.40865e-05 -2.40865e-05 0 0 0 8.78943 0.769314 1.307 6.71312 -3 1 1 44 0.215 290 0 0 0.008567 -0.0037952 -0.0037952 0 0 0 341.812 -2.43228e-05 -2.43228e-05 0 0 0 8.86038 0.777813 1.32051 6.76206 -3 1 1 45 0.22 290 0 0 0.008759 -0.0038894 -0.0038894 0 0 0 343.069 -2.44977e-05 -2.44977e-05 0 0 0 8.92613 0.785473 1.33306 6.8076 -3 1 1 46 0.225 290 0 0 0.008965 -0.00399052 -0.00399052 0 0 0 344.387 -2.47017e-05 -2.47017e-05 0 0 0 8.99694 0.793508 1.34659 6.85684 -3 1 1 47 0.23 290 0 0 0.009171 -0.00409168 -0.00409168 0 0 0 345.672 -2.48936e-05 -2.48936e-05 0 0 0 9.06802 0.801351 1.36021 6.90646 -3 1 1 48 0.235 290 0 0 0.009368 -0.00418847 -0.00418847 0 0 0 346.872 -2.50515e-05 -2.50515e-05 0 0 0 9.13623 0.808672 1.3733 6.95426 -3 1 1 49 0.24 290 0 0 0.009567 -0.00428628 -0.00428628 0 0 0 348.055 -2.52049e-05 -2.52049e-05 0 0 0 9.20538 0.815895 1.38661 7.00288 -3 1 1 50 0.245 290 0 0 0.00977 -0.00438609 -0.00438609 0 0 0 349.235 -2.53583e-05 -2.53583e-05 0 0 0 9.27615 0.823089 1.40025 7.05281 -3 1 1 51 0.25 290 0 0 0.009963 -0.00448103 -0.00448103 0 0 0 350.33 -2.54824e-05 -2.54824e-05 0 0 0 9.34366 0.829766 1.4133 7.1006 -3 1 1 52 0.255 290 0 0 0.009958 -0.00447953 -0.00447953 0 0 0 349.63 -2.54824e-05 -2.54824e-05 0 0 0 9.34191 0.828016 1.4133 7.1006 -3 1 1 53 0.26 290 0 0 0.009779 -0.00442583 -0.00442583 0 0 0 324.57 -2.54824e-05 -2.54824e-05 0 0 0 9.28157 0.767675 1.4133 7.1006 -3 1 1 54 0.265 290 0 0 0.009587 -0.00436823 -0.00436823 0 0 0 297.69 -2.54824e-05 -2.54824e-05 0 0 0 9.22183 0.707938 1.4133 7.1006 -3 1 1 55 0.27 290 0 0 0.009386 -0.00430793 -0.00430793 0 0 0 269.55 -2.54824e-05 -2.54824e-05 0 0 0 9.16483 0.65093 1.4133 7.1006 -3 1 1 56 0.275 290 0 0 0.009198 -0.00425153 -0.00425153 0 0 0 243.23 -2.54824e-05 -2.54824e-05 0 0 0 9.11662 0.602728 1.4133 7.1006 -3 1 1 57 0.28 290 0 0 0.009002 -0.00419273 -0.00419273 0 0 0 215.79 -2.54824e-05 -2.54824e-05 0 0 0 9.07164 0.557744 1.4133 7.1006 -3 1 1 58 0.285 290 0 0 0.008811 -0.00413543 -0.00413543 0 0 0 189.05 -2.54824e-05 -2.54824e-05 0 0 0 9.03298 0.519082 1.4133 7.1006 -3 1 1 59 0.29 290 0 0 0.008615 -0.00407663 -0.00407663 0 0 0 161.61 -2.54824e-05 -2.54824e-05 0 0 0 8.99861 0.484717 1.4133 7.1006 -3 1 1 60 0.295 290 0 0 0.008422 -0.00401873 -0.00401873 0 0 0 134.59 -2.54824e-05 -2.54824e-05 0 0 0 8.97003 0.456134 1.4133 7.1006 -3 1 1 61 0.3 290 0 0 0.008228 -0.00396053 -0.00396053 0 0 0 107.43 -2.54824e-05 -2.54824e-05 0 0 0 8.94655 0.432658 1.4133 7.1006 -3 1 1 62 0.305 290 0 0 0.00804 -0.00390335 -0.00390335 0 0 0 81.6576 -2.54864e-05 -2.54864e-05 0 0 0 8.92878 0.413648 1.41358 7.10156 -3 1 1 63 0.31 290 0 0 0.007845 -0.00383527 -0.00383527 0 0 0 61.0614 -2.56862e-05 -2.56862e-05 0 0 0 8.91486 0.384796 1.41696 7.11311 -3 1 1 64 0.315 290 0 0 0.007658 -0.00376905 -0.00376905 0 0 0 41.9677 -2.59413e-05 -2.59413e-05 0 0 0 8.90523 0.360894 1.42054 7.1238 -3 1 1 65 0.32 290 0 0 0.007463 -0.00369888 -0.00369888 0 0 0 22.8311 -2.63911e-05 -2.63911e-05 0 0 0 8.89891 0.339327 1.42467 7.13492 -3 1 1 66 0.325 290 0 0 0.007272 -0.00362889 -0.00362889 0 0 0 4.97989 -2.69954e-05 -2.69954e-05 0 0 0 8.89626 0.320872 1.42917 7.14621 -3 1 1 67 0.33 290 0 0 0.007075 -0.0035552 -0.0035552 0 0 0 -12.3923 -2.69925e-05 -2.69925e-05 0 0 0 8.89699 0.303909 1.43435 7.15873 -3 1 1 68 0.335 290 0 0 0.006905 -0.00349021 -0.00349021 0 0 0 -26.3941 -2.76681e-05 -2.76681e-05 0 0 0 8.90028 0.290322 1.43933 7.17063 -3 1 1 69 0.34 290 0 0 0.006742 -0.00342659 -0.00342659 0 0 0 -38.9134 -2.83245e-05 -2.83245e-05 0 0 0 8.90561 0.277816 1.44457 7.18322 -3 1 1 70 0.345 290 0 0 0.006546 -0.00334844 -0.00334844 0 0 0 -52.8057 -2.83195e-05 -2.83195e-05 0 0 0 8.91459 0.263137 1.45148 7.19997 -3 1 1 71 0.35 290 0 0 0.006346 -0.00326671 -0.00326671 0 0 0 -65.6 -2.83147e-05 -2.83147e-05 0 0 0 8.92644 0.248113 1.45926 7.21906 -3 1 1 72 0.355 290 0 0 0.006126 -0.00317467 -0.00317467 0 0 0 -78.1692 -2.83099e-05 -2.83099e-05 0 0 0 8.94225 0.231474 1.46861 7.24217 -3 1 1 73 0.36 290 0 0 0.00591 -0.00308231 -0.00308231 0 0 0 -89.1142 -2.8308e-05 -2.8308e-05 0 0 0 8.96032 0.215169 1.47853 7.26662 -3 1 1 74 0.365 290 0 0 0.005677 -0.00298093 -0.00298093 0 0 0 -99.7009 -2.87471e-05 -2.87471e-05 0 0 0 8.98231 0.198224 1.4899 7.29419 -3 1 1 75 0.37 290 0 0 0.005433 -0.0028733 -0.0028733 0 0 0 -109.759 -2.89348e-05 -2.89348e-05 0 0 0 9.00787 0.18184 1.50238 7.32365 -3 1 1 76 0.375 290 0 0 0.005204 -0.00277129 -0.00277129 0 0 0 -118.501 -2.89836e-05 -2.89836e-05 0 0 0 9.034 0.16823 1.51451 7.35127 -3 1 1 77 0.38 290 0 0 0.004997 -0.00267849 -0.00267849 0 0 0 -125.992 -2.89966e-05 -2.89966e-05 0 0 0 9.05931 0.157677 1.52572 7.37591 -3 1 1 78 0.385 290 0 0 0.004791 -0.00258574 -0.00258574 0 0 0 -133.167 -2.90029e-05 -2.90029e-05 0 0 0 9.086 0.148939 1.53706 7.4 -3 1 1 79 0.39 290 0 0 0.00459 -0.00249493 -0.00249493 0 0 0 -139.95 -2.90062e-05 -2.90062e-05 0 0 0 9.11345 0.142126 1.54828 7.42304 -3 1 1 80 0.395 290 0 0 0.004387 -0.00240296 -0.00240296 0 0 0 -146.62 -2.90085e-05 -2.90085e-05 0 0 0 9.14254 0.136931 1.55975 7.44585 -3 1 1 81 0.4 290 0 0 0.004184 -0.00231075 -0.00231075 0 0 0 -153.128 -2.90103e-05 -2.90103e-05 0 0 0 9.17296 0.133373 1.57134 7.46824 -3 1 1 82 0.405 290 0 0 0.003983 -0.00221925 -0.00221925 0 0 0 -159.425 -2.90117e-05 -2.90117e-05 0 0 0 9.20437 0.131392 1.58294 7.49004 -3 1 1 83 0.41 290 0 0 0.003784 -0.00212846 -0.00212846 0 0 0 -165.525 -2.90128e-05 -2.90128e-05 0 0 0 9.23671 0.130864 1.59453 7.51131 -3 1 1 84 0.415 290 0 0 0.00358 -0.00203521 -0.00203521 0 0 0 -171.646 -2.9014e-05 -2.9014e-05 0 0 0 9.2711 0.131721 1.60653 7.53285 -3 1 1 85 0.42 290 0 0 0.003381 -0.00194406 -0.00194406 0 0 0 -177.49 -2.9015e-05 -2.9015e-05 0 0 0 9.30584 0.13384 1.61834 7.55366 -3 1 1 86 0.425 290 0 0 0.003179 -0.00185135 -0.00185135 0 0 0 -183.297 -2.9016e-05 -2.9016e-05 0 0 0 9.34228 0.137204 1.63043 7.57464 -3 1 1 87 0.43 290 0 0 0.002979 -0.00175939 -0.00175939 0 0 0 -188.925 -2.90169e-05 -2.90169e-05 0 0 0 9.3795 0.141661 1.64251 7.59532 -3 1 1 88 0.435 290 0 0 0.002775 -0.00166542 -0.00166542 0 0 0 -194.544 -2.90178e-05 -2.90178e-05 0 0 0 9.41861 0.147282 1.65495 7.61638 -3 1 1 89 0.44 290 0 0 0.002575 -0.00157312 -0.00157312 0 0 0 -199.933 -2.90186e-05 -2.90186e-05 0 0 0 9.45806 0.153772 1.66725 7.63704 -3 1 1 90 0.445 290 0 0 0.002369 -0.00147788 -0.00147788 0 0 0 -205.364 -2.90195e-05 -2.90195e-05 0 0 0 9.4998 0.161397 1.68002 7.65839 -3 1 1 91 0.45 290 0 0 0.002174 -0.00138756 -0.00138756 0 0 0 -210.392 -2.90202e-05 -2.90202e-05 0 0 0 9.54034 0.169422 1.69222 7.6787 -3 1 1 92 0.455 290 0 0 0.001967 -0.00129152 -0.00129152 0 0 0 -215.615 -2.9021e-05 -2.9021e-05 0 0 0 9.58443 0.17874 1.70528 7.70041 -3 1 1 93 0.46 290 0 0 0.001768 -0.00119903 -0.00119903 0 0 0 -220.522 -2.90217e-05 -2.90217e-05 0 0 0 9.62783 0.188403 1.71794 7.72149 -3 1 1 94 0.465 290 0 0 0.001568 -0.00110592 -0.00110592 0 0 0 -225.345 -2.90223e-05 -2.90223e-05 0 0 0 9.67241 0.198754 1.73076 7.7429 -3 1 1 95 0.47 290 0 0 0.001366 -0.00101173 -0.00101173 0 0 0 -230.107 -2.9023e-05 -2.9023e-05 0 0 0 9.71842 0.209803 1.74383 7.76479 -3 1 1 96 0.475 290 0 0 0.001164 -0.000917374 -0.000917374 0 0 0 -234.762 -2.90236e-05 -2.90236e-05 0 0 0 9.76537 0.221391 1.75699 7.78698 -3 1 1 97 0.48 290 0 0 0.0009631 -0.000823385 -0.000823385 0 0 0 -239.285 -2.90242e-05 -2.90242e-05 0 0 0 9.81298 0.233398 1.77019 7.80939 -3 1 1 98 0.485 290 0 0 0.0007598 -0.000728124 -0.000728124 0 0 0 -243.756 -2.90248e-05 -2.90248e-05 0 0 0 9.86209 0.245988 1.78366 7.83244 -3 1 1 99 0.49 290 0 0 0.0005588 -0.000633792 -0.000633792 0 0 0 -248.075 -2.90253e-05 -2.90253e-05 0 0 0 9.91152 0.258821 1.79707 7.85562 -3 1 1 100 0.495 290 0 0 0.0003567 -0.0005388 -0.0005388 0 0 0 -252.315 -2.90258e-05 -2.90258e-05 0 0 0 9.96208 0.272066 1.81067 7.87935 -3 1 1 101 0.5 290 0 0 0.000161 -0.00044668 -0.00044668 0 0 0 -256.326 -2.90263e-05 -2.90263e-05 0 0 0 10.0119 0.285174 1.82393 7.90274 -3 1 1 102 0.505 290 0 0 -4.58e-05 -0.000349193 -0.000349193 0 0 0 -260.465 -2.90268e-05 -2.90268e-05 0 0 0 10.0653 0.299294 1.83805 7.92794 -3 1 1 103 0.51 290 0 0 -0.000251 -0.000252318 -0.000252318 0 0 0 -264.473 -2.90272e-05 -2.90272e-05 0 0 0 10.1191 0.313532 1.85217 7.95344 -3 1 1 104 0.515 290 0 0 -0.000473 -0.000147358 -0.000147358 0 0 0 -268.701 -2.90278e-05 -2.90278e-05 0 0 0 10.1783 0.329155 1.86757 7.98161 -3 1 1 105 0.52 290 0 0 -0.0006533 -6.19897e-05 -6.19897e-05 0 0 0 -272.048 -2.90281e-05 -2.90281e-05 0 0 0 10.2271 0.341957 1.88016 8.00496 -3 1 1 106 0.525 290 0 0 -0.0008338 2.35771e-05 2.35771e-05 0 0 0 -275.326 -2.90283e-05 -2.90283e-05 0 0 0 10.2765 0.354866 1.89285 8.02876 -3 1 1 107 0.53 290 0 0 -0.001036 0.000119548 0.000119548 0 0 0 -278.916 -2.90286e-05 -2.90286e-05 0 0 0 10.3325 0.369421 1.90716 8.05593 -3 1 1 108 0.535 290 0 0 -0.001266 0.000228862 0.000228862 0 0 0 -282.897 -2.90292e-05 -2.90292e-05 0 0 0 10.3971 0.386065 1.92356 8.08749 -3 1 1 109 0.54 290 0 0 -0.001442 0.000312625 0.000312625 0 0 0 -285.862 -2.90293e-05 -2.90293e-05 0 0 0 10.4472 0.398806 1.9362 8.11216 -3 1 1 110 0.545 290 0 0 -0.001663 0.000417927 0.000417927 0 0 0 -289.501 -2.90298e-05 -2.90298e-05 0 0 0 10.5107 0.414838 1.95218 8.14373 -3 1 1 111 0.55 290 0 0 -0.001853 0.000508575 0.000508575 0 0 0 -292.548 -2.903e-05 -2.903e-05 0 0 0 10.566 0.428592 1.96601 8.17144 -3 1 1 112 0.555 290 0 0 -0.002054 0.00060458 0.00060458 0 0 0 -295.694 -2.90302e-05 -2.90302e-05 0 0 0 10.6252 0.443112 1.98074 8.20131 -3 1 1 113 0.56 290 0 0 -0.002259 0.00070261 0.00070261 0 0 0 -298.823 -2.90305e-05 -2.90305e-05 0 0 0 10.6861 0.457866 1.99586 8.23238 -3 1 1 114 0.565 290 0 0 -0.002461 0.000799317 0.000799317 0 0 0 -301.828 -2.90307e-05 -2.90307e-05 0 0 0 10.7468 0.472327 2.01085 8.26358 -3 1 1 115 0.57 290 0 0 -0.002659 0.000894215 0.000894215 0 0 0 -304.7 -2.90309e-05 -2.90309e-05 0 0 0 10.8068 0.48641 2.02565 8.29475 -3 1 1 116 0.575 290 0 0 -0.002862 0.000991613 0.000991613 0 0 0 -307.571 -2.90311e-05 -2.90311e-05 0 0 0 10.869 0.500746 2.04091 8.3273 -3 1 1 117 0.58 290 0 0 -0.003061 0.00108719 0.00108719 0 0 0 -310.314 -2.90312e-05 -2.90312e-05 0 0 0 10.9304 0.514678 2.05597 8.35979 -3 1 1 118 0.585 290 0 0 -0.003257 0.00118143 0.00118143 0 0 0 -312.949 -2.90314e-05 -2.90314e-05 0 0 0 10.9915 0.528272 2.07089 8.39235 -3 1 1 119 0.59 290 0 0 -0.003458 0.00127817 0.00127817 0 0 0 -315.584 -2.90315e-05 -2.90315e-05 0 0 0 11.0547 0.542072 2.08628 8.42633 -3 1 1 120 0.595 290 0 0 -0.003656 0.00137355 0.00137355 0 0 0 -318.114 -2.90317e-05 -2.90317e-05 0 0 0 11.1174 0.555514 2.10154 8.46036 -3 1 1 121 0.6 290 0 0 -0.003869 0.00147626 0.00147626 0 0 0 -320.767 -2.90318e-05 -2.90318e-05 0 0 0 11.1855 0.569804 2.11805 8.4976 -3 1 1 122 0.605 290 0 0 -0.004064 0.00157038 0.00157038 0 0 0 -323.131 -2.90319e-05 -2.90319e-05 0 0 0 11.2482 0.582708 2.13326 8.53227 -3 1 1 123 0.61 290 0 0 -0.004268 0.00166894 0.00166894 0 0 0 -325.543 -2.9032e-05 -2.9032e-05 0 0 0 11.3144 0.59603 2.14926 8.56912 -3 1 1 124 0.615 290 0 0 -0.004478 0.00177048 0.00177048 0 0 0 -327.961 -2.90322e-05 -2.90322e-05 0 0 0 11.383 0.609545 2.16582 8.60765 -3 1 1 125 0.62 290 0 0 -0.004672 0.00186438 0.00186438 0 0 0 -330.137 -2.84262e-05 -2.84262e-05 0 0 0 11.4469 0.621835 2.18122 8.6438 -3 1 1 126 0.625 290 0 0 -0.004881 0.00196561 0.00196561 0 0 0 -332.422 -2.84263e-05 -2.84263e-05 0 0 0 11.5161 0.634876 2.1979 8.68332 -3 1 1 127 0.63 290 0 0 -0.00507 0.00205724 0.00205724 0 0 0 -334.434 -2.7921e-05 -2.7921e-05 0 0 0 11.5791 0.646472 2.21306 8.71958 -3 1 1 128 0.635 290 0 0 -0.005275 0.00215669 0.00215669 0 0 0 -336.564 -2.73075e-05 -2.73075e-05 0 0 0 11.6479 0.65885 2.2296 8.75944 -3 1 1 129 0.64 290 0 0 -0.005476 0.00225429 0.00225429 0 0 0 -338.598 -2.67595e-05 -2.67595e-05 0 0 0 11.7157 0.670773 2.2459 8.79907 -3 1 1 130 0.645 290 0 0 -0.005679 0.00235293 0.00235293 0 0 0 -340.6 -2.62242e-05 -2.62242e-05 0 0 0 11.7847 0.682601 2.26245 8.83963 -3 1 1 131 0.65 290 0 0 -0.005881 0.00245116 0.00245116 0 0 0 -342.54 -2.57246e-05 -2.57246e-05 0 0 0 11.8537 0.694154 2.27901 8.88051 -3 1 1 132 0.655 290 0 0 -0.006082 0.00254897 0.00254897 0 0 0 -344.422 -2.52583e-05 -2.52583e-05 0 0 0 11.9227 0.705433 2.29558 8.92171 -3 1 1 133 0.66 290 0 0 -0.006282 0.00264636 0.00264636 0 0 0 -346.247 -2.48234e-05 -2.48234e-05 0 0 0 11.9918 0.716441 2.31214 8.9632 -3 1 1 134 0.665 290 0 0 -0.006482 0.00274382 0.00274382 0 0 0 -348.025 -2.44115e-05 -2.44115e-05 0 0 0 12.0612 0.727235 2.32879 9.00519 -3 1 1 135 0.67 290 0 0 -0.006687 0.00284378 0.00284378 0 0 0 -349.802 -2.39918e-05 -2.39918e-05 0 0 0 12.1327 0.738078 2.34595 9.04872 -3 1 1 136 0.675 290 0 0 -0.006887 0.00294137 0.00294137 0 0 0 -351.491 -2.36235e-05 -2.36235e-05 0 0 0 12.2029 0.748438 2.36276 9.09167 -3 1 1 137 0.68 290 0 0 -0.00709 0.00304048 0.00304048 0 0 0 -353.162 -2.32593e-05 -2.32593e-05 0 0 0 12.2744 0.758737 2.37992 9.13573 -3 1 1 138 0.685 290 0 0 -0.00729 0.00313819 0.00313819 0 0 0 -354.766 -2.29303e-05 -2.29303e-05 0 0 0 12.3452 0.768668 2.3969 9.17961 -3 1 1 139 0.69 290 0 0 -0.007495 0.0032384 0.0032384 0 0 0 -356.369 -2.25955e-05 -2.25955e-05 0 0 0 12.4181 0.778631 2.4144 9.22505 -3 1 1 140 0.695 290 0 0 -0.007697 0.0033372 0.0033372 0 0 0 -357.909 -2.22933e-05 -2.22933e-05 0 0 0 12.4902 0.788232 2.43172 9.27027 -3 1 1 141 0.7 290 0 0 -0.007895 0.0034341 0.0034341 0 0 0 -359.38 -2.20246e-05 -2.20246e-05 0 0 0 12.5612 0.797436 2.44878 9.31502 -3 1 1 142 0.705 290 0 0 -0.008104 0.00353644 0.00353644 0 0 0 -360.894 -2.17262e-05 -2.17262e-05 0 0 0 12.6365 0.806937 2.46687 9.36269 -3 1 1 143 0.71 290 0 0 -0.008306 0.0036354 0.0036354 0 0 0 -362.32 -2.14726e-05 -2.14725e-05 0 0 0 12.7095 0.815907 2.48443 9.4092 -3 1 1 144 0.715 290 0 0 -0.008502 0.00373147 0.00373147 0 0 0 -363.67 -2.12539e-05 -2.12539e-05 0 0 0 12.7807 0.824413 2.50156 9.45472 -3 1 1 145 0.72 290 0 0 -0.008711 0.00383397 0.00383397 0 0 0 -365.073 -2.10038e-05 -2.10038e-05 0 0 0 12.8568 0.833279 2.5199 9.50367 -3 1 1 146 0.725 290 0 0 -0.008908 0.00393062 0.00393062 0 0 0 -366.363 -2.08067e-05 -2.08067e-05 0 0 0 12.9289 0.841436 2.53726 9.55019 -3 1 1 147 0.73 290 0 0 -0.009117 0.00403322 0.00403322 0 0 0 -367.699 -2.05847e-05 -2.05847e-05 0 0 0 13.0056 0.849891 2.55577 9.59994 -3 1 1 148 0.735 290 0 0 -0.00931 0.004128 0.004128 0 0 0 -368.901 -2.04203e-05 -2.04203e-05 0 0 0 13.0767 0.85751 2.57293 9.64624 -3 1 1 149 0.74 290 0 0 -0.009518 0.00423019 0.00423019 0 0 0 -370.167 -2.02261e-05 -2.02261e-05 0 0 0 13.1535 0.865533 2.59151 9.6965 -3 1 1 150 0.745 290 0 0 -0.009719 0.00432899 0.00432899 0 0 0 -371.359 -2.00614e-05 -2.00614e-05 0 0 0 13.2281 0.873096 2.60954 9.74543 -3 1 1 151 0.75 290 0 0 -0.009925 0.00443028 0.00443028 0 0 0 -372.552 -1.98945e-05 -1.98945e-05 0 0 0 13.3047 0.88066 2.62809 9.79594 -3 1 1 152 0.755 290 0 0 -0.009932 0.00443373 0.00443373 0 0 0 -372.592 -1.98945e-05 -1.98945e-05 0 0 0 13.3073 0.880912 2.62873 9.79766 -3 1 1 153 0.76 290 0 0 -0.009694 0.00436233 0.00436233 0 0 0 -339.272 -1.98945e-05 -1.98945e-05 0 0 0 13.2226 0.7962 2.62873 9.79766 -3 1 1 154 0.765 290 0 0 -0.009514 0.00430833 0.00430833 0 0 0 -314.072 -1.98945e-05 -1.98945e-05 0 0 0 13.1638 0.737399 2.62873 9.79766 -3 1 1 155 0.77 290 0 0 -0.00933 0.00425313 0.00425313 0 0 0 -288.312 -1.98945e-05 -1.98945e-05 0 0 0 13.1084 0.68198 2.62873 9.79766 -3 1 1 156 0.775 290 0 0 -0.009136 0.00419493 0.00419493 0 0 0 -261.152 -1.98945e-05 -1.98945e-05 0 0 0 13.0551 0.628682 2.62873 9.79766 -3 1 1 157 0.78 290 0 0 -0.008945 0.00413763 0.00413763 0 0 0 -234.412 -1.98945e-05 -1.98945e-05 0 0 0 13.0077 0.581356 2.62873 9.79766 -3 1 1 158 0.785 290 0 0 -0.008755 0.00408063 0.00408063 0 0 0 -207.812 -1.98945e-05 -1.98945e-05 0 0 0 12.9657 0.539344 2.62873 9.79766 -3 1 1 159 0.79 290 0 0 -0.008566 0.00402393 0.00402393 0 0 0 -181.352 -1.98945e-05 -1.98945e-05 0 0 0 12.929 0.502568 2.62873 9.79766 -3 1 1 160 0.795 290 0 0 -0.008376 0.00396693 0.00396693 0 0 0 -154.752 -1.98945e-05 -1.98945e-05 0 0 0 12.897 0.470639 2.62873 9.79766 -3 1 1 161 0.8 290 0 0 -0.008206 0.00391593 0.00391593 0 0 0 -130.952 -1.98945e-05 -1.98945e-05 0 0 0 12.8727 0.446354 2.62873 9.79766 -3 1 1 162 0.805 290 0 0 -0.008016 0.00385893 0.00385893 0 0 0 -104.352 -1.98945e-05 -1.98945e-05 0 0 0 12.8504 0.424 2.62873 9.79766 -3 1 1 163 0.81 290 0 0 -0.007818 0.00379953 0.00379953 0 0 0 -76.6317 -1.98945e-05 -1.98945e-05 0 0 0 12.8325 0.406083 2.62873 9.79766 -3 1 1 164 0.815 290 0 0 -0.007621 0.00373715 0.00373715 0 0 0 -51.344 -1.95914e-05 -1.95914e-05 0 0 0 12.8199 0.387965 2.63027 9.80163 -3 1 1 165 0.82 290 0 0 -0.007428 0.00366952 0.00366952 0 0 0 -31.1333 -1.93764e-05 -1.93764e-05 0 0 0 12.8119 0.364231 2.63485 9.81282 -3 1 1 166 0.825 290 0 0 -0.007235 0.00360089 0.00360089 0 0 0 -11.6291 -1.90508e-05 -1.90508e-05 0 0 0 12.8078 0.344166 2.63991 9.8237 -3 1 1 167 0.83 290 0 0 -0.007034 0.00352818 0.00352818 0 0 0 7.82478 -1.84753e-05 -1.84753e-05 0 0 0 12.8074 0.326512 2.64577 9.83512 -3 1 1 168 0.835 290 0 0 -0.006843 0.00345772 0.00345772 0 0 0 25.3566 -1.77939e-05 -1.77939e-05 0 0 0 12.8106 0.312068 2.65198 9.84652 -3 1 1 169 0.84 290 0 0 -0.006644 0.00338275 0.00338275 0 0 0 42.5254 -1.77974e-05 -1.77974e-05 0 0 0 12.8173 0.298709 2.6592 9.85941 -3 1 1 170 0.845 290 0 0 -0.006447 0.00330676 0.00330676 0 0 0 58.2794 -1.7802e-05 -1.7802e-05 0 0 0 12.8272 0.286405 2.6672 9.87364 -3 1 1 171 0.85 290 0 0 -0.006255 0.00323085 0.00323085 0 0 0 72.3477 -1.78066e-05 -1.78066e-05 0 0 0 12.8398 0.274656 2.67588 9.88925 -3 1 1 172 0.855 290 0 0 -0.006061 0.00315228 0.00315228 0 0 0 85.2469 -1.78111e-05 -1.78111e-05 0 0 0 12.8551 0.262612 2.68555 9.90691 -3 1 1 173 0.86 290 0 0 -0.005869 0.00307269 0.00307269 0 0 0 96.7357 -1.78142e-05 -1.78142e-05 0 0 0 12.8725 0.250328 2.69601 9.9262 -3 1 1 174 0.865 290 0 0 -0.005716 0.00300801 0.00300801 0 0 0 105.009 -1.7543e-05 -1.7543e-05 0 0 0 12.888 0.24025 2.70496 9.94277 -3 1 1 175 0.87 290 0 0 -0.005559 0.00294069 0.00294069 0 0 0 112.835 -1.73517e-05 -1.73517e-05 0 0 0 12.9051 0.229924 2.71461 9.96054 -3 1 1 176 0.875 290 0 0 -0.00536 0.00285425 0.00285425 0 0 0 121.978 -1.70818e-05 -1.70818e-05 0 0 0 12.9284 0.217225 2.7274 9.98382 -3 1 1 177 0.88 290 0 0 -0.005148 0.00276101 0.00276101 0 0 0 130.907 -1.69336e-05 -1.69336e-05 0 0 0 12.9552 0.20449 2.7416 10.0092 -3 1 1 178 0.885 290 0 0 -0.004948 0.00267219 0.00267219 0 0 0 138.736 -1.68876e-05 -1.68876e-05 0 0 0 12.9822 0.193589 2.75545 10.0332 -3 1 1 179 0.89 290 0 0 -0.004718 0.00256935 0.00256935 0 0 0 147.245 -1.68548e-05 -1.68548e-05 0 0 0 13.0151 0.182782 2.77174 10.0606 -3 1 1 180 0.895 290 0 0 -0.004497 0.00246997 0.00246997 0 0 0 155.031 -1.68432e-05 -1.68432e-05 0 0 0 13.0485 0.17431 2.78771 10.0865 -3 1 1 181 0.9 290 0 0 -0.00426 0.00236296 0.00236296 0 0 0 163.071 -1.68354e-05 -1.68354e-05 0 0 0 13.0862 0.167406 2.8051 10.1137 -3 1 1 182 0.905 290 0 0 -0.004032 0.00225965 0.00225965 0 0 0 170.555 -1.68315e-05 -1.68315e-05 0 0 0 13.1242 0.162884 2.82205 10.1393 -3 1 1 183 0.91 290 0 0 -0.003822 0.00216423 0.00216423 0 0 0 177.26 -1.68294e-05 -1.68294e-05 0 0 0 13.1608 0.160503 2.83783 10.1624 -3 1 1 184 0.915 290 0 0 -0.003625 0.0020745 0.0020745 0 0 0 183.403 -1.68281e-05 -1.68281e-05 0 0 0 13.1963 0.159755 2.85278 10.1837 -3 1 1 185 0.92 290 0 0 -0.00342 0.00198094 0.00198094 0 0 0 189.657 -1.68268e-05 -1.68268e-05 0 0 0 13.2345 0.160425 2.86846 10.2056 -3 1 1 186 0.925 290 0 0 -0.003221 0.00188992 0.00188992 0 0 0 195.596 -1.68257e-05 -1.68257e-05 0 0 0 13.2728 0.162409 2.88382 10.2266 -3 1 1 187 0.93 290 0 0 -0.003025 0.0018001 0.0018001 0 0 0 201.323 -1.68248e-05 -1.68248e-05 0 0 0 13.3117 0.16557 2.89907 10.2471 -3 1 1 188 0.935 290 0 0 -0.002824 0.00170782 0.00170782 0 0 0 207.074 -1.68239e-05 -1.68239e-05 0 0 0 13.3528 0.169977 2.91483 10.268 -3 1 1 189 0.94 290 0 0 -0.002622 0.0016149 0.0016149 0 0 0 212.731 -1.68229e-05 -1.68229e-05 0 0 0 13.3952 0.175517 2.93079 10.2889 -3 1 1 190 0.945 290 0 0 -0.002429 0.00152596 0.00152596 0 0 0 218.021 -1.68222e-05 -1.68222e-05 0 0 0 13.4368 0.181776 2.94617 10.3088 -3 1 1 191 0.95 290 0 0 -0.002227 0.0014327 0.0014327 0 0 0 223.442 -1.68213e-05 -1.68213e-05 0 0 0 13.4813 0.189271 2.96238 10.3297 -3 1 1 192 0.955 290 0 0 -0.002033 0.00134298 0.00134298 0 0 0 228.536 -1.68206e-05 -1.68206e-05 0 0 0 13.5252 0.197307 2.97806 10.3498 -3 1 1 193 0.96 290 0 0 -0.001832 0.00124986 0.00124986 0 0 0 233.701 -1.68198e-05 -1.68198e-05 0 0 0 13.5716 0.206436 2.99443 10.3708 -3 1 1 194 0.965 290 0 0 -0.001634 0.00115797 0.00115797 0 0 0 238.678 -1.68191e-05 -1.68191e-05 0 0 0 13.6184 0.216161 3.01068 10.3916 -3 1 1 195 0.97 290 0 0 -0.001432 0.00106406 0.00106406 0 0 0 243.643 -1.68184e-05 -1.68184e-05 0 0 0 13.6671 0.226772 3.02738 10.413 -3 1 1 196 0.975 290 0 0 -0.001236 0.000972791 0.000972791 0 0 0 248.354 -1.68178e-05 -1.68178e-05 0 0 0 13.7153 0.237673 3.0437 10.434 -3 1 1 197 0.98 290 0 0 -0.001033 0.000878106 0.000878106 0 0 0 253.124 -1.68171e-05 -1.68171e-05 0 0 0 13.7662 0.249538 3.06072 10.456 -3 1 1 198 0.985 290 0 0 -0.0008346 0.000785415 0.000785415 0 0 0 257.68 -1.68166e-05 -1.68166e-05 0 0 0 13.8169 0.261641 3.07747 10.4778 -3 1 1 199 0.99 290 0 0 -0.0006298 0.00068958 0.00068958 0 0 0 262.276 -1.68159e-05 -1.68159e-05 0 0 0 13.8702 0.274611 3.09489 10.5007 -3 1 1 200 0.995 290 0 0 -0.000429 0.000595467 0.000595467 0 0 0 266.677 -1.68154e-05 -1.68154e-05 0 0 0 13.9233 0.287743 3.11208 10.5234 -3 1 1 201 1 290 0 0 -0.000228 0.000501114 0.000501114 0 0 0 270.98 -1.68148e-05 -1.68148e-05 0 0 0 13.9773 0.301254 3.12941 10.5466 +3 1 1 1 3 290 0 0 -7.09e-05 0.000376413 0.000376413 0 0 0 238.674 -1.49801e-05 -1.49801e-05 0 0 0 6.27423 0.203447 3.4226 2.64818 +3 1 1 2 3.005 290 0 0 0.000126 0.000283373 0.000283373 0 0 0 242.461 -1.46408e-05 -1.46408e-05 0 0 0 6.3216 0.209955 3.44372 2.66793 +3 1 1 3 3.01 290 0 0 0.000333 0.000185426 0.000185426 0 0 0 246.348 -1.46404e-05 -1.46404e-05 0 0 0 6.37219 0.216741 3.46664 2.6888 +3 1 1 4 3.015 290 0 0 0.000526 9.39788e-05 9.39788e-05 0 0 0 249.885 -1.46401e-05 -1.46401e-05 0 0 0 6.42007 0.223009 3.48864 2.70842 +3 1 1 5 3.02 290 0 0 0.0007279 -1.80895e-06 -1.80895e-06 0 0 0 253.499 -1.46398e-05 -1.46398e-05 0 0 0 6.47089 0.229506 3.51232 2.72906 +3 1 1 6 3.025 290 0 0 0.0009266 -9.62013e-05 -9.62013e-05 0 0 0 256.969 -1.46395e-05 -1.46395e-05 0 0 0 6.52161 0.235833 3.53626 2.74951 +3 1 1 7 3.03 290 0 0 0.001132 -0.0001939 -0.0001939 0 0 0 260.47 -1.46392e-05 -1.46392e-05 0 0 0 6.57475 0.242302 3.56167 2.77078 +3 1 1 8 3.035 290 0 0 0.00133 -0.000288198 -0.000288198 0 0 0 263.761 -1.46389e-05 -1.46389e-05 0 0 0 6.62665 0.248464 3.58676 2.79142 +3 1 1 9 3.04 290 0 0 0.001533 -0.000384995 -0.000384995 0 0 0 267.054 -1.46386e-05 -1.46386e-05 0 0 0 6.68052 0.254706 3.61311 2.81271 +3 1 1 10 3.045 290 0 0 0.001727 -0.000477609 -0.000477609 0 0 0 270.123 -1.46384e-05 -1.46384e-05 0 0 0 6.73263 0.260595 3.63885 2.83318 +3 1 1 11 3.05 290 0 0 0.001933 -0.000576066 -0.000576066 0 0 0 273.304 -1.46381e-05 -1.46381e-05 0 0 0 6.7886 0.266768 3.66679 2.85504 +3 1 1 12 3.055 290 0 0 0.002134 -0.000672243 -0.000672243 0 0 0 276.33 -1.46379e-05 -1.46379e-05 0 0 0 6.84384 0.272707 3.69463 2.87651 +3 1 1 13 3.06 290 0 0 0.002335 -0.000768529 -0.000768529 0 0 0 279.28 -1.46377e-05 -1.46377e-05 0 0 0 6.89968 0.278562 3.72302 2.8981 +3 1 1 14 3.065 290 0 0 0.002534 -0.000863959 -0.000863959 0 0 0 282.129 -1.46376e-05 -1.46376e-05 0 0 0 6.95554 0.284274 3.75167 2.9196 +3 1 1 15 3.07 290 0 0 0.00274 -0.000962851 -0.000962851 0 0 0 285.004 -1.46374e-05 -1.46374e-05 0 0 0 7.01395 0.290098 3.78188 2.94197 +3 1 1 16 3.075 290 0 0 0.002938 -0.001058 -0.001058 0 0 0 287.698 -1.46372e-05 -1.46372e-05 0 0 0 7.07065 0.295608 3.81143 2.96361 +3 1 1 17 3.08 290 0 0 0.003138 -0.00115421 -0.00115421 0 0 0 290.352 -1.46371e-05 -1.46371e-05 0 0 0 7.12846 0.301086 3.84178 2.98559 +3 1 1 18 3.085 290 0 0 0.003332 -0.00124763 -0.00124763 0 0 0 292.862 -1.46369e-05 -1.46369e-05 0 0 0 7.18503 0.306315 3.87169 3.00703 +3 1 1 19 3.09 290 0 0 0.003545 -0.00135029 -0.00135029 0 0 0 295.55 -1.46368e-05 -1.46368e-05 0 0 0 7.24769 0.311963 3.90506 3.03067 +3 1 1 20 3.095 290 0 0 0.003737 -0.00144292 -0.00144292 0 0 0 297.909 -1.53256e-05 -1.53256e-05 0 0 0 7.30467 0.316964 3.93559 3.05212 +3 1 1 21 3.1 290 0 0 0.003942 -0.0015419 -0.0015419 0 0 0 300.367 -1.53255e-05 -1.53255e-05 0 0 0 7.36599 0.322216 3.96865 3.07512 +3 1 1 22 3.105 290 0 0 0.004136 -0.00163567 -0.00163567 0 0 0 302.634 -1.59694e-05 -1.59694e-05 0 0 0 7.42448 0.327098 4.00037 3.09701 +3 1 1 23 3.11 290 0 0 0.004343 -0.0017358 -0.0017358 0 0 0 304.993 -1.59693e-05 -1.59693e-05 0 0 0 7.48737 0.332218 4.03468 3.12048 +3 1 1 24 3.115 290 0 0 0.004549 -0.00183553 -0.00183553 0 0 0 307.28 -1.66653e-05 -1.66653e-05 0 0 0 7.55043 0.337218 4.06927 3.14395 +3 1 1 25 3.12 290 0 0 0.004744 -0.00193001 -0.00193001 0 0 0 309.39 -1.72256e-05 -1.72256e-05 0 0 0 7.61056 0.341864 4.10241 3.16629 +3 1 1 26 3.125 290 0 0 0.004945 -0.00202749 -0.00202749 0 0 0 311.51 -1.78087e-05 -1.78087e-05 0 0 0 7.67296 0.346567 4.13698 3.18942 +3 1 1 27 3.13 290 0 0 0.00515 -0.00212697 -0.00212697 0 0 0 313.618 -1.83956e-05 -1.83956e-05 0 0 0 7.73704 0.351273 4.17264 3.21312 +3 1 1 28 3.135 290 0 0 0.00535 -0.00222411 -0.00222411 0 0 0 315.622 -1.8912e-05 -1.8912e-05 0 0 0 7.79996 0.355777 4.20782 3.23636 +3 1 1 29 3.14 290 0 0 0.005549 -0.00232083 -0.00232083 0 0 0 317.566 -1.93944e-05 -1.93944e-05 0 0 0 7.86296 0.360173 4.2432 3.25959 +3 1 1 30 3.145 290 0 0 0.005751 -0.00241909 -0.00241909 0 0 0 319.491 -1.98727e-05 -1.98727e-05 0 0 0 7.92731 0.364551 4.27948 3.28328 +3 1 1 31 3.15 290 0 0 0.005952 -0.00251692 -0.00251692 0 0 0 321.357 -2.03189e-05 -2.03189e-05 0 0 0 7.99171 0.368822 4.31593 3.30696 +3 1 1 32 3.155 290 0 0 0.00615 -0.00261336 -0.00261336 0 0 0 323.149 -2.07227e-05 -2.07227e-05 0 0 0 8.05552 0.372948 4.35218 3.33039 +3 1 1 33 3.16 290 0 0 0.006352 -0.00271181 -0.00271181 0 0 0 324.932 -2.11288e-05 -2.11288e-05 0 0 0 8.12097 0.377075 4.38951 3.35439 +3 1 1 34 3.165 290 0 0 0.006553 -0.00280984 -0.00280984 0 0 0 326.662 -2.15072e-05 -2.15072e-05 0 0 0 8.18646 0.381101 4.42697 3.37838 +3 1 1 35 3.17 290 0 0 0.006755 -0.00290842 -0.00290842 0 0 0 328.358 -2.18704e-05 -2.18704e-05 0 0 0 8.25262 0.385067 4.46495 3.4026 +3 1 1 36 3.175 290 0 0 0.006959 -0.00300803 -0.00300803 0 0 0 330.027 -2.22239e-05 -2.22239e-05 0 0 0 8.31977 0.388991 4.50362 3.42716 +3 1 1 37 3.18 290 0 0 0.007154 -0.00310331 -0.00310331 0 0 0 331.582 -2.25155e-05 -2.25155e-05 0 0 0 8.38428 0.392667 4.54087 3.45074 +3 1 1 38 3.185 290 0 0 0.007357 -0.00320255 -0.00320255 0 0 0 333.162 -2.28268e-05 -2.28268e-05 0 0 0 8.45175 0.396418 4.57995 3.47538 +3 1 1 39 3.19 290 0 0 0.007556 -0.0032999 -0.0032999 0 0 0 334.673 -2.31035e-05 -2.31035e-05 0 0 0 8.5182 0.400022 4.61854 3.49963 +3 1 1 40 3.195 290 0 0 0.00776 -0.00339974 -0.00339974 0 0 0 336.184 -2.33851e-05 -2.33851e-05 0 0 0 8.58663 0.403641 4.65839 3.5246 +3 1 1 41 3.2 290 0 0 0.007962 -0.00349865 -0.00349865 0 0 0 337.643 -2.36429e-05 -2.36429e-05 0 0 0 8.65468 0.407152 4.69812 3.54941 +3 1 1 42 3.205 290 0 0 0.008162 -0.00359664 -0.00359664 0 0 0 339.052 -2.38789e-05 -2.38789e-05 0 0 0 8.72235 0.410557 4.73771 3.57408 +3 1 1 43 3.21 290 0 0 0.008359 -0.00369321 -0.00369321 0 0 0 340.406 -2.40917e-05 -2.40917e-05 0 0 0 8.78928 0.413844 4.77695 3.59848 +3 1 1 44 3.215 290 0 0 0.008567 -0.00379521 -0.00379521 0 0 0 341.802 -2.43281e-05 -2.43281e-05 0 0 0 8.86023 0.417245 4.81865 3.62433 +3 1 1 45 3.22 290 0 0 0.008759 -0.00388942 -0.00388942 0 0 0 343.059 -2.45031e-05 -2.45031e-05 0 0 0 8.92597 0.42032 4.85737 3.64829 +3 1 1 46 3.225 290 0 0 0.008965 -0.00399053 -0.00399053 0 0 0 344.376 -2.47072e-05 -2.47072e-05 0 0 0 8.99678 0.423554 4.89914 3.67408 +3 1 1 47 3.23 290 0 0 0.009171 -0.0040917 -0.0040917 0 0 0 345.662 -2.48992e-05 -2.48992e-05 0 0 0 9.06785 0.426722 4.94116 3.69998 +3 1 1 48 3.235 290 0 0 0.009368 -0.00418848 -0.00418848 0 0 0 346.861 -2.50572e-05 -2.50572e-05 0 0 0 9.13607 0.429688 4.98155 3.72483 +3 1 1 49 3.24 290 0 0 0.009567 -0.00428629 -0.00428629 0 0 0 348.045 -2.52107e-05 -2.52107e-05 0 0 0 9.20521 0.432626 5.02256 3.75003 +3 1 1 50 3.245 290 0 0 0.00977 -0.00438611 -0.00438611 0 0 0 349.225 -2.53642e-05 -2.53642e-05 0 0 0 9.27598 0.435563 5.0646 3.77582 +3 1 1 51 3.25 290 0 0 0.009963 -0.00448104 -0.00448104 0 0 0 350.32 -2.54883e-05 -2.54883e-05 0 0 0 9.34349 0.4383 5.10476 3.80043 +3 1 1 52 3.255 290 0 0 0.009958 -0.00447954 -0.00447954 0 0 0 349.62 -2.54883e-05 -2.54883e-05 0 0 0 9.34174 0.43655 5.10476 3.80043 +3 1 1 53 3.26 290 0 0 0.009779 -0.00442584 -0.00442584 0 0 0 324.56 -2.54883e-05 -2.54883e-05 0 0 0 9.2814 0.376211 5.10476 3.80043 +3 1 1 54 3.265 290 0 0 0.009587 -0.00436824 -0.00436824 0 0 0 297.68 -2.54883e-05 -2.54883e-05 0 0 0 9.22167 0.316476 5.10476 3.80043 +3 1 1 55 3.27 290 0 0 0.009386 -0.00430794 -0.00430794 0 0 0 269.54 -2.54883e-05 -2.54883e-05 0 0 0 9.16466 0.259471 5.10476 3.80043 +3 1 1 56 3.275 290 0 0 0.009198 -0.00425154 -0.00425154 0 0 0 243.22 -2.54883e-05 -2.54883e-05 0 0 0 9.11646 0.211271 5.10476 3.80043 +3 1 1 57 3.28 290 0 0 0.009002 -0.00419274 -0.00419274 0 0 0 215.78 -2.54883e-05 -2.54883e-05 0 0 0 9.07148 0.166289 5.10476 3.80043 +3 1 1 58 3.285 290 0 0 0.008811 -0.00413544 -0.00413544 0 0 0 189.04 -2.54883e-05 -2.54883e-05 0 0 0 9.03282 0.127629 5.10476 3.80043 +3 1 1 59 3.29 290 0 0 0.008615 -0.00407664 -0.00407664 0 0 0 161.6 -2.54883e-05 -2.54883e-05 0 0 0 8.99846 0.0932662 5.10476 3.80043 +3 1 1 60 3.295 290 0 0 0.008422 -0.00401874 -0.00401874 0 0 0 134.58 -2.54883e-05 -2.54883e-05 0 0 0 8.96987 0.0646848 5.10476 3.80043 +3 1 1 61 3.3 290 0 0 0.008228 -0.00396054 -0.00396054 0 0 0 107.42 -2.54883e-05 -2.54883e-05 0 0 0 8.9464 0.0412108 5.10476 3.80043 +3 1 1 62 3.305 290 0 0 0.00804 -0.00390335 -0.00390335 0 0 0 81.6524 -2.54925e-05 -2.54925e-05 0 0 0 8.92863 0.0238111 5.10391 3.8009 +3 1 1 63 3.31 290 0 0 0.007845 -0.00383528 -0.00383528 0 0 0 61.0567 -2.56923e-05 -2.56923e-05 0 0 0 8.91471 0.013314 5.09459 3.80681 +3 1 1 64 3.315 290 0 0 0.007658 -0.00376905 -0.00376905 0 0 0 41.9635 -2.59474e-05 -2.59474e-05 0 0 0 8.90508 0.00628906 5.08571 3.81309 +3 1 1 65 3.32 290 0 0 0.007463 -0.00369889 -0.00369889 0 0 0 22.8276 -2.63974e-05 -2.63974e-05 0 0 0 8.89876 0.00186108 5.07658 3.82033 +3 1 1 66 3.325 290 0 0 0.007272 -0.00362889 -0.00362889 0 0 0 4.97717 -2.70019e-05 -2.70019e-05 0 0 0 8.89611 8.84727e-05 5.06776 3.82826 +3 1 1 67 3.33 290 0 0 0.007075 -0.00355521 -0.00355521 0 0 0 -12.3941 -2.6999e-05 -2.6999e-05 0 0 0 8.89684 0.000548617 5.0589 3.83739 +3 1 1 68 3.335 290 0 0 0.006905 -0.00349021 -0.00349021 0 0 0 -26.3951 -2.76747e-05 -2.76747e-05 0 0 0 8.90014 0.00248822 5.05136 3.84628 +3 1 1 69 3.34 290 0 0 0.006742 -0.00342659 -0.00342659 0 0 0 -38.9135 -2.83311e-05 -2.83311e-05 0 0 0 8.90546 0.00540806 5.04435 3.8557 +3 1 1 70 3.345 290 0 0 0.006546 -0.00334844 -0.00334844 0 0 0 -52.8047 -2.83261e-05 -2.83261e-05 0 0 0 8.91445 0.00995835 5.03646 3.86803 +3 1 1 71 3.35 290 0 0 0.006346 -0.00326671 -0.00326671 0 0 0 -65.5979 -2.83214e-05 -2.83214e-05 0 0 0 8.92629 0.0153682 5.02898 3.88194 +3 1 1 72 3.355 290 0 0 0.006126 -0.00317467 -0.00317467 0 0 0 -78.1661 -2.83166e-05 -2.83166e-05 0 0 0 8.9421 0.0218212 5.02161 3.89867 +3 1 1 73 3.36 290 0 0 0.00591 -0.0030823 -0.0030823 0 0 0 -89.1101 -2.83146e-05 -2.83146e-05 0 0 0 8.96017 0.0283593 5.01529 3.91652 +3 1 1 74 3.365 290 0 0 0.005677 -0.00298092 -0.00298092 0 0 0 -99.696 -2.87534e-05 -2.87534e-05 0 0 0 8.98216 0.0354975 5.0097 3.93697 +3 1 1 75 3.37 290 0 0 0.005433 -0.00287329 -0.00287329 0 0 0 -109.753 -2.89409e-05 -2.89409e-05 0 0 0 9.00772 0.0430205 5.00527 3.95943 +3 1 1 76 3.375 290 0 0 0.005204 -0.00277128 -0.00277128 0 0 0 -118.495 -2.89897e-05 -2.89897e-05 0 0 0 9.03385 0.0501466 5.00239 3.98131 +3 1 1 77 3.38 290 0 0 0.004997 -0.00267848 -0.00267848 0 0 0 -125.986 -2.90026e-05 -2.90026e-05 0 0 0 9.05915 0.0566874 5.00085 4.00162 +3 1 1 78 3.385 290 0 0 0.004791 -0.00258573 -0.00258573 0 0 0 -133.16 -2.90089e-05 -2.90089e-05 0 0 0 9.08585 0.0633273 5.00037 4.02215 +3 1 1 79 3.39 290 0 0 0.00459 -0.00249492 -0.00249492 0 0 0 -139.944 -2.90122e-05 -2.90122e-05 0 0 0 9.11329 0.0699435 5.00089 4.04246 +3 1 1 80 3.395 290 0 0 0.004387 -0.00240295 -0.00240295 0 0 0 -146.613 -2.90145e-05 -2.90145e-05 0 0 0 9.14238 0.0767691 5.00241 4.0632 +3 1 1 81 3.4 290 0 0 0.004184 -0.00231074 -0.00231074 0 0 0 -153.121 -2.90163e-05 -2.90163e-05 0 0 0 9.1728 0.0837357 5.00493 4.08414 +3 1 1 82 3.405 290 0 0 0.003983 -0.00221924 -0.00221924 0 0 0 -159.418 -2.90177e-05 -2.90177e-05 0 0 0 9.20421 0.0907651 5.00838 4.10507 +3 1 1 83 3.41 290 0 0 0.003784 -0.00212845 -0.00212845 0 0 0 -165.518 -2.90188e-05 -2.90188e-05 0 0 0 9.23654 0.0978439 5.01273 4.12597 +3 1 1 84 3.415 290 0 0 0.00358 -0.0020352 -0.0020352 0 0 0 -171.639 -2.902e-05 -2.902e-05 0 0 0 9.27093 0.105214 5.01815 4.14757 +3 1 1 85 3.42 290 0 0 0.003381 -0.00194405 -0.00194405 0 0 0 -177.482 -2.9021e-05 -2.9021e-05 0 0 0 9.30567 0.1125 5.02435 4.16883 +3 1 1 86 3.425 290 0 0 0.003179 -0.00185134 -0.00185134 0 0 0 -183.29 -2.9022e-05 -2.9022e-05 0 0 0 9.34211 0.119982 5.03156 4.19056 +3 1 1 87 3.43 290 0 0 0.002979 -0.00175938 -0.00175938 0 0 0 -188.918 -2.90229e-05 -2.90229e-05 0 0 0 9.37933 0.127464 5.0396 4.21226 +3 1 1 88 3.435 290 0 0 0.002775 -0.00166541 -0.00166541 0 0 0 -194.536 -2.90238e-05 -2.90238e-05 0 0 0 9.41844 0.135158 5.04873 4.23456 +3 1 1 89 3.44 290 0 0 0.002575 -0.00157311 -0.00157311 0 0 0 -199.925 -2.90246e-05 -2.90246e-05 0 0 0 9.45789 0.14275 5.05855 4.25659 +3 1 1 90 3.445 290 0 0 0.002369 -0.00147787 -0.00147787 0 0 0 -205.356 -2.90255e-05 -2.90255e-05 0 0 0 9.49963 0.150611 5.06958 4.27944 +3 1 1 91 3.45 290 0 0 0.002174 -0.00138755 -0.00138755 0 0 0 -210.384 -2.90262e-05 -2.90262e-05 0 0 0 9.54017 0.158077 5.08083 4.30126 +3 1 1 92 3.455 290 0 0 0.001967 -0.00129151 -0.00129151 0 0 0 -215.606 -2.9027e-05 -2.9027e-05 0 0 0 9.58426 0.166022 5.09367 4.32456 +3 1 1 93 3.46 290 0 0 0.001768 -0.00119902 -0.00119902 0 0 0 -220.514 -2.90277e-05 -2.90277e-05 0 0 0 9.62765 0.173665 5.10684 4.34715 +3 1 1 94 3.465 290 0 0 0.001568 -0.00110591 -0.00110591 0 0 0 -225.337 -2.90284e-05 -2.90284e-05 0 0 0 9.67224 0.181345 5.12089 4.37 +3 1 1 95 3.47 290 0 0 0.001366 -0.00101171 -0.00101171 0 0 0 -230.099 -2.9029e-05 -2.9029e-05 0 0 0 9.71823 0.189091 5.1359 4.39324 +3 1 1 96 3.475 290 0 0 0.001164 -0.000917361 -0.000917361 0 0 0 -234.753 -2.90296e-05 -2.90296e-05 0 0 0 9.76518 0.196818 5.15172 4.41665 +3 1 1 97 3.48 290 0 0 0.0009631 -0.000823373 -0.000823373 0 0 0 -239.276 -2.90302e-05 -2.90302e-05 0 0 0 9.8128 0.204475 5.16824 4.44008 +3 1 1 98 3.485 290 0 0 0.0007598 -0.000728111 -0.000728111 0 0 0 -243.747 -2.90308e-05 -2.90308e-05 0 0 0 9.8619 0.212189 5.18575 4.46396 +3 1 1 99 3.49 290 0 0 0.0005588 -0.000633779 -0.000633779 0 0 0 -248.066 -2.90313e-05 -2.90313e-05 0 0 0 9.91133 0.219773 5.20383 4.48772 +3 1 1 100 3.495 290 0 0 0.0003567 -0.000538787 -0.000538787 0 0 0 -252.306 -2.90318e-05 -2.90318e-05 0 0 0 9.96189 0.227351 5.22276 4.51178 +3 1 1 101 3.5 290 0 0 0.000161 -0.000446667 -0.000446667 0 0 0 -256.317 -2.90323e-05 -2.90323e-05 0 0 0 10.0117 0.234636 5.2418 4.53523 +3 1 1 102 3.505 290 0 0 -4.58e-05 -0.00034918 -0.00034918 0 0 0 -260.456 -2.90328e-05 -2.90328e-05 0 0 0 10.0651 0.242276 5.26267 4.56014 +3 1 1 103 3.51 290 0 0 -0.000251 -0.000252305 -0.000252305 0 0 0 -264.463 -2.90332e-05 -2.90332e-05 0 0 0 10.1189 0.249788 5.28413 4.58503 +3 1 1 104 3.515 290 0 0 -0.000473 -0.000147344 -0.000147344 0 0 0 -268.691 -2.90338e-05 -2.90338e-05 0 0 0 10.1781 0.257839 5.30819 4.6121 +3 1 1 105 3.52 290 0 0 -0.0006533 -6.19758e-05 -6.19758e-05 0 0 0 -272.038 -2.9034e-05 -2.9034e-05 0 0 0 10.2269 0.264302 5.32829 4.63429 +3 1 1 106 3.525 290 0 0 -0.0008338 2.35912e-05 2.35912e-05 0 0 0 -275.316 -2.90343e-05 -2.90343e-05 0 0 0 10.2763 0.270711 5.34895 4.65661 +3 1 1 107 3.53 290 0 0 -0.001036 0.000119563 0.000119563 0 0 0 -278.906 -2.90346e-05 -2.90346e-05 0 0 0 10.3323 0.277817 5.37277 4.68173 +3 1 1 108 3.535 290 0 0 -0.001266 0.000228876 0.000228876 0 0 0 -282.887 -2.90352e-05 -2.90352e-05 0 0 0 10.3969 0.285803 5.40069 4.71042 +3 1 1 109 3.54 290 0 0 -0.001442 0.00031264 0.00031264 0 0 0 -285.852 -2.90353e-05 -2.90353e-05 0 0 0 10.447 0.291826 5.42255 4.73258 +3 1 1 110 3.545 290 0 0 -0.001663 0.000417942 0.000417942 0 0 0 -289.491 -2.90357e-05 -2.90357e-05 0 0 0 10.5105 0.299303 5.45074 4.76049 +3 1 1 111 3.55 290 0 0 -0.001853 0.00050859 0.00050859 0 0 0 -292.537 -2.9036e-05 -2.9036e-05 0 0 0 10.5658 0.305636 5.47553 4.78466 +3 1 1 112 3.555 290 0 0 -0.002054 0.000604595 0.000604595 0 0 0 -295.683 -2.90362e-05 -2.90362e-05 0 0 0 10.6249 0.312245 5.50235 4.81035 +3 1 1 113 3.56 290 0 0 -0.002259 0.000702625 0.000702625 0 0 0 -298.812 -2.90364e-05 -2.90364e-05 0 0 0 10.6859 0.318888 5.5303 4.83669 +3 1 1 114 3.565 290 0 0 -0.002461 0.000799333 0.000799333 0 0 0 -301.817 -2.90367e-05 -2.90367e-05 0 0 0 10.7465 0.325334 5.55842 4.86279 +3 1 1 115 3.57 290 0 0 -0.002659 0.00089423 0.00089423 0 0 0 -304.689 -2.90368e-05 -2.90368e-05 0 0 0 10.8066 0.331554 5.58652 4.88851 +3 1 1 116 3.575 290 0 0 -0.002862 0.000991629 0.000991629 0 0 0 -307.56 -2.9037e-05 -2.9037e-05 0 0 0 10.8687 0.337832 5.61589 4.91501 +3 1 1 117 3.58 290 0 0 -0.003061 0.00108721 0.00108721 0 0 0 -310.303 -2.90372e-05 -2.90372e-05 0 0 0 10.9302 0.343886 5.6452 4.94112 +3 1 1 118 3.585 290 0 0 -0.003257 0.00118145 0.00118145 0 0 0 -312.938 -2.90374e-05 -2.90374e-05 0 0 0 10.9913 0.34975 5.67457 4.96697 +3 1 1 119 3.59 290 0 0 -0.003458 0.00127818 0.00127818 0 0 0 -315.573 -2.90375e-05 -2.90375e-05 0 0 0 11.0545 0.355665 5.70519 4.9936 +3 1 1 120 3.595 290 0 0 -0.003656 0.00137357 0.00137357 0 0 0 -318.103 -2.90376e-05 -2.90376e-05 0 0 0 11.1172 0.361391 5.73584 5.01996 +3 1 1 121 3.6 290 0 0 -0.003869 0.00147628 0.00147628 0 0 0 -320.755 -2.90378e-05 -2.90378e-05 0 0 0 11.1852 0.367443 5.76935 5.04844 +3 1 1 122 3.605 290 0 0 -0.004064 0.0015704 0.0015704 0 0 0 -323.12 -2.90379e-05 -2.90379e-05 0 0 0 11.248 0.37288 5.80047 5.07465 +3 1 1 123 3.61 290 0 0 -0.004268 0.00166896 0.00166896 0 0 0 -325.531 -2.9038e-05 -2.9038e-05 0 0 0 11.3142 0.378467 5.83351 5.10219 +3 1 1 124 3.615 290 0 0 -0.004478 0.0017705 0.0017705 0 0 0 -327.949 -2.90382e-05 -2.90382e-05 0 0 0 11.3828 0.38411 5.868 5.13067 +3 1 1 125 3.62 290 0 0 -0.004672 0.00186439 0.00186439 0 0 0 -330.125 -2.84321e-05 -2.84321e-05 0 0 0 11.4466 0.389223 5.90028 5.15711 +3 1 1 126 3.625 290 0 0 -0.004881 0.00196563 0.00196563 0 0 0 -332.41 -2.84322e-05 -2.84322e-05 0 0 0 11.5158 0.394629 5.93552 5.1857 +3 1 1 127 3.63 290 0 0 -0.00507 0.00205725 0.00205725 0 0 0 -334.422 -2.79267e-05 -2.79267e-05 0 0 0 11.5789 0.399422 5.96775 5.21169 +3 1 1 128 3.635 290 0 0 -0.005275 0.00215671 0.00215671 0 0 0 -336.552 -2.73131e-05 -2.73131e-05 0 0 0 11.6476 0.404525 6.00313 5.23998 +3 1 1 129 3.64 290 0 0 -0.005476 0.00225431 0.00225431 0 0 0 -338.586 -2.67649e-05 -2.67649e-05 0 0 0 11.7155 0.409429 6.03822 5.26784 +3 1 1 130 3.645 290 0 0 -0.005679 0.00235295 0.00235295 0 0 0 -340.587 -2.62295e-05 -2.62295e-05 0 0 0 11.7844 0.414285 6.07405 5.29609 +3 1 1 131 3.65 290 0 0 -0.005881 0.00245117 0.00245117 0 0 0 -342.528 -2.57297e-05 -2.57297e-05 0 0 0 11.8534 0.419019 6.11008 5.32432 +3 1 1 132 3.655 290 0 0 -0.006082 0.00254899 0.00254899 0 0 0 -344.409 -2.52634e-05 -2.52634e-05 0 0 0 11.9225 0.423635 6.1463 5.35252 +3 1 1 133 3.66 290 0 0 -0.006282 0.00264638 0.00264638 0 0 0 -346.234 -2.48283e-05 -2.48283e-05 0 0 0 11.9915 0.428135 6.18269 5.3807 +3 1 1 134 3.665 290 0 0 -0.006482 0.00274384 0.00274384 0 0 0 -348.012 -2.44163e-05 -2.44163e-05 0 0 0 12.0609 0.432545 6.21942 5.40898 +3 1 1 135 3.67 290 0 0 -0.006687 0.0028438 0.0028438 0 0 0 -349.789 -2.39965e-05 -2.39965e-05 0 0 0 12.1325 0.436973 6.25742 5.43808 +3 1 1 136 3.675 290 0 0 -0.006887 0.00294139 0.00294139 0 0 0 -351.478 -2.36281e-05 -2.36281e-05 0 0 0 12.2026 0.441202 6.29482 5.46657 +3 1 1 137 3.68 290 0 0 -0.00709 0.0030405 0.0030405 0 0 0 -353.149 -2.32638e-05 -2.32638e-05 0 0 0 12.2741 0.445407 6.3331 5.49561 +3 1 1 138 3.685 290 0 0 -0.00729 0.00313821 0.00313821 0 0 0 -354.753 -2.29346e-05 -2.29346e-05 0 0 0 12.3449 0.449463 6.37113 5.52432 +3 1 1 139 3.69 290 0 0 -0.007495 0.00323842 0.00323842 0 0 0 -356.356 -2.25997e-05 -2.25997e-05 0 0 0 12.4178 0.453534 6.41041 5.55385 +3 1 1 140 3.695 290 0 0 -0.007697 0.00333722 0.00333722 0 0 0 -357.895 -2.22974e-05 -2.22974e-05 0 0 0 12.4899 0.457461 6.44942 5.58306 +3 1 1 141 3.7 290 0 0 -0.007895 0.00343412 0.00343412 0 0 0 -359.366 -2.20286e-05 -2.20286e-05 0 0 0 12.5609 0.461229 6.48793 5.61179 +3 1 1 142 3.705 290 0 0 -0.008104 0.00353646 0.00353646 0 0 0 -360.881 -2.17301e-05 -2.17301e-05 0 0 0 12.6362 0.465124 6.52888 5.64221 +3 1 1 143 3.71 290 0 0 -0.008306 0.00363542 0.00363542 0 0 0 -362.307 -2.14763e-05 -2.14763e-05 0 0 0 12.7093 0.468807 6.56872 5.67172 +3 1 1 144 3.715 290 0 0 -0.008502 0.00373149 0.00373149 0 0 0 -363.656 -2.12577e-05 -2.12577e-05 0 0 0 12.7804 0.472306 6.60763 5.70046 +3 1 1 145 3.72 290 0 0 -0.008711 0.00383399 0.00383399 0 0 0 -365.06 -2.10074e-05 -2.10074e-05 0 0 0 12.8565 0.475959 6.64939 5.73119 +3 1 1 146 3.725 290 0 0 -0.008908 0.00393064 0.00393064 0 0 0 -366.35 -2.08102e-05 -2.08102e-05 0 0 0 12.9286 0.479329 6.689 5.76027 +3 1 1 147 3.73 290 0 0 -0.009117 0.00403324 0.00403324 0 0 0 -367.685 -2.05882e-05 -2.05882e-05 0 0 0 13.0053 0.482829 6.73126 5.79121 +3 1 1 148 3.735 290 0 0 -0.00931 0.00412802 0.00412802 0 0 0 -368.887 -2.04236e-05 -2.04236e-05 0 0 0 13.0764 0.485992 6.77051 5.81987 +3 1 1 149 3.74 290 0 0 -0.009518 0.00423021 0.00423021 0 0 0 -370.153 -2.02294e-05 -2.02294e-05 0 0 0 13.1532 0.489332 6.81305 5.85086 +3 1 1 150 3.745 290 0 0 -0.009719 0.00432901 0.00432901 0 0 0 -371.345 -2.00646e-05 -2.00646e-05 0 0 0 13.2278 0.49249 6.85437 5.8809 +3 1 1 151 3.75 290 0 0 -0.009925 0.0044303 0.0044303 0 0 0 -372.538 -1.98976e-05 -1.98976e-05 0 0 0 13.3044 0.495659 6.89694 5.91178 +3 1 1 152 3.755 290 0 0 -0.009932 0.00443375 0.00443375 0 0 0 -372.578 -1.98976e-05 -1.98976e-05 0 0 0 13.307 0.495764 6.89839 5.91283 +3 1 1 153 3.76 290 0 0 -0.009694 0.00436235 0.00436235 0 0 0 -339.258 -1.98976e-05 -1.98976e-05 0 0 0 13.2223 0.411056 6.89839 5.91283 +3 1 1 154 3.765 290 0 0 -0.009514 0.00430835 0.00430835 0 0 0 -314.058 -1.98976e-05 -1.98976e-05 0 0 0 13.1635 0.352258 6.89839 5.91283 +3 1 1 155 3.77 290 0 0 -0.00933 0.00425315 0.00425315 0 0 0 -288.298 -1.98976e-05 -1.98976e-05 0 0 0 13.1081 0.296841 6.89839 5.91283 +3 1 1 156 3.775 290 0 0 -0.009136 0.00419495 0.00419495 0 0 0 -261.138 -1.98976e-05 -1.98976e-05 0 0 0 13.0548 0.243546 6.89839 5.91283 +3 1 1 157 3.78 290 0 0 -0.008945 0.00413765 0.00413765 0 0 0 -234.398 -1.98976e-05 -1.98976e-05 0 0 0 13.0074 0.196222 6.89839 5.91283 +3 1 1 158 3.785 290 0 0 -0.008755 0.00408065 0.00408065 0 0 0 -207.798 -1.98976e-05 -1.98976e-05 0 0 0 12.9654 0.154214 6.89839 5.91283 +3 1 1 159 3.79 290 0 0 -0.008566 0.00402395 0.00402395 0 0 0 -181.338 -1.98976e-05 -1.98976e-05 0 0 0 12.9287 0.11744 6.89839 5.91283 +3 1 1 160 3.795 290 0 0 -0.008376 0.00396695 0.00396695 0 0 0 -154.738 -1.98976e-05 -1.98976e-05 0 0 0 12.8967 0.0855132 6.89839 5.91283 +3 1 1 161 3.8 290 0 0 -0.008206 0.00391595 0.00391595 0 0 0 -130.938 -1.98976e-05 -1.98976e-05 0 0 0 12.8725 0.0612308 6.89839 5.91283 +3 1 1 162 3.805 290 0 0 -0.008016 0.00385895 0.00385895 0 0 0 -104.338 -1.98976e-05 -1.98976e-05 0 0 0 12.8501 0.0388797 6.89839 5.91283 +3 1 1 163 3.81 290 0 0 -0.007818 0.00379955 0.00379955 0 0 0 -76.6175 -1.98976e-05 -1.98976e-05 0 0 0 12.8322 0.0209652 6.89839 5.91283 +3 1 1 164 3.815 290 0 0 -0.007621 0.00373716 0.00373716 0 0 0 -51.3371 -1.95916e-05 -1.95916e-05 0 0 0 12.8196 0.00941247 6.89497 5.9152 +3 1 1 165 3.82 290 0 0 -0.007428 0.00366953 0.00366953 0 0 0 -31.127 -1.93765e-05 -1.93765e-05 0 0 0 12.8116 0.00346033 6.88581 5.92235 +3 1 1 166 3.825 290 0 0 -0.007235 0.00360089 0.00360089 0 0 0 -11.6237 -1.90508e-05 -1.90508e-05 0 0 0 12.8075 0.000482538 6.87675 5.93027 +3 1 1 167 3.83 290 0 0 -0.007034 0.00352818 0.00352818 0 0 0 7.82918 -1.8475e-05 -1.8475e-05 0 0 0 12.8071 0.000218915 6.86748 5.93942 +3 1 1 168 3.835 290 0 0 -0.006843 0.00345773 0.00345773 0 0 0 25.3599 -1.77934e-05 -1.77934e-05 0 0 0 12.8103 0.00229687 6.8588 5.9492 +3 1 1 169 3.84 290 0 0 -0.006644 0.00338275 0.00338275 0 0 0 42.5274 -1.77969e-05 -1.77969e-05 0 0 0 12.817 0.00645922 6.85002 5.96057 +3 1 1 170 3.845 290 0 0 -0.006447 0.00330676 0.00330676 0 0 0 58.2801 -1.78015e-05 -1.78015e-05 0 0 0 12.827 0.0121306 6.84163 5.97322 +3 1 1 171 3.85 290 0 0 -0.006255 0.00323085 0.00323085 0 0 0 72.347 -1.78061e-05 -1.78061e-05 0 0 0 12.8395 0.0186932 6.83381 5.98701 +3 1 1 172 3.855 290 0 0 -0.006061 0.00315228 0.00315228 0 0 0 85.2447 -1.78106e-05 -1.78106e-05 0 0 0 12.8548 0.0259524 6.82641 6.00244 +3 1 1 173 3.86 290 0 0 -0.005869 0.00307269 0.00307269 0 0 0 96.7322 -1.78137e-05 -1.78137e-05 0 0 0 12.8723 0.0334183 6.81966 6.01919 +3 1 1 174 3.865 290 0 0 -0.005716 0.00300801 0.00300801 0 0 0 105.004 -1.75426e-05 -1.75426e-05 0 0 0 12.8877 0.0393783 6.81467 6.03366 +3 1 1 175 3.87 290 0 0 -0.005559 0.00294069 0.00294069 0 0 0 112.83 -1.73515e-05 -1.73515e-05 0 0 0 12.9048 0.0454663 6.81006 6.04927 +3 1 1 176 3.875 290 0 0 -0.00536 0.00285425 0.00285425 0 0 0 121.972 -1.70818e-05 -1.70818e-05 0 0 0 12.9282 0.0531325 6.80517 6.06987 +3 1 1 177 3.88 290 0 0 -0.005148 0.002761 0.002761 0 0 0 130.9 -1.69338e-05 -1.69338e-05 0 0 0 12.955 0.0611956 6.80103 6.09274 +3 1 1 178 3.885 290 0 0 -0.004948 0.00267218 0.00267218 0 0 0 138.728 -1.68879e-05 -1.68879e-05 0 0 0 12.9819 0.0687338 6.79811 6.11509 +3 1 1 179 3.89 290 0 0 -0.004718 0.00256934 0.00256934 0 0 0 147.237 -1.68551e-05 -1.68551e-05 0 0 0 13.0148 0.0774236 6.79607 6.14133 +3 1 1 180 3.895 290 0 0 -0.004497 0.00246996 0.00246996 0 0 0 155.023 -1.68435e-05 -1.68435e-05 0 0 0 13.0482 0.0858288 6.79532 6.16707 +3 1 1 181 3.9 290 0 0 -0.00426 0.00236295 0.00236295 0 0 0 163.063 -1.68358e-05 -1.68358e-05 0 0 0 13.0859 0.0949622 6.79591 6.19504 +3 1 1 182 3.905 290 0 0 -0.004032 0.00225964 0.00225964 0 0 0 170.546 -1.68318e-05 -1.68318e-05 0 0 0 13.1239 0.103878 6.79773 6.22233 +3 1 1 183 3.91 290 0 0 -0.003822 0.00216422 0.00216422 0 0 0 177.251 -1.68298e-05 -1.68298e-05 0 0 0 13.1605 0.112206 6.80048 6.24778 +3 1 1 184 3.915 290 0 0 -0.003625 0.00207449 0.00207449 0 0 0 183.393 -1.68285e-05 -1.68285e-05 0 0 0 13.196 0.120118 6.80397 6.27189 +3 1 1 185 3.92 290 0 0 -0.00342 0.00198092 0.00198092 0 0 0 189.647 -1.68272e-05 -1.68272e-05 0 0 0 13.2342 0.12845 6.8086 6.29717 +3 1 1 186 3.925 290 0 0 -0.003221 0.00188991 0.00188991 0 0 0 195.586 -1.68261e-05 -1.68261e-05 0 0 0 13.2726 0.136621 6.81401 6.32192 +3 1 1 187 3.93 290 0 0 -0.003025 0.00180009 0.00180009 0 0 0 201.313 -1.68252e-05 -1.68252e-05 0 0 0 13.3114 0.14474 6.82022 6.34649 +3 1 1 188 3.935 290 0 0 -0.002824 0.00170781 0.00170781 0 0 0 207.064 -1.68242e-05 -1.68242e-05 0 0 0 13.3525 0.153127 6.8275 6.37186 +3 1 1 189 3.94 290 0 0 -0.002622 0.00161489 0.00161489 0 0 0 212.721 -1.68233e-05 -1.68233e-05 0 0 0 13.3949 0.161608 6.83573 6.39755 +3 1 1 190 3.945 290 0 0 -0.002429 0.00152594 0.00152594 0 0 0 218.011 -1.68225e-05 -1.68225e-05 0 0 0 13.4365 0.169745 6.84443 6.42228 +3 1 1 191 3.95 290 0 0 -0.002227 0.00143269 0.00143269 0 0 0 223.431 -1.68217e-05 -1.68217e-05 0 0 0 13.481 0.178291 6.85442 6.44833 +3 1 1 192 3.955 290 0 0 -0.002033 0.00134296 0.00134296 0 0 0 228.525 -1.6821e-05 -1.6821e-05 0 0 0 13.5249 0.186513 6.86483 6.47354 +3 1 1 193 3.96 290 0 0 -0.001832 0.00124984 0.00124984 0 0 0 233.69 -1.68202e-05 -1.68202e-05 0 0 0 13.5713 0.19504 6.87647 6.49982 +3 1 1 194 3.965 290 0 0 -0.001634 0.00115795 0.00115795 0 0 0 238.667 -1.68195e-05 -1.68195e-05 0 0 0 13.6181 0.203435 6.88877 6.52589 +3 1 1 195 3.97 290 0 0 -0.001432 0.00106405 0.00106405 0 0 0 243.632 -1.68188e-05 -1.68188e-05 0 0 0 13.6668 0.211988 6.90215 6.55266 +3 1 1 196 3.975 290 0 0 -0.001236 0.000972775 0.000972775 0 0 0 248.343 -1.68182e-05 -1.68182e-05 0 0 0 13.715 0.220265 6.91593 6.57882 +3 1 1 197 3.98 290 0 0 -0.001033 0.00087809 0.00087809 0 0 0 253.113 -1.68175e-05 -1.68175e-05 0 0 0 13.7659 0.228808 6.93103 6.60608 +3 1 1 198 3.985 290 0 0 -0.0008346 0.000785399 0.000785399 0 0 0 257.669 -1.68169e-05 -1.68169e-05 0 0 0 13.8166 0.237119 6.94657 6.6329 +3 1 1 199 3.99 290 0 0 -0.0006298 0.000689564 0.000689564 0 0 0 262.265 -1.68163e-05 -1.68163e-05 0 0 0 13.8698 0.245653 6.96343 6.66075 +3 1 1 200 3.995 290 0 0 -0.000429 0.000595451 0.000595451 0 0 0 266.665 -1.68158e-05 -1.68158e-05 0 0 0 13.9229 0.253966 6.98073 6.68824 +3 1 1 201 4 290 0 0 -0.000228 0.000501097 0.000501097 0 0 0 270.968 -1.68152e-05 -1.68152e-05 0 0 0 13.977 0.262228 6.99881 6.71592 diff --git a/testBin/Umats/EPKCP/comparison/results_job_global-0.txt b/testBin/Umats/EPKCP/comparison/results_job_global-0.txt index 02558d111..6bbb747f0 100644 --- a/testBin/Umats/EPKCP/comparison/results_job_global-0.txt +++ b/testBin/Umats/EPKCP/comparison/results_job_global-0.txt @@ -53,2948 +53,2948 @@ 1 1 1 53 0.053 323.15 0 0 0.00424 -0.00147976 -0.00147976 0 0 0 286.361 2.37163e-13 2.23463e-13 0 0 0 0.607086 0.607086 0 0 1 1 1 54 0.054 323.15 0 0 0.00432 -0.00150768 -0.00150768 0 0 0 291.764 2.39459e-13 2.3134e-13 0 0 0 0.630211 0.630211 0 0 1 1 1 55 0.055 323.15 0 0 0.0044 -0.0015356 -0.0015356 0 0 0 297.167 2.27545e-13 2.39217e-13 0 0 0 0.653768 0.653768 0 0 -1 1 1 56 0.056 323.15 0 0 0.00448 -0.00156307 -0.00156307 0 0 0 302.77 -6.20063e-06 -6.20063e-06 0 0 0 0.677765 0.67865 -8.76249e-05 -0.000797553 -1 1 1 57 0.057 323.15 0 0 0.00456 -0.00159099 -0.00159099 0 0 0 308.173 -6.20063e-06 -6.20063e-06 0 0 0 0.702203 0.703088 -8.76249e-05 -0.000797553 -1 1 1 58 0.058 323.15 0 0 0.00464 -0.00161891 -0.00161891 0 0 0 313.576 -6.20063e-06 -6.20063e-06 0 0 0 0.727073 0.727958 -8.76249e-05 -0.000797553 -1 1 1 59 0.059 323.15 0 0 0.00472 -0.00164683 -0.00164683 0 0 0 318.979 -6.20063e-06 -6.20063e-06 0 0 0 0.752375 0.75326 -8.76249e-05 -0.000797553 -1 1 1 60 0.06 323.15 0 0 0.0048 -0.00167475 -0.00167475 0 0 0 324.382 -6.20063e-06 -6.20063e-06 0 0 0 0.77811 0.778995 -8.76249e-05 -0.000797553 -1 1 1 61 0.061 323.15 0 0 0.00488 -0.00170267 -0.00170267 0 0 0 329.785 -6.20063e-06 -6.20063e-06 0 0 0 0.804276 0.805161 -8.76249e-05 -0.000797553 -1 1 1 62 0.062 323.15 0 0 0.00496 -0.00173059 -0.00173059 0 0 0 335.188 -6.20063e-06 -6.20063e-06 0 0 0 0.830875 0.83176 -8.76249e-05 -0.000797553 -1 1 1 63 0.063 323.15 0 0 0.00504 -0.00175851 -0.00175851 0 0 0 340.591 -6.20063e-06 -6.20063e-06 0 0 0 0.857906 0.858791 -8.76249e-05 -0.000797553 -1 1 1 64 0.064 323.15 0 0 0.00512 -0.00178643 -0.00178643 0 0 0 345.994 -6.20063e-06 -6.20063e-06 0 0 0 0.88537 0.886255 -8.76249e-05 -0.000797553 -1 1 1 65 0.065 323.15 0 0 0.0052 -0.00181435 -0.00181435 0 0 0 351.397 -6.20063e-06 -6.20063e-06 0 0 0 0.913265 0.91415 -8.76249e-05 -0.000797553 -1 1 1 66 0.066 323.15 0 0 0.00528 -0.00184227 -0.00184227 0 0 0 356.8 -6.20063e-06 -6.20063e-06 0 0 0 0.941593 0.942478 -8.76249e-05 -0.000797553 -1 1 1 67 0.067 323.15 0 0 0.00536 -0.00187068 -0.00187068 0 0 0 361.984 -5.92396e-06 -5.92396e-06 0 0 0 0.970344 0.970065 0.000108985 0.000170196 -1 1 1 68 0.068 323.15 0 0 0.00544 -0.00189967 -0.00189967 0 0 0 366.911 -5.91519e-06 -5.91519e-06 0 0 0 0.9995 0.996652 0.000563309 0.00228543 -1 1 1 69 0.069 323.15 0 0 0.00552 -0.00192883 -0.00192883 0 0 0 371.759 -5.90518e-06 -5.90518e-06 0 0 0 1.02905 1.02316 0.00113261 0.00474991 -1 1 1 70 0.07 323.15 0 0 0.0056 -0.00195817 -0.00195817 0 0 0 376.526 -5.89412e-06 -5.89412e-06 0 0 0 1.05898 1.04957 0.00183101 0.00757815 -1 1 1 71 0.071 323.15 0 0 0.00568 -0.0019877 -0.0019877 0 0 0 381.207 -5.88226e-06 -5.88226e-06 0 0 0 1.08929 1.07583 0.00267212 0.0107813 -1 1 1 72 0.072 323.15 0 0 0.00576 -0.00201743 -0.00201743 0 0 0 385.803 -5.86986e-06 -5.86986e-06 0 0 0 1.11997 1.10193 0.00366884 0.0143675 -1 1 1 73 0.073 323.15 0 0 0.00584 -0.00204735 -0.00204735 0 0 0 390.312 -5.85717e-06 -5.85717e-06 0 0 0 1.15101 1.12784 0.00483323 0.0183418 -1 1 1 74 0.074 323.15 0 0 0.00592 -0.00207747 -0.00207747 0 0 0 394.732 -5.84445e-06 -5.84445e-06 0 0 0 1.18241 1.15353 0.00617639 0.0227066 -1 1 1 75 0.075 323.15 0 0 0.006 -0.00210778 -0.00210778 0 0 0 399.064 -5.83189e-06 -5.83189e-06 0 0 0 1.21417 1.179 0.00770843 0.0274621 -1 1 1 76 0.076 323.15 0 0 0.00608 -0.00213829 -0.00213829 0 0 0 403.309 -5.81969e-06 -5.81969e-06 0 0 0 1.24626 1.20422 0.00943839 0.0326063 -1 1 1 77 0.077 323.15 0 0 0.00616 -0.00216899 -0.00216899 0 0 0 407.468 -5.80798e-06 -5.80798e-06 0 0 0 1.27869 1.22918 0.0113743 0.0381356 -1 1 1 78 0.078 323.15 0 0 0.00624 -0.00219989 -0.00219989 0 0 0 411.54 -5.79686e-06 -5.79686e-06 0 0 0 1.31145 1.25389 0.0135231 0.0440446 -1 1 1 79 0.079 323.15 0 0 0.00632 -0.00223097 -0.00223097 0 0 0 415.529 -5.7864e-06 -5.7864e-06 0 0 0 1.34454 1.27832 0.0158908 0.0503269 -1 1 1 80 0.08 323.15 0 0 0.0064 -0.00226224 -0.00226224 0 0 0 419.435 -5.77665e-06 -5.77665e-06 0 0 0 1.37793 1.30248 0.0184824 0.0569752 -1 1 1 81 0.081 323.15 0 0 0.00648 -0.00229368 -0.00229368 0 0 0 423.261 -5.76762e-06 -5.76762e-06 0 0 0 1.41164 1.32636 0.0213022 0.0639812 -1 1 1 82 0.082 323.15 0 0 0.00656 -0.0023253 -0.0023253 0 0 0 427.008 -5.7593e-06 -5.7593e-06 0 0 0 1.44565 1.34996 0.0243535 0.0713361 -1 1 1 83 0.083 323.15 0 0 0.00664 -0.0023571 -0.0023571 0 0 0 430.679 -5.75168e-06 -5.75168e-06 0 0 0 1.47996 1.37329 0.0276389 0.0790307 -1 1 1 84 0.084 323.15 0 0 0.00672 -0.00238906 -0.00238906 0 0 0 434.276 -5.74473e-06 -5.74473e-06 0 0 0 1.51456 1.39634 0.0311604 0.0870556 -1 1 1 85 0.085 323.15 0 0 0.0068 -0.00242118 -0.00242118 0 0 0 437.8 -5.73841e-06 -5.73841e-06 0 0 0 1.54944 1.41912 0.0349194 0.0954011 -1 1 1 86 0.086 323.15 0 0 0.00688 -0.00245345 -0.00245345 0 0 0 441.254 -5.73267e-06 -5.73267e-06 0 0 0 1.5846 1.44163 0.0389166 0.104057 -1 1 1 87 0.087 323.15 0 0 0.00696 -0.00248588 -0.00248588 0 0 0 444.641 -5.72749e-06 -5.72749e-06 0 0 0 1.62004 1.46387 0.0431524 0.113015 -1 1 1 88 0.088 323.15 0 0 0.00704 -0.00251846 -0.00251846 0 0 0 447.961 -5.72281e-06 -5.72281e-06 0 0 0 1.65574 1.48585 0.0476267 0.122264 -1 1 1 89 0.089 323.15 0 0 0.00712 -0.00255118 -0.00255118 0 0 0 451.219 -5.71859e-06 -5.71859e-06 0 0 0 1.69171 1.50758 0.052339 0.131795 -1 1 1 90 0.09 323.15 0 0 0.0072 -0.00258403 -0.00258403 0 0 0 454.415 -5.71478e-06 -5.71478e-06 0 0 0 1.72794 1.52905 0.0572885 0.1416 -1 1 1 91 0.091 323.15 0 0 0.00728 -0.00261702 -0.00261702 0 0 0 457.551 -5.71136e-06 -5.71136e-06 0 0 0 1.76441 1.55027 0.062474 0.151667 -1 1 1 92 0.092 323.15 0 0 0.00736 -0.00265013 -0.00265013 0 0 0 460.63 -5.70828e-06 -5.70828e-06 0 0 0 1.80114 1.57126 0.0678943 0.16199 -1 1 1 93 0.093 323.15 0 0 0.00744 -0.00268337 -0.00268337 0 0 0 463.654 -5.70551e-06 -5.70551e-06 0 0 0 1.83811 1.59201 0.0735478 0.17256 -1 1 1 94 0.094 323.15 0 0 0.00752 -0.00271673 -0.00271673 0 0 0 466.624 -5.70302e-06 -5.70302e-06 0 0 0 1.87532 1.61252 0.0794327 0.183367 -1 1 1 95 0.095 323.15 0 0 0.0076 -0.00275021 -0.00275021 0 0 0 469.542 -5.70078e-06 -5.70078e-06 0 0 0 1.91277 1.63282 0.0855472 0.194404 -1 1 1 96 0.096 323.15 0 0 0.00768 -0.0027838 -0.0027838 0 0 0 472.41 -5.69877e-06 -5.69877e-06 0 0 0 1.95045 1.6529 0.0918892 0.205664 -1 1 1 97 0.097 323.15 0 0 0.00776 -0.00281749 -0.00281749 0 0 0 475.23 -5.69696e-06 -5.69695e-06 0 0 0 1.98835 1.67276 0.0984567 0.217138 -1 1 1 98 0.098 323.15 0 0 0.00784 -0.00285129 -0.00285129 0 0 0 478.003 -5.69532e-06 -5.69532e-06 0 0 0 2.02648 1.69242 0.105247 0.22882 -1 1 1 99 0.099 323.15 0 0 0.00792 -0.00288519 -0.00288519 0 0 0 480.731 -5.69385e-06 -5.69385e-06 0 0 0 2.06483 1.71187 0.112259 0.240703 -1 1 1 100 0.1 323.15 0 0 0.008 -0.00291919 -0.00291919 0 0 0 483.415 -5.69252e-06 -5.69252e-06 0 0 0 2.1034 1.73113 0.119489 0.25278 -1 1 1 101 0.101 323.15 0 0 0.00808 -0.00295328 -0.00295328 0 0 0 486.057 -5.69132e-06 -5.69132e-06 0 0 0 2.14218 1.7502 0.126936 0.265044 -1 1 1 102 0.102 323.15 0 0 0.00816 -0.00298747 -0.00298747 0 0 0 488.658 -5.69024e-06 -5.69024e-06 0 0 0 2.18117 1.76908 0.134596 0.27749 -1 1 1 103 0.103 323.15 0 0 0.00824 -0.00302174 -0.00302174 0 0 0 491.22 -5.68926e-06 -5.68926e-06 0 0 0 2.22036 1.78778 0.142468 0.290112 -1 1 1 104 0.104 323.15 0 0 0.00832 -0.0030561 -0.0030561 0 0 0 493.743 -5.68837e-06 -5.68837e-06 0 0 0 2.25976 1.80631 0.150549 0.302904 -1 1 1 105 0.105 323.15 0 0 0.0084 -0.00309054 -0.00309054 0 0 0 496.23 -5.68757e-06 -5.68757e-06 0 0 0 2.29936 1.82466 0.158836 0.31586 -1 1 1 106 0.106 323.15 0 0 0.00848 -0.00312506 -0.00312506 0 0 0 498.68 -5.68684e-06 -5.68684e-06 0 0 0 2.33916 1.84285 0.167328 0.328975 -1 1 1 107 0.107 323.15 0 0 0.00856 -0.00315966 -0.00315966 0 0 0 501.095 -5.68618e-06 -5.68618e-06 0 0 0 2.37915 1.86088 0.176021 0.342245 -1 1 1 108 0.108 323.15 0 0 0.00864 -0.00319434 -0.00319434 0 0 0 503.477 -5.68558e-06 -5.68558e-06 0 0 0 2.41933 1.87875 0.184914 0.355665 -1 1 1 109 0.109 323.15 0 0 0.00872 -0.00322908 -0.00322908 0 0 0 505.827 -5.68503e-06 -5.68503e-06 0 0 0 2.4597 1.89647 0.194003 0.36923 -1 1 1 110 0.11 323.15 0 0 0.0088 -0.0032639 -0.0032639 0 0 0 508.144 -5.68454e-06 -5.68454e-06 0 0 0 2.50026 1.91404 0.203287 0.382935 -1 1 1 111 0.111 323.15 0 0 0.00888 -0.00329879 -0.00329879 0 0 0 510.431 -5.68408e-06 -5.68408e-06 0 0 0 2.541 1.93146 0.212764 0.396777 -1 1 1 112 0.112 323.15 0 0 0.00896 -0.00333374 -0.00333374 0 0 0 512.688 -5.68367e-06 -5.68367e-06 0 0 0 2.58193 1.94875 0.22243 0.410751 -1 1 1 113 0.113 323.15 0 0 0.00904 -0.00336876 -0.00336876 0 0 0 514.917 -5.68329e-06 -5.68329e-06 0 0 0 2.62303 1.9659 0.232284 0.424853 -1 1 1 114 0.114 323.15 0 0 0.00912 -0.00340384 -0.00340384 0 0 0 517.117 -5.68295e-06 -5.68295e-06 0 0 0 2.66431 1.98291 0.242324 0.43908 -1 1 1 115 0.115 323.15 0 0 0.0092 -0.00343898 -0.00343898 0 0 0 519.29 -5.68263e-06 -5.68263e-06 0 0 0 2.70577 1.99979 0.252547 0.453429 -1 1 1 116 0.116 323.15 0 0 0.00928 -0.00347418 -0.00347418 0 0 0 521.436 -5.68234e-06 -5.68234e-06 0 0 0 2.7474 2.01655 0.262951 0.467895 -1 1 1 117 0.117 323.15 0 0 0.00936 -0.00350944 -0.00350944 0 0 0 523.556 -5.68208e-06 -5.68208e-06 0 0 0 2.7892 2.03319 0.273533 0.482475 -1 1 1 118 0.118 323.15 0 0 0.00944 -0.00354476 -0.00354476 0 0 0 525.652 -5.68183e-06 -5.68183e-06 0 0 0 2.83117 2.04971 0.284293 0.497167 -1 1 1 119 0.119 323.15 0 0 0.00952 -0.00358013 -0.00358013 0 0 0 527.723 -5.68161e-06 -5.68161e-06 0 0 0 2.8733 2.06611 0.295227 0.511966 -1 1 1 120 0.12 323.15 0 0 0.0096 -0.00361555 -0.00361555 0 0 0 529.771 -5.6814e-06 -5.6814e-06 0 0 0 2.9156 2.0824 0.306334 0.526871 -1 1 1 121 0.121 323.15 0 0 0.00968 -0.00365102 -0.00365102 0 0 0 531.795 -5.68121e-06 -5.68121e-06 0 0 0 2.95806 2.09857 0.317611 0.541879 -1 1 1 122 0.122 323.15 0 0 0.00976 -0.00368655 -0.00368655 0 0 0 533.797 -5.68104e-06 -5.68104e-06 0 0 0 3.00069 2.11465 0.329058 0.556986 -1 1 1 123 0.123 323.15 0 0 0.00984 -0.00372212 -0.00372212 0 0 0 535.778 -5.68087e-06 -5.68088e-06 0 0 0 3.04347 2.13061 0.340671 0.57219 -1 1 1 124 0.124 323.15 0 0 0.00992 -0.00375774 -0.00375774 0 0 0 537.736 -5.68073e-06 -5.68073e-06 0 0 0 3.08641 2.14648 0.352448 0.587488 -1 1 1 125 0.125 323.15 0 0 0.01 -0.00379341 -0.00379341 0 0 0 539.675 -5.68059e-06 -5.68059e-06 0 0 0 3.12951 2.16224 0.364389 0.602879 -1 1 1 126 0.126 323.15 0 0 0.01008 -0.00382912 -0.00382912 0 0 0 541.593 -5.68046e-06 -5.68046e-06 0 0 0 3.17276 2.17791 0.376491 0.61836 -1 1 1 127 0.127 323.15 0 0 0.01016 -0.00386487 -0.00386487 0 0 0 543.491 -5.68034e-06 -5.68034e-06 0 0 0 3.21616 2.19348 0.388753 0.633928 -1 1 1 128 0.128 323.15 0 0 0.01024 -0.00390067 -0.00390067 0 0 0 545.37 -5.68023e-06 -5.68023e-06 0 0 0 3.25972 2.20896 0.401172 0.649581 -1 1 1 129 0.129 323.15 0 0 0.01032 -0.00393651 -0.00393651 0 0 0 547.23 -5.68013e-06 -5.68013e-06 0 0 0 3.30342 2.22436 0.413746 0.665317 -1 1 1 130 0.13 323.15 0 0 0.0104 -0.0039724 -0.0039724 0 0 0 549.072 -5.68004e-06 -5.68004e-06 0 0 0 3.34727 2.23966 0.426476 0.681135 -1 1 1 131 0.131 323.15 0 0 0.01048 -0.00400832 -0.00400832 0 0 0 550.897 -5.67995e-06 -5.67995e-06 0 0 0 3.39127 2.25488 0.439357 0.697032 -1 1 1 132 0.132 323.15 0 0 0.01056 -0.00404428 -0.00404428 0 0 0 552.703 -5.67987e-06 -5.67987e-06 0 0 0 3.43542 2.27002 0.45239 0.713006 -1 1 1 133 0.133 323.15 0 0 0.01064 -0.00408028 -0.00408028 0 0 0 554.493 -5.67979e-06 -5.67979e-06 0 0 0 3.4797 2.28508 0.465571 0.729056 -1 1 1 134 0.134 323.15 0 0 0.01072 -0.00411631 -0.00411631 0 0 0 556.266 -5.67972e-06 -5.67972e-06 0 0 0 3.52413 2.30005 0.478901 0.74518 -1 1 1 135 0.135 323.15 0 0 0.0108 -0.00415238 -0.00415238 0 0 0 558.023 -5.67966e-06 -5.67966e-06 0 0 0 3.56871 2.31495 0.492376 0.761376 -1 1 1 136 0.136 323.15 0 0 0.01088 -0.00418849 -0.00418849 0 0 0 559.764 -5.6796e-06 -5.6796e-06 0 0 0 3.61342 2.32978 0.505997 0.777642 -1 1 1 137 0.137 323.15 0 0 0.01096 -0.00422463 -0.00422463 0 0 0 561.49 -5.67954e-06 -5.67954e-06 0 0 0 3.65827 2.34453 0.51976 0.793978 -1 1 1 138 0.138 323.15 0 0 0.01104 -0.00426081 -0.00426081 0 0 0 563.2 -5.67948e-06 -5.67948e-06 0 0 0 3.70325 2.35921 0.533665 0.81038 -1 1 1 139 0.139 323.15 0 0 0.01112 -0.00429702 -0.00429702 0 0 0 564.896 -5.67943e-06 -5.67943e-06 0 0 0 3.74838 2.37382 0.547711 0.826849 -1 1 1 140 0.14 323.15 0 0 0.0112 -0.00433326 -0.00433326 0 0 0 566.577 -5.67939e-06 -5.67939e-06 0 0 0 3.79364 2.38836 0.561895 0.843381 -1 1 1 141 0.141 323.15 0 0 0.01128 -0.00436953 -0.00436953 0 0 0 568.244 -5.67934e-06 -5.67934e-06 0 0 0 3.83903 2.40284 0.576217 0.859977 -1 1 1 142 0.142 323.15 0 0 0.01136 -0.00440584 -0.00440584 0 0 0 569.897 -5.6793e-06 -5.6793e-06 0 0 0 3.88456 2.41725 0.590675 0.876635 -1 1 1 143 0.143 323.15 0 0 0.01144 -0.00444217 -0.00444217 0 0 0 571.536 -5.67926e-06 -5.67926e-06 0 0 0 3.93021 2.43159 0.605268 0.893353 -1 1 1 144 0.144 323.15 0 0 0.01152 -0.00447854 -0.00447854 0 0 0 573.162 -5.67923e-06 -5.67923e-06 0 0 0 3.976 2.44588 0.619995 0.91013 -1 1 1 145 0.145 323.15 0 0 0.0116 -0.00451493 -0.00451493 0 0 0 574.775 -5.67919e-06 -5.67919e-06 0 0 0 4.02192 2.4601 0.634854 0.926965 -1 1 1 146 0.146 323.15 0 0 0.01168 -0.00455135 -0.00455135 0 0 0 576.375 -5.67916e-06 -5.67916e-06 0 0 0 4.06796 2.47426 0.649844 0.943857 -1 1 1 147 0.147 323.15 0 0 0.01176 -0.0045878 -0.0045878 0 0 0 577.963 -5.67913e-06 -5.67913e-06 0 0 0 4.11414 2.48837 0.664963 0.960804 -1 1 1 148 0.148 323.15 0 0 0.01184 -0.00462428 -0.00462428 0 0 0 579.539 -5.6791e-06 -5.6791e-06 0 0 0 4.16044 2.50242 0.680212 0.977806 -1 1 1 149 0.149 323.15 0 0 0.01192 -0.00466078 -0.00466078 0 0 0 581.102 -5.67908e-06 -5.67908e-06 0 0 0 4.20686 2.51642 0.695587 0.994861 -1 1 1 150 0.15 323.15 0 0 0.012 -0.00469732 -0.00469732 0 0 0 582.654 -5.67905e-06 -5.67905e-06 0 0 0 4.25341 2.53036 0.711089 1.01197 -1 1 1 151 0.151 323.15 0 0 0.01208 -0.00473387 -0.00473387 0 0 0 584.194 -5.67903e-06 -5.67903e-06 0 0 0 4.30009 2.54424 0.726716 1.02913 -1 1 1 152 0.152 323.15 0 0 0.01216 -0.00477045 -0.00477045 0 0 0 585.723 -5.67901e-06 -5.67901e-06 0 0 0 4.34688 2.55808 0.742467 1.04634 -1 1 1 153 0.153 323.15 0 0 0.01224 -0.00480706 -0.00480706 0 0 0 587.24 -5.67899e-06 -5.67899e-06 0 0 0 4.3938 2.57187 0.758341 1.06359 -1 1 1 154 0.154 323.15 0 0 0.01232 -0.00484369 -0.00484369 0 0 0 588.747 -5.67897e-06 -5.67897e-06 0 0 0 4.44084 2.5856 0.774337 1.0809 -1 1 1 155 0.155 323.15 0 0 0.0124 -0.00488035 -0.00488035 0 0 0 590.243 -5.67895e-06 -5.67895e-06 0 0 0 4.488 2.59929 0.790453 1.09826 -1 1 1 156 0.156 323.15 0 0 0.01248 -0.00491703 -0.00491703 0 0 0 591.729 -5.67893e-06 -5.67893e-06 0 0 0 4.53528 2.61294 0.806689 1.11566 -1 1 1 157 0.157 323.15 0 0 0.01256 -0.00495373 -0.00495373 0 0 0 593.204 -5.67891e-06 -5.67891e-06 0 0 0 4.58268 2.62653 0.823044 1.1331 -1 1 1 158 0.158 323.15 0 0 0.01264 -0.00499045 -0.00499045 0 0 0 594.669 -5.6789e-06 -5.6789e-06 0 0 0 4.63019 2.64008 0.839516 1.1506 -1 1 1 159 0.159 323.15 0 0 0.01272 -0.0050272 -0.0050272 0 0 0 596.125 -5.67888e-06 -5.67888e-06 0 0 0 4.67783 2.65359 0.856105 1.16813 -1 1 1 160 0.16 323.15 0 0 0.0128 -0.00506397 -0.00506397 0 0 0 597.57 -5.67887e-06 -5.67887e-06 0 0 0 4.72557 2.66705 0.87281 1.18571 -1 1 1 161 0.161 323.15 0 0 0.01288 -0.00510075 -0.00510075 0 0 0 599.006 -5.67886e-06 -5.67886e-06 0 0 0 4.77344 2.68047 0.88963 1.20333 -1 1 1 162 0.162 323.15 0 0 0.01296 -0.00513757 -0.00513757 0 0 0 600.433 -5.67884e-06 -5.67884e-06 0 0 0 4.82141 2.69386 0.906563 1.221 -1 1 1 163 0.163 323.15 0 0 0.01304 -0.0051744 -0.0051744 0 0 0 601.85 -5.67883e-06 -5.67883e-06 0 0 0 4.8695 2.7072 0.923609 1.2387 -1 1 1 164 0.164 323.15 0 0 0.01312 -0.00521125 -0.00521125 0 0 0 603.258 -5.67882e-06 -5.67882e-06 0 0 0 4.91771 2.7205 0.940767 1.25644 -1 1 1 165 0.165 323.15 0 0 0.0132 -0.00524812 -0.00524812 0 0 0 604.657 -5.67881e-06 -5.67881e-06 0 0 0 4.96603 2.73376 0.958036 1.27423 -1 1 1 166 0.166 323.15 0 0 0.01328 -0.00528501 -0.00528501 0 0 0 606.048 -5.6788e-06 -5.6788e-06 0 0 0 5.01445 2.74699 0.975415 1.29205 -1 1 1 167 0.167 323.15 0 0 0.01336 -0.00532192 -0.00532192 0 0 0 607.43 -5.67879e-06 -5.67879e-06 0 0 0 5.06299 2.76018 0.992904 1.30991 -1 1 1 168 0.168 323.15 0 0 0.01344 -0.00535885 -0.00535885 0 0 0 608.803 -5.67878e-06 -5.67878e-06 0 0 0 5.11164 2.77333 1.0105 1.32781 -1 1 1 169 0.169 323.15 0 0 0.01352 -0.0053958 -0.0053958 0 0 0 610.168 -5.67877e-06 -5.67877e-06 0 0 0 5.1604 2.78645 1.02821 1.34575 -1 1 1 170 0.17 323.15 0 0 0.0136 -0.00543277 -0.00543277 0 0 0 611.525 -5.67876e-06 -5.67876e-06 0 0 0 5.20927 2.79953 1.04602 1.36372 -1 1 1 171 0.171 323.15 0 0 0.01368 -0.00546975 -0.00546975 0 0 0 612.874 -5.67875e-06 -5.67875e-06 0 0 0 5.25825 2.81258 1.06393 1.38173 -1 1 1 172 0.172 323.15 0 0 0.01376 -0.00550675 -0.00550675 0 0 0 614.215 -5.67875e-06 -5.67875e-06 0 0 0 5.30733 2.82559 1.08196 1.39978 -1 1 1 173 0.173 323.15 0 0 0.01384 -0.00554377 -0.00554377 0 0 0 615.548 -5.67874e-06 -5.67874e-06 0 0 0 5.35652 2.83858 1.10008 1.41786 -1 1 1 174 0.174 323.15 0 0 0.01392 -0.00558081 -0.00558081 0 0 0 616.873 -5.67873e-06 -5.67873e-06 0 0 0 5.40582 2.85153 1.11831 1.43597 -1 1 1 175 0.175 323.15 0 0 0.014 -0.00561786 -0.00561786 0 0 0 618.19 -5.67873e-06 -5.67873e-06 0 0 0 5.45522 2.86445 1.13665 1.45412 -1 1 1 176 0.176 323.15 0 0 0.01408 -0.00565493 -0.00565493 0 0 0 619.501 -5.67872e-06 -5.67872e-06 0 0 0 5.50473 2.87735 1.15508 1.4723 -1 1 1 177 0.177 323.15 0 0 0.01416 -0.00569202 -0.00569202 0 0 0 620.804 -5.67871e-06 -5.67871e-06 0 0 0 5.55434 2.89021 1.17362 1.49051 -1 1 1 178 0.178 323.15 0 0 0.01424 -0.00572912 -0.00572912 0 0 0 622.099 -5.67871e-06 -5.67871e-06 0 0 0 5.60405 2.90304 1.19226 1.50875 -1 1 1 179 0.179 323.15 0 0 0.01432 -0.00576624 -0.00576624 0 0 0 623.388 -5.6787e-06 -5.6787e-06 0 0 0 5.65387 2.91585 1.21099 1.52703 -1 1 1 180 0.18 323.15 0 0 0.0144 -0.00580338 -0.00580338 0 0 0 624.669 -5.6787e-06 -5.6787e-06 0 0 0 5.7038 2.92863 1.22983 1.54534 -1 1 1 181 0.181 323.15 0 0 0.01448 -0.00584053 -0.00584053 0 0 0 625.944 -5.67869e-06 -5.67869e-06 0 0 0 5.75382 2.94138 1.24877 1.56368 -1 1 1 182 0.182 323.15 0 0 0.01456 -0.00587769 -0.00587769 0 0 0 627.212 -5.67869e-06 -5.67869e-06 0 0 0 5.80395 2.95411 1.2678 1.58204 -1 1 1 183 0.183 323.15 0 0 0.01464 -0.00591487 -0.00591487 0 0 0 628.473 -5.67868e-06 -5.67868e-06 0 0 0 5.85417 2.9668 1.28693 1.60044 -1 1 1 184 0.184 323.15 0 0 0.01472 -0.00595207 -0.00595207 0 0 0 629.727 -5.67868e-06 -5.67868e-06 0 0 0 5.9045 2.97948 1.30615 1.61887 -1 1 1 185 0.185 323.15 0 0 0.0148 -0.00598928 -0.00598928 0 0 0 630.975 -5.67867e-06 -5.67867e-06 0 0 0 5.95493 2.99213 1.32548 1.63733 -1 1 1 186 0.186 323.15 0 0 0.01488 -0.0060265 -0.0060265 0 0 0 632.217 -5.67867e-06 -5.67867e-06 0 0 0 6.00546 3.00475 1.34489 1.65581 -1 1 1 187 0.187 323.15 0 0 0.01496 -0.00606374 -0.00606374 0 0 0 633.452 -5.67867e-06 -5.67867e-06 0 0 0 6.05608 3.01736 1.36441 1.67432 -1 1 1 188 0.188 323.15 0 0 0.01504 -0.00610099 -0.00610099 0 0 0 634.681 -5.67866e-06 -5.67866e-06 0 0 0 6.10681 3.02994 1.38401 1.69286 -1 1 1 189 0.189 323.15 0 0 0.01512 -0.00613826 -0.00613826 0 0 0 635.904 -5.67866e-06 -5.67866e-06 0 0 0 6.15763 3.04249 1.40371 1.71143 -1 1 1 190 0.19 323.15 0 0 0.0152 -0.00617554 -0.00617554 0 0 0 637.121 -5.67866e-06 -5.67866e-06 0 0 0 6.20855 3.05503 1.4235 1.73003 -1 1 1 191 0.191 323.15 0 0 0.01528 -0.00621283 -0.00621283 0 0 0 638.332 -5.67865e-06 -5.67865e-06 0 0 0 6.25957 3.06754 1.44338 1.74865 -1 1 1 192 0.192 323.15 0 0 0.01536 -0.00625014 -0.00625014 0 0 0 639.537 -5.67865e-06 -5.67865e-06 0 0 0 6.31069 3.08003 1.46336 1.7673 -1 1 1 193 0.193 323.15 0 0 0.01544 -0.00628746 -0.00628746 0 0 0 640.736 -5.67865e-06 -5.67865e-06 0 0 0 6.3619 3.0925 1.48343 1.78597 -1 1 1 194 0.194 323.15 0 0 0.01552 -0.00632479 -0.00632479 0 0 0 641.93 -5.67864e-06 -5.67864e-06 0 0 0 6.41321 3.10495 1.50358 1.80467 -1 1 1 195 0.195 323.15 0 0 0.0156 -0.00636213 -0.00636213 0 0 0 643.117 -5.67864e-06 -5.67864e-06 0 0 0 6.46461 3.11739 1.52383 1.82339 -1 1 1 196 0.196 323.15 0 0 0.01568 -0.00639949 -0.00639949 0 0 0 644.3 -5.67864e-06 -5.67864e-06 0 0 0 6.5161 3.1298 1.54416 1.84214 -1 1 1 197 0.197 323.15 0 0 0.01576 -0.00643686 -0.00643686 0 0 0 645.476 -5.67864e-06 -5.67864e-06 0 0 0 6.56769 3.14219 1.56459 1.86091 -1 1 1 198 0.198 323.15 0 0 0.01584 -0.00647424 -0.00647424 0 0 0 646.647 -5.67863e-06 -5.67863e-06 0 0 0 6.61938 3.15457 1.5851 1.87971 -1 1 1 199 0.199 323.15 0 0 0.01592 -0.00651163 -0.00651163 0 0 0 647.813 -5.67863e-06 -5.67863e-06 0 0 0 6.67116 3.16693 1.6057 1.89853 -1 1 1 200 0.2 323.15 0 0 0.016 -0.00654904 -0.00654904 0 0 0 648.974 -5.67863e-06 -5.67863e-06 0 0 0 6.72303 3.17927 1.62638 1.91738 -1 1 1 201 0.201 323.15 0 0 0.01608 -0.00658645 -0.00658645 0 0 0 650.129 -5.67863e-06 -5.67863e-06 0 0 0 6.77499 3.19159 1.64716 1.93625 -1 1 1 202 0.202 323.15 0 0 0.01616 -0.00662388 -0.00662388 0 0 0 651.28 -5.67862e-06 -5.67862e-06 0 0 0 6.82705 3.2039 1.66801 1.95514 -1 1 1 203 0.203 323.15 0 0 0.01624 -0.00666132 -0.00666132 0 0 0 652.425 -5.67862e-06 -5.67862e-06 0 0 0 6.8792 3.21619 1.68896 1.97405 -1 1 1 204 0.204 323.15 0 0 0.01632 -0.00669877 -0.00669877 0 0 0 653.565 -5.67862e-06 -5.67862e-06 0 0 0 6.93144 3.22847 1.70999 1.99299 -1 1 1 205 0.205 323.15 0 0 0.0164 -0.00673624 -0.00673624 0 0 0 654.7 -5.67862e-06 -5.67862e-06 0 0 0 6.98377 3.24072 1.7311 2.01194 -1 1 1 206 0.206 323.15 0 0 0.01648 -0.00677371 -0.00677371 0 0 0 655.83 -5.67862e-06 -5.67862e-06 0 0 0 7.03619 3.25297 1.7523 2.03092 -1 1 1 207 0.207 323.15 0 0 0.01656 -0.00681119 -0.00681119 0 0 0 656.956 -5.67861e-06 -5.67862e-06 0 0 0 7.0887 3.2652 1.77358 2.04992 -1 1 1 208 0.208 323.15 0 0 0.01664 -0.00684869 -0.00684869 0 0 0 658.076 -5.67861e-06 -5.67861e-06 0 0 0 7.1413 3.27741 1.79494 2.06895 -1 1 1 209 0.209 323.15 0 0 0.01672 -0.00688619 -0.00688619 0 0 0 659.192 -5.67861e-06 -5.67861e-06 0 0 0 7.19399 3.28962 1.81639 2.08799 -1 1 1 210 0.21 323.15 0 0 0.0168 -0.00692371 -0.00692371 0 0 0 660.303 -5.67861e-06 -5.67861e-06 0 0 0 7.24677 3.3018 1.83792 2.10705 -1 1 1 211 0.211 323.15 0 0 0.01688 -0.00696123 -0.00696123 0 0 0 661.41 -5.67861e-06 -5.67861e-06 0 0 0 7.29964 3.31398 1.85952 2.12614 -1 1 1 212 0.212 323.15 0 0 0.01696 -0.00699877 -0.00699877 0 0 0 662.512 -5.67861e-06 -5.67861e-06 0 0 0 7.3526 3.32614 1.88122 2.14524 -1 1 1 213 0.213 323.15 0 0 0.01704 -0.00703632 -0.00703632 0 0 0 663.609 -5.67861e-06 -5.67861e-06 0 0 0 7.40564 3.33829 1.90299 2.16437 -1 1 1 214 0.214 323.15 0 0 0.01712 -0.00707387 -0.00707387 0 0 0 664.703 -5.6786e-06 -5.67861e-06 0 0 0 7.45878 3.35043 1.92484 2.18351 -1 1 1 215 0.215 323.15 0 0 0.0172 -0.00711144 -0.00711144 0 0 0 665.791 -5.6786e-06 -5.6786e-06 0 0 0 7.512 3.36255 1.94677 2.20268 -1 1 1 216 0.216 323.15 0 0 0.01728 -0.00714901 -0.00714901 0 0 0 666.876 -5.6786e-06 -5.6786e-06 0 0 0 7.5653 3.37466 1.96878 2.22186 -1 1 1 217 0.217 323.15 0 0 0.01736 -0.0071866 -0.0071866 0 0 0 667.956 -5.6786e-06 -5.6786e-06 0 0 0 7.6187 3.38677 1.99087 2.24106 -1 1 1 218 0.218 323.15 0 0 0.01744 -0.00722419 -0.00722419 0 0 0 669.032 -5.6786e-06 -5.6786e-06 0 0 0 7.67217 3.39886 2.01304 2.26028 -1 1 1 219 0.219 323.15 0 0 0.01752 -0.0072618 -0.0072618 0 0 0 670.103 -5.6786e-06 -5.6786e-06 0 0 0 7.72574 3.41094 2.03528 2.27952 -1 1 1 220 0.22 323.15 0 0 0.0176 -0.00729941 -0.00729941 0 0 0 671.171 -5.6786e-06 -5.6786e-06 0 0 0 7.77939 3.42301 2.0576 2.29878 -1 1 1 221 0.221 323.15 0 0 0.01768 -0.00733703 -0.00733703 0 0 0 672.234 -5.6786e-06 -5.6786e-06 0 0 0 7.83313 3.43507 2.08 2.31806 -1 1 1 222 0.222 323.15 0 0 0.01776 -0.00737466 -0.00737466 0 0 0 673.294 -5.6786e-06 -5.6786e-06 0 0 0 7.88695 3.44712 2.10248 2.33735 -1 1 1 223 0.223 323.15 0 0 0.01784 -0.00741231 -0.00741231 0 0 0 674.349 -5.67859e-06 -5.67859e-06 0 0 0 7.94085 3.45916 2.12504 2.35666 -1 1 1 224 0.224 323.15 0 0 0.01792 -0.00744995 -0.00744995 0 0 0 675.4 -5.67859e-06 -5.67859e-06 0 0 0 7.99484 3.47119 2.14767 2.37599 -1 1 1 225 0.225 323.15 0 0 0.018 -0.00748761 -0.00748761 0 0 0 676.448 -5.67859e-06 -5.67859e-06 0 0 0 8.04892 3.48321 2.17037 2.39534 -1 1 1 226 0.226 323.15 0 0 0.01808 -0.00752528 -0.00752528 0 0 0 677.491 -5.67859e-06 -5.67859e-06 0 0 0 8.10308 3.49522 2.19315 2.4147 -1 1 1 227 0.227 323.15 0 0 0.01816 -0.00756295 -0.00756295 0 0 0 678.531 -5.67859e-06 -5.67859e-06 0 0 0 8.15732 3.50722 2.21601 2.43409 -1 1 1 228 0.228 323.15 0 0 0.01824 -0.00760064 -0.00760064 0 0 0 679.567 -5.67859e-06 -5.67859e-06 0 0 0 8.21164 3.51922 2.23894 2.45348 -1 1 1 229 0.229 323.15 0 0 0.01832 -0.00763833 -0.00763833 0 0 0 680.599 -5.67859e-06 -5.67859e-06 0 0 0 8.26605 3.53121 2.26194 2.4729 -1 1 1 230 0.23 323.15 0 0 0.0184 -0.00767603 -0.00767603 0 0 0 681.628 -5.67859e-06 -5.67859e-06 0 0 0 8.32054 3.54319 2.28502 2.49233 -1 1 1 231 0.231 323.15 0 0 0.01848 -0.00771374 -0.00771374 0 0 0 682.653 -5.67859e-06 -5.67859e-06 0 0 0 8.37511 3.55516 2.30817 2.51178 -1 1 1 232 0.232 323.15 0 0 0.01856 -0.00775146 -0.00775146 0 0 0 683.674 -5.67859e-06 -5.67859e-06 0 0 0 8.42976 3.56713 2.33139 2.53124 -1 1 1 233 0.233 323.15 0 0 0.01864 -0.00778918 -0.00778918 0 0 0 684.692 -5.67859e-06 -5.67859e-06 0 0 0 8.4845 3.57909 2.35469 2.55072 -1 1 1 234 0.234 323.15 0 0 0.01872 -0.00782691 -0.00782691 0 0 0 685.706 -5.67859e-06 -5.67859e-06 0 0 0 8.53931 3.59104 2.37805 2.57022 -1 1 1 235 0.235 323.15 0 0 0.0188 -0.00786465 -0.00786465 0 0 0 686.716 -5.67858e-06 -5.67859e-06 0 0 0 8.59421 3.60298 2.40149 2.58973 -1 1 1 236 0.236 323.15 0 0 0.01888 -0.0079024 -0.0079024 0 0 0 687.723 -5.67858e-06 -5.67858e-06 0 0 0 8.64919 3.61492 2.42501 2.60926 -1 1 1 237 0.237 323.15 0 0 0.01896 -0.00794016 -0.00794016 0 0 0 688.727 -5.67858e-06 -5.67858e-06 0 0 0 8.70424 3.62686 2.44859 2.6288 -1 1 1 238 0.238 323.15 0 0 0.01904 -0.00797792 -0.00797792 0 0 0 689.727 -5.67858e-06 -5.67858e-06 0 0 0 8.75938 3.63878 2.47224 2.64835 -1 1 1 239 0.239 323.15 0 0 0.01912 -0.00801569 -0.00801569 0 0 0 690.724 -5.67858e-06 -5.67858e-06 0 0 0 8.8146 3.65071 2.49597 2.66793 -1 1 1 240 0.24 323.15 0 0 0.0192 -0.00805347 -0.00805347 0 0 0 691.717 -5.67858e-06 -5.67858e-06 0 0 0 8.8699 3.66262 2.51976 2.68751 -1 1 1 241 0.241 323.15 0 0 0.01928 -0.00809126 -0.00809126 0 0 0 692.708 -5.67858e-06 -5.67858e-06 0 0 0 8.92527 3.67453 2.54363 2.70712 -1 1 1 242 0.242 323.15 0 0 0.01936 -0.00812905 -0.00812905 0 0 0 693.695 -5.67858e-06 -5.67858e-06 0 0 0 8.98073 3.68644 2.56756 2.72673 -1 1 1 243 0.243 323.15 0 0 0.01944 -0.00816685 -0.00816685 0 0 0 694.678 -5.67858e-06 -5.67858e-06 0 0 0 9.03627 3.69834 2.59156 2.74636 -1 1 1 244 0.244 323.15 0 0 0.01952 -0.00820466 -0.00820466 0 0 0 695.659 -5.67858e-06 -5.67858e-06 0 0 0 9.09188 3.71024 2.61564 2.76601 -1 1 1 245 0.245 323.15 0 0 0.0196 -0.00824248 -0.00824248 0 0 0 696.636 -5.67858e-06 -5.67858e-06 0 0 0 9.14757 3.72213 2.63978 2.78567 -1 1 1 246 0.246 323.15 0 0 0.01968 -0.0082803 -0.0082803 0 0 0 697.61 -5.67858e-06 -5.67858e-06 0 0 0 9.20334 3.73402 2.66398 2.80534 -1 1 1 247 0.247 323.15 0 0 0.01976 -0.00831813 -0.00831813 0 0 0 698.581 -5.67858e-06 -5.67858e-06 0 0 0 9.25919 3.7459 2.68826 2.82503 -1 1 1 248 0.248 323.15 0 0 0.01984 -0.00835596 -0.00835596 0 0 0 699.549 -5.67858e-06 -5.67858e-06 0 0 0 9.31511 3.75778 2.71261 2.84473 -1 1 1 249 0.249 323.15 0 0 0.01992 -0.00839381 -0.00839381 0 0 0 700.514 -5.67858e-06 -5.67858e-06 0 0 0 9.37112 3.76966 2.73702 2.86444 -1 1 1 250 0.25 323.15 0 0 0.02 -0.00843166 -0.00843166 0 0 0 701.476 -5.67858e-06 -5.67858e-06 0 0 0 9.4272 3.78153 2.7615 2.88417 -1 1 1 251 0.251 323.15 0 0 0.02008 -0.00846951 -0.00846951 0 0 0 702.435 -5.67858e-06 -5.67858e-06 0 0 0 9.48335 3.7934 2.78604 2.90391 -1 1 1 252 0.252 323.15 0 0 0.02016 -0.00850737 -0.00850737 0 0 0 703.39 -5.67858e-06 -5.67858e-06 0 0 0 9.53958 3.80527 2.81065 2.92366 -1 1 1 253 0.253 323.15 0 0 0.02024 -0.00854524 -0.00854524 0 0 0 704.343 -5.67858e-06 -5.67858e-06 0 0 0 9.59589 3.81713 2.83533 2.94343 -1 1 1 254 0.254 323.15 0 0 0.02032 -0.00858312 -0.00858312 0 0 0 705.293 -5.67858e-06 -5.67858e-06 0 0 0 9.65228 3.82899 2.86008 2.96321 -1 1 1 255 0.255 323.15 0 0 0.0204 -0.008621 -0.008621 0 0 0 706.241 -5.67858e-06 -5.67858e-06 0 0 0 9.70874 3.84085 2.88489 2.983 -1 1 1 256 0.256 323.15 0 0 0.02048 -0.00865889 -0.00865889 0 0 0 707.185 -5.67858e-06 -5.67858e-06 0 0 0 9.76528 3.85271 2.90976 3.00281 -1 1 1 257 0.257 323.15 0 0 0.02056 -0.00869679 -0.00869679 0 0 0 708.126 -5.67857e-06 -5.67858e-06 0 0 0 9.82189 3.86456 2.9347 3.02263 -1 1 1 258 0.258 323.15 0 0 0.02064 -0.00873469 -0.00873469 0 0 0 709.065 -5.67857e-06 -5.67857e-06 0 0 0 9.87858 3.87642 2.9597 3.04246 -1 1 1 259 0.259 323.15 0 0 0.02072 -0.0087726 -0.0087726 0 0 0 710.001 -5.67857e-06 -5.67857e-06 0 0 0 9.93534 3.88827 2.98477 3.0623 -1 1 1 260 0.26 323.15 0 0 0.0208 -0.00881051 -0.00881051 0 0 0 710.934 -5.67857e-06 -5.67857e-06 0 0 0 9.99218 3.90012 3.00991 3.08215 -1 1 1 261 0.261 323.15 0 0 0.02088 -0.00884843 -0.00884843 0 0 0 711.864 -5.67857e-06 -5.67857e-06 0 0 0 10.0491 3.91197 3.0351 3.10202 -1 1 1 262 0.262 323.15 0 0 0.02096 -0.00888636 -0.00888636 0 0 0 712.792 -5.67857e-06 -5.67857e-06 0 0 0 10.1061 3.92381 3.06036 3.1219 -1 1 1 263 0.263 323.15 0 0 0.02104 -0.00892429 -0.00892429 0 0 0 713.717 -5.67857e-06 -5.67857e-06 0 0 0 10.1631 3.93566 3.08569 3.14179 -1 1 1 264 0.264 323.15 0 0 0.02112 -0.00896222 -0.00896222 0 0 0 714.639 -5.67857e-06 -5.67857e-06 0 0 0 10.2203 3.9475 3.11107 3.1617 -1 1 1 265 0.265 323.15 0 0 0.0212 -0.00900017 -0.00900017 0 0 0 715.559 -5.67857e-06 -5.67857e-06 0 0 0 10.2775 3.95934 3.13652 3.18161 -1 1 1 266 0.266 323.15 0 0 0.02128 -0.00903812 -0.00903812 0 0 0 716.476 -5.67857e-06 -5.67857e-06 0 0 0 10.3348 3.97119 3.16204 3.20154 -1 1 1 267 0.267 323.15 0 0 0.02136 -0.00907607 -0.00907607 0 0 0 717.391 -5.67857e-06 -5.67857e-06 0 0 0 10.3921 3.98303 3.18761 3.22147 -1 1 1 268 0.268 323.15 0 0 0.02144 -0.00911403 -0.00911403 0 0 0 718.303 -5.67857e-06 -5.67857e-06 0 0 0 10.4495 3.99487 3.21325 3.24142 -1 1 1 269 0.269 323.15 0 0 0.02152 -0.009152 -0.009152 0 0 0 719.212 -5.67857e-06 -5.67857e-06 0 0 0 10.507 4.00671 3.23895 3.26138 -1 1 1 270 0.27 323.15 0 0 0.0216 -0.00918997 -0.00918997 0 0 0 720.119 -5.67857e-06 -5.67857e-06 0 0 0 10.5646 4.01855 3.26471 3.28136 -1 1 1 271 0.271 323.15 0 0 0.02168 -0.00922795 -0.00922795 0 0 0 721.023 -5.67857e-06 -5.67857e-06 0 0 0 10.6223 4.03039 3.29053 3.30134 -1 1 1 272 0.272 323.15 0 0 0.02176 -0.00926594 -0.00926594 0 0 0 721.925 -5.67857e-06 -5.67857e-06 0 0 0 10.68 4.04224 3.31641 3.32133 -1 1 1 273 0.273 323.15 0 0 0.02184 -0.00930392 -0.00930392 0 0 0 722.825 -5.67857e-06 -5.67857e-06 0 0 0 10.7378 4.05408 3.34236 3.34134 -1 1 1 274 0.274 323.15 0 0 0.02192 -0.00934192 -0.00934192 0 0 0 723.722 -5.67857e-06 -5.67857e-06 0 0 0 10.7956 4.06592 3.36836 3.36135 -1 1 1 275 0.275 323.15 0 0 0.022 -0.00937992 -0.00937992 0 0 0 724.616 -5.67857e-06 -5.67857e-06 0 0 0 10.8536 4.07776 3.39442 3.38138 -1 1 1 276 0.276 323.15 0 0 0.02208 -0.00941792 -0.00941792 0 0 0 725.508 -5.67857e-06 -5.67857e-06 0 0 0 10.9116 4.08961 3.42055 3.40142 -1 1 1 277 0.277 323.15 0 0 0.02216 -0.00945593 -0.00945593 0 0 0 726.398 -5.67857e-06 -5.67857e-06 0 0 0 10.9696 4.10145 3.44673 3.42146 -1 1 1 278 0.278 323.15 0 0 0.02224 -0.00949395 -0.00949395 0 0 0 727.286 -5.67857e-06 -5.67857e-06 0 0 0 11.0278 4.11329 3.47298 3.44152 -1 1 1 279 0.279 323.15 0 0 0.02232 -0.00953197 -0.00953197 0 0 0 728.171 -5.67857e-06 -5.67857e-06 0 0 0 11.086 4.12514 3.49928 3.46159 -1 1 1 280 0.28 323.15 0 0 0.0224 -0.00957 -0.00957 0 0 0 729.054 -5.67857e-06 -5.67857e-06 0 0 0 11.1443 4.13699 3.52564 3.48167 -1 1 1 281 0.281 323.15 0 0 0.02248 -0.00960803 -0.00960803 0 0 0 729.934 -5.67857e-06 -5.67857e-06 0 0 0 11.2027 4.14884 3.55207 3.50176 -1 1 1 282 0.282 323.15 0 0 0.02256 -0.00964607 -0.00964607 0 0 0 730.812 -5.67857e-06 -5.67857e-06 0 0 0 11.2611 4.16069 3.57855 3.52186 -1 1 1 283 0.283 323.15 0 0 0.02264 -0.00968411 -0.00968411 0 0 0 731.688 -5.67857e-06 -5.67857e-06 0 0 0 11.3196 4.17254 3.60509 3.54196 -1 1 1 284 0.284 323.15 0 0 0.02272 -0.00972215 -0.00972215 0 0 0 732.562 -5.67857e-06 -5.67857e-06 0 0 0 11.3782 4.18439 3.63168 3.56208 -1 1 1 285 0.285 323.15 0 0 0.0228 -0.0097602 -0.0097602 0 0 0 733.434 -5.67857e-06 -5.67857e-06 0 0 0 11.4368 4.19625 3.65834 3.58221 -1 1 1 286 0.286 323.15 0 0 0.02288 -0.00979826 -0.00979826 0 0 0 734.303 -5.67857e-06 -5.67857e-06 0 0 0 11.4955 4.20811 3.68505 3.60235 -1 1 1 287 0.287 323.15 0 0 0.02296 -0.00983632 -0.00983632 0 0 0 735.17 -5.67857e-06 -5.67857e-06 0 0 0 11.5543 4.21997 3.71182 3.6225 -1 1 1 288 0.288 323.15 0 0 0.02304 -0.00987439 -0.00987439 0 0 0 736.035 -5.67857e-06 -5.67857e-06 0 0 0 11.6131 4.23183 3.73865 3.64266 -1 1 1 289 0.289 323.15 0 0 0.02312 -0.00991246 -0.00991246 0 0 0 736.898 -5.67857e-06 -5.67857e-06 0 0 0 11.6721 4.24369 3.76554 3.66282 -1 1 1 290 0.29 323.15 0 0 0.0232 -0.00995054 -0.00995054 0 0 0 737.759 -5.67857e-06 -5.67857e-06 0 0 0 11.731 4.25556 3.79248 3.683 -1 1 1 291 0.291 323.15 0 0 0.02328 -0.00998862 -0.00998862 0 0 0 738.617 -5.67857e-06 -5.67857e-06 0 0 0 11.7901 4.26743 3.81948 3.70319 -1 1 1 292 0.292 323.15 0 0 0.02336 -0.0100267 -0.0100267 0 0 0 739.474 -5.67857e-06 -5.67857e-06 0 0 0 11.8492 4.2793 3.84654 3.72338 -1 1 1 293 0.293 323.15 0 0 0.02344 -0.0100648 -0.0100648 0 0 0 740.328 -5.67857e-06 -5.67857e-06 0 0 0 11.9084 4.29117 3.87365 3.74359 -1 1 1 294 0.294 323.15 0 0 0.02352 -0.0101029 -0.0101029 0 0 0 741.18 -5.67857e-06 -5.67857e-06 0 0 0 11.9677 4.30305 3.90082 3.7638 -1 1 1 295 0.295 323.15 0 0 0.0236 -0.010141 -0.010141 0 0 0 742.031 -5.67857e-06 -5.67857e-06 0 0 0 12.027 4.31493 3.92804 3.78402 -1 1 1 296 0.296 323.15 0 0 0.02368 -0.0101791 -0.0101791 0 0 0 742.879 -5.67857e-06 -5.67857e-06 0 0 0 12.0864 4.32681 3.95532 3.80426 -1 1 1 297 0.297 323.15 0 0 0.02376 -0.0102172 -0.0102172 0 0 0 743.725 -5.67857e-06 -5.67857e-06 0 0 0 12.1459 4.3387 3.98266 3.8245 -1 1 1 298 0.298 323.15 0 0 0.02384 -0.0102553 -0.0102553 0 0 0 744.569 -5.67857e-06 -5.67857e-06 0 0 0 12.2054 4.35059 4.01005 3.84475 -1 1 1 299 0.299 323.15 0 0 0.02392 -0.0102934 -0.0102934 0 0 0 745.412 -5.67857e-06 -5.67857e-06 0 0 0 12.265 4.36248 4.0375 3.86501 -1 1 1 300 0.3 323.15 0 0 0.024 -0.0103315 -0.0103315 0 0 0 746.252 -5.67857e-06 -5.67857e-06 0 0 0 12.3247 4.37438 4.065 3.88528 -1 1 1 301 0.301 323.15 0 0 0.02408 -0.0103697 -0.0103697 0 0 0 747.09 -5.67857e-06 -5.67857e-06 0 0 0 12.3844 4.38628 4.09256 3.90555 -1 1 1 302 0.302 323.15 0 0 0.02416 -0.0104078 -0.0104078 0 0 0 747.926 -5.67857e-06 -5.67857e-06 0 0 0 12.4442 4.39819 4.12017 3.92584 -1 1 1 303 0.303 323.15 0 0 0.02424 -0.0104459 -0.0104459 0 0 0 748.761 -5.67857e-06 -5.67857e-06 0 0 0 12.5041 4.41009 4.14784 3.94613 -1 1 1 304 0.304 323.15 0 0 0.02432 -0.0104841 -0.0104841 0 0 0 749.593 -5.67857e-06 -5.67857e-06 0 0 0 12.564 4.42201 4.17556 3.96643 -1 1 1 305 0.305 323.15 0 0 0.0244 -0.0105222 -0.0105222 0 0 0 750.424 -5.67857e-06 -5.67857e-06 0 0 0 12.624 4.43392 4.20333 3.98674 -1 1 1 306 0.306 323.15 0 0 0.02448 -0.0105604 -0.0105604 0 0 0 751.253 -5.67857e-06 -5.67857e-06 0 0 0 12.6841 4.44584 4.23116 4.00706 -1 1 1 307 0.307 323.15 0 0 0.02456 -0.0105985 -0.0105985 0 0 0 752.079 -5.67857e-06 -5.67857e-06 0 0 0 12.7442 4.45777 4.25904 4.02739 -1 1 1 308 0.308 323.15 0 0 0.02464 -0.0106367 -0.0106367 0 0 0 752.904 -5.67857e-06 -5.67857e-06 0 0 0 12.8044 4.46969 4.28698 4.04772 -1 1 1 309 0.309 323.15 0 0 0.02472 -0.0106748 -0.0106748 0 0 0 753.727 -5.67857e-06 -5.67857e-06 0 0 0 12.8647 4.48163 4.31497 4.06807 -1 1 1 310 0.31 323.15 0 0 0.0248 -0.010713 -0.010713 0 0 0 754.549 -5.67857e-06 -5.67857e-06 0 0 0 12.925 4.49356 4.34301 4.08842 -1 1 1 311 0.311 323.15 0 0 0.02488 -0.0107512 -0.0107512 0 0 0 755.368 -5.67857e-06 -5.67857e-06 0 0 0 12.9854 4.5055 4.3711 4.10878 -1 1 1 312 0.312 323.15 0 0 0.02496 -0.0107893 -0.0107893 0 0 0 756.186 -5.67857e-06 -5.67857e-06 0 0 0 13.0459 4.51745 4.39925 4.12915 -1 1 1 313 0.313 323.15 0 0 0.02504 -0.0108275 -0.0108275 0 0 0 757.002 -5.67857e-06 -5.67857e-06 0 0 0 13.1064 4.5294 4.42745 4.14952 -1 1 1 314 0.314 323.15 0 0 0.02512 -0.0108657 -0.0108657 0 0 0 757.816 -5.67857e-06 -5.67857e-06 0 0 0 13.167 4.54136 4.4557 4.16991 -1 1 1 315 0.315 323.15 0 0 0.0252 -0.0109039 -0.0109039 0 0 0 758.628 -5.67857e-06 -5.67857e-06 0 0 0 13.2276 4.55332 4.48401 4.1903 -1 1 1 316 0.316 323.15 0 0 0.02528 -0.0109421 -0.0109421 0 0 0 759.439 -5.67857e-06 -5.67857e-06 0 0 0 13.2884 4.56528 4.51237 4.2107 -1 1 1 317 0.317 323.15 0 0 0.02536 -0.0109803 -0.0109803 0 0 0 760.247 -5.67857e-06 -5.67857e-06 0 0 0 13.3491 4.57726 4.54078 4.23111 -1 1 1 318 0.318 323.15 0 0 0.02544 -0.0110185 -0.0110185 0 0 0 761.054 -5.67857e-06 -5.67857e-06 0 0 0 13.41 4.58923 4.56924 4.25152 -1 1 1 319 0.319 323.15 0 0 0.02552 -0.0110567 -0.0110567 0 0 0 761.86 -5.67857e-06 -5.67857e-06 0 0 0 13.4709 4.60121 4.59775 4.27194 -1 1 1 320 0.32 323.15 0 0 0.0256 -0.0110949 -0.0110949 0 0 0 762.663 -5.67857e-06 -5.67857e-06 0 0 0 13.5319 4.6132 4.62631 4.29238 -1 1 1 321 0.321 323.15 0 0 0.02568 -0.0111331 -0.0111331 0 0 0 763.465 -5.67857e-06 -5.67857e-06 0 0 0 13.5929 4.62519 4.65493 4.31281 -1 1 1 322 0.322 323.15 0 0 0.02576 -0.0111713 -0.0111713 0 0 0 764.266 -5.67857e-06 -5.67857e-06 0 0 0 13.654 4.63719 4.6836 4.33326 -1 1 1 323 0.323 323.15 0 0 0.02584 -0.0112095 -0.0112095 0 0 0 765.064 -5.67857e-06 -5.67857e-06 0 0 0 13.7152 4.64919 4.71231 4.35371 -1 1 1 324 0.324 323.15 0 0 0.02592 -0.0112477 -0.0112477 0 0 0 765.861 -5.67857e-06 -5.67857e-06 0 0 0 13.7765 4.6612 4.74108 4.37417 -1 1 1 325 0.325 323.15 0 0 0.026 -0.0112859 -0.0112859 0 0 0 766.657 -5.67857e-06 -5.67857e-06 0 0 0 13.8378 4.67321 4.7699 4.39464 -1 1 1 326 0.326 323.15 0 0 0.02608 -0.0113242 -0.0113242 0 0 0 767.45 -5.67857e-06 -5.67857e-06 0 0 0 13.8991 4.68523 4.79877 4.41511 -1 1 1 327 0.327 323.15 0 0 0.02616 -0.0113624 -0.0113624 0 0 0 768.242 -5.67857e-06 -5.67857e-06 0 0 0 13.9605 4.69726 4.82769 4.43559 -1 1 1 328 0.328 323.15 0 0 0.02624 -0.0114006 -0.0114006 0 0 0 769.033 -5.67857e-06 -5.67857e-06 0 0 0 14.022 4.70929 4.85666 4.45608 -1 1 1 329 0.329 323.15 0 0 0.02632 -0.0114388 -0.0114388 0 0 0 769.821 -5.67857e-06 -5.67857e-06 0 0 0 14.0836 4.72133 4.88568 4.47658 -1 1 1 330 0.33 323.15 0 0 0.0264 -0.0114771 -0.0114771 0 0 0 770.609 -5.67857e-06 -5.67857e-06 0 0 0 14.1452 4.73337 4.91475 4.49708 -1 1 1 331 0.331 323.15 0 0 0.02648 -0.0115153 -0.0115153 0 0 0 771.394 -5.67856e-06 -5.67857e-06 0 0 0 14.2069 4.74542 4.94387 4.51759 -1 1 1 332 0.332 323.15 0 0 0.02656 -0.0115536 -0.0115536 0 0 0 772.178 -5.67857e-06 -5.67857e-06 0 0 0 14.2686 4.75748 4.97304 4.53811 -1 1 1 333 0.333 323.15 0 0 0.02664 -0.0115918 -0.0115918 0 0 0 772.961 -5.67857e-06 -5.67857e-06 0 0 0 14.3304 4.76954 5.00226 4.55863 -1 1 1 334 0.334 323.15 0 0 0.02672 -0.0116301 -0.0116301 0 0 0 773.742 -5.67857e-06 -5.67857e-06 0 0 0 14.3923 4.78161 5.03153 4.57917 -1 1 1 335 0.335 323.15 0 0 0.0268 -0.0116683 -0.0116683 0 0 0 774.521 -5.67857e-06 -5.67857e-06 0 0 0 14.4542 4.79369 5.06084 4.5997 -1 1 1 336 0.336 323.15 0 0 0.02688 -0.0117066 -0.0117066 0 0 0 775.299 -5.67857e-06 -5.67857e-06 0 0 0 14.5162 4.80577 5.09021 4.62025 -1 1 1 337 0.337 323.15 0 0 0.02696 -0.0117449 -0.0117449 0 0 0 776.075 -5.67856e-06 -5.67857e-06 0 0 0 14.5783 4.81786 5.11962 4.6408 -1 1 1 338 0.338 323.15 0 0 0.02704 -0.0117831 -0.0117831 0 0 0 776.85 -5.67856e-06 -5.67857e-06 0 0 0 14.6404 4.82995 5.14909 4.66136 -1 1 1 339 0.339 323.15 0 0 0.02712 -0.0118214 -0.0118214 0 0 0 777.624 -5.67856e-06 -5.67857e-06 0 0 0 14.7026 4.84205 5.1786 4.68192 -1 1 1 340 0.34 323.15 0 0 0.0272 -0.0118597 -0.0118597 0 0 0 778.395 -5.67856e-06 -5.67857e-06 0 0 0 14.7648 4.85416 5.20816 4.70249 -1 1 1 341 0.341 323.15 0 0 0.02728 -0.011898 -0.011898 0 0 0 779.166 -5.67856e-06 -5.67856e-06 0 0 0 14.8271 4.86628 5.23777 4.72307 -1 1 1 342 0.342 323.15 0 0 0.02736 -0.0119362 -0.0119362 0 0 0 779.935 -5.67856e-06 -5.67856e-06 0 0 0 14.8895 4.8784 5.26743 4.74366 -1 1 1 343 0.343 323.15 0 0 0.02744 -0.0119745 -0.0119745 0 0 0 780.702 -5.67856e-06 -5.67856e-06 0 0 0 14.9519 4.89053 5.29713 4.76425 -1 1 1 344 0.344 323.15 0 0 0.02752 -0.0120128 -0.0120128 0 0 0 781.468 -5.67856e-06 -5.67856e-06 0 0 0 15.0144 4.90267 5.32688 4.78485 -1 1 1 345 0.345 323.15 0 0 0.0276 -0.0120511 -0.0120511 0 0 0 782.233 -5.67856e-06 -5.67856e-06 0 0 0 15.0769 4.91481 5.35668 4.80545 -1 1 1 346 0.346 323.15 0 0 0.02768 -0.0120894 -0.0120894 0 0 0 782.996 -5.67856e-06 -5.67856e-06 0 0 0 15.1396 4.92696 5.38653 4.82606 -1 1 1 347 0.347 323.15 0 0 0.02776 -0.0121277 -0.0121277 0 0 0 783.757 -5.67856e-06 -5.67856e-06 0 0 0 15.2022 4.93912 5.41643 4.84668 -1 1 1 348 0.348 323.15 0 0 0.02784 -0.012166 -0.012166 0 0 0 784.518 -5.67856e-06 -5.67856e-06 0 0 0 15.265 4.95129 5.44637 4.8673 -1 1 1 349 0.349 323.15 0 0 0.02792 -0.0122043 -0.0122043 0 0 0 785.276 -5.67856e-06 -5.67856e-06 0 0 0 15.3277 4.96346 5.47636 4.88793 -1 1 1 350 0.35 323.15 0 0 0.028 -0.0122426 -0.0122426 0 0 0 786.034 -5.67856e-06 -5.67856e-06 0 0 0 15.3906 4.97564 5.5064 4.90857 -1 1 1 351 0.351 323.15 0 0 0.02808 -0.0122809 -0.0122809 0 0 0 786.79 -5.67856e-06 -5.67856e-06 0 0 0 15.4535 4.98783 5.53648 4.92921 -1 1 1 352 0.352 323.15 0 0 0.02816 -0.0123192 -0.0123192 0 0 0 787.545 -5.67856e-06 -5.67856e-06 0 0 0 15.5165 5.00002 5.56661 4.94985 -1 1 1 353 0.353 323.15 0 0 0.02824 -0.0123575 -0.0123575 0 0 0 788.298 -5.67856e-06 -5.67856e-06 0 0 0 15.5795 5.01223 5.59679 4.97051 -1 1 1 354 0.354 323.15 0 0 0.02832 -0.0123959 -0.0123959 0 0 0 789.05 -5.67856e-06 -5.67856e-06 0 0 0 15.6426 5.02444 5.62701 4.99117 -1 1 1 355 0.355 323.15 0 0 0.0284 -0.0124342 -0.0124342 0 0 0 789.8 -5.67856e-06 -5.67856e-06 0 0 0 15.7058 5.03666 5.65728 5.01183 -1 1 1 356 0.356 323.15 0 0 0.02848 -0.0124725 -0.0124725 0 0 0 790.55 -5.67856e-06 -5.67856e-06 0 0 0 15.769 5.04888 5.68759 5.03251 -1 1 1 357 0.357 323.15 0 0 0.02856 -0.0125108 -0.0125108 0 0 0 791.298 -5.67856e-06 -5.67856e-06 0 0 0 15.8323 5.06112 5.71796 5.05318 -1 1 1 358 0.358 323.15 0 0 0.02864 -0.0125492 -0.0125492 0 0 0 792.044 -5.67856e-06 -5.67856e-06 0 0 0 15.8956 5.07336 5.74836 5.07387 -1 1 1 359 0.359 323.15 0 0 0.02872 -0.0125875 -0.0125875 0 0 0 792.789 -5.67856e-06 -5.67856e-06 0 0 0 15.959 5.08561 5.77882 5.09456 -1 1 1 360 0.36 323.15 0 0 0.0288 -0.0126258 -0.0126258 0 0 0 793.533 -5.67856e-06 -5.67856e-06 0 0 0 16.0224 5.09787 5.80932 5.11525 -1 1 1 361 0.361 323.15 0 0 0.02888 -0.0126642 -0.0126642 0 0 0 794.276 -5.67856e-06 -5.67856e-06 0 0 0 16.0859 5.11013 5.83986 5.13596 -1 1 1 362 0.362 323.15 0 0 0.02896 -0.0127025 -0.0127025 0 0 0 795.017 -5.67856e-06 -5.67856e-06 0 0 0 16.1495 5.12241 5.87045 5.15666 -1 1 1 363 0.363 323.15 0 0 0.02904 -0.0127409 -0.0127409 0 0 0 795.757 -5.67856e-06 -5.67856e-06 0 0 0 16.2132 5.13469 5.90109 5.17738 -1 1 1 364 0.364 323.15 0 0 0.02912 -0.0127792 -0.0127792 0 0 0 796.496 -5.67856e-06 -5.67856e-06 0 0 0 16.2768 5.14698 5.93177 5.19809 -1 1 1 365 0.365 323.15 0 0 0.0292 -0.0128176 -0.0128176 0 0 0 797.233 -5.67856e-06 -5.67856e-06 0 0 0 16.3406 5.15928 5.96249 5.21882 -1 1 1 366 0.366 323.15 0 0 0.02928 -0.0128559 -0.0128559 0 0 0 797.969 -5.67856e-06 -5.67856e-06 0 0 0 16.4044 5.17159 5.99327 5.23955 -1 1 1 367 0.367 323.15 0 0 0.02936 -0.0128943 -0.0128943 0 0 0 798.704 -5.67856e-06 -5.67856e-06 0 0 0 16.4683 5.1839 6.02408 5.26028 -1 1 1 368 0.368 323.15 0 0 0.02944 -0.0129326 -0.0129326 0 0 0 799.438 -5.67856e-06 -5.67856e-06 0 0 0 16.5322 5.19622 6.05494 5.28102 -1 1 1 369 0.369 323.15 0 0 0.02952 -0.012971 -0.012971 0 0 0 800.17 -5.67856e-06 -5.67856e-06 0 0 0 16.5962 5.20856 6.08585 5.30177 -1 1 1 370 0.37 323.15 0 0 0.0296 -0.0130094 -0.0130094 0 0 0 800.902 -5.67856e-06 -5.67856e-06 0 0 0 16.6602 5.2209 6.1168 5.32252 -1 1 1 371 0.371 323.15 0 0 0.02968 -0.0130477 -0.0130477 0 0 0 801.632 -5.67856e-06 -5.67856e-06 0 0 0 16.7243 5.23325 6.14779 5.34328 -1 1 1 372 0.372 323.15 0 0 0.02976 -0.0130861 -0.0130861 0 0 0 802.36 -5.67856e-06 -5.67856e-06 0 0 0 16.7885 5.24561 6.17883 5.36404 -1 1 1 373 0.373 323.15 0 0 0.02984 -0.0131245 -0.0131245 0 0 0 803.088 -5.67856e-06 -5.67856e-06 0 0 0 16.8527 5.25797 6.20991 5.38481 -1 1 1 374 0.374 323.15 0 0 0.02992 -0.0131628 -0.0131628 0 0 0 803.814 -5.67856e-06 -5.67856e-06 0 0 0 16.917 5.27035 6.24104 5.40559 -1 1 1 375 0.375 323.15 0 0 0.03 -0.0132012 -0.0132012 0 0 0 804.539 -5.67856e-06 -5.67856e-06 0 0 0 16.9813 5.28274 6.27221 5.42637 -1 1 1 376 0.376 323.15 0 0 0.03008 -0.0132396 -0.0132396 0 0 0 805.263 -5.67856e-06 -5.67856e-06 0 0 0 17.0457 5.29513 6.30342 5.44715 -1 1 1 377 0.377 323.15 0 0 0.03016 -0.013278 -0.013278 0 0 0 805.986 -5.67856e-06 -5.67856e-06 0 0 0 17.1101 5.30753 6.33468 5.46794 -1 1 1 378 0.378 323.15 0 0 0.03024 -0.0133164 -0.0133164 0 0 0 806.707 -5.67856e-06 -5.67856e-06 0 0 0 17.1747 5.31994 6.36598 5.48874 -1 1 1 379 0.379 323.15 0 0 0.03032 -0.0133548 -0.0133548 0 0 0 807.428 -5.67856e-06 -5.67856e-06 0 0 0 17.2392 5.33236 6.39732 5.50954 -1 1 1 380 0.38 323.15 0 0 0.0304 -0.0133932 -0.0133932 0 0 0 808.147 -5.67856e-06 -5.67856e-06 0 0 0 17.3038 5.34479 6.42871 5.53034 -1 1 1 381 0.381 323.15 0 0 0.03048 -0.0134316 -0.0134316 0 0 0 808.865 -5.67856e-06 -5.67856e-06 0 0 0 17.3685 5.35723 6.46014 5.55115 -1 1 1 382 0.382 323.15 0 0 0.03056 -0.01347 -0.01347 0 0 0 809.582 -5.67856e-06 -5.67856e-06 0 0 0 17.4333 5.36968 6.49162 5.57197 -1 1 1 383 0.383 323.15 0 0 0.03064 -0.0135084 -0.0135084 0 0 0 810.297 -5.67856e-06 -5.67856e-06 0 0 0 17.4981 5.38214 6.52313 5.59279 -1 1 1 384 0.384 323.15 0 0 0.03072 -0.0135468 -0.0135468 0 0 0 811.012 -5.67856e-06 -5.67856e-06 0 0 0 17.5629 5.3946 6.55469 5.61361 -1 1 1 385 0.385 323.15 0 0 0.0308 -0.0135852 -0.0135852 0 0 0 811.725 -5.67856e-06 -5.67856e-06 0 0 0 17.6278 5.40708 6.5863 5.63445 -1 1 1 386 0.386 323.15 0 0 0.03088 -0.0136236 -0.0136236 0 0 0 812.437 -5.67856e-06 -5.67856e-06 0 0 0 17.6928 5.41956 6.61794 5.65528 -1 1 1 387 0.387 323.15 0 0 0.03096 -0.013662 -0.013662 0 0 0 813.149 -5.67856e-06 -5.67856e-06 0 0 0 17.7578 5.43206 6.64963 5.67612 -1 1 1 388 0.388 323.15 0 0 0.03104 -0.0137004 -0.0137004 0 0 0 813.859 -5.67856e-06 -5.67856e-06 0 0 0 17.8229 5.44456 6.68136 5.69697 -1 1 1 389 0.389 323.15 0 0 0.03112 -0.0137388 -0.0137388 0 0 0 814.568 -5.67856e-06 -5.67856e-06 0 0 0 17.888 5.45707 6.71313 5.71782 -1 1 1 390 0.39 323.15 0 0 0.0312 -0.0137772 -0.0137772 0 0 0 815.275 -5.67856e-06 -5.67856e-06 0 0 0 17.9532 5.4696 6.74495 5.73868 -1 1 1 391 0.391 323.15 0 0 0.03128 -0.0138156 -0.0138156 0 0 0 815.982 -5.67856e-06 -5.67856e-06 0 0 0 18.0185 5.48213 6.77681 5.75954 -1 1 1 392 0.392 323.15 0 0 0.03136 -0.0138541 -0.0138541 0 0 0 816.688 -5.67856e-06 -5.67856e-06 0 0 0 18.0838 5.49467 6.8087 5.7804 -1 1 1 393 0.393 323.15 0 0 0.03144 -0.0138925 -0.0138925 0 0 0 817.392 -5.67856e-06 -5.67856e-06 0 0 0 18.1491 5.50722 6.84065 5.80127 -1 1 1 394 0.394 323.15 0 0 0.03152 -0.0139309 -0.0139309 0 0 0 818.096 -5.67856e-06 -5.67856e-06 0 0 0 18.2146 5.51978 6.87263 5.82215 -1 1 1 395 0.395 323.15 0 0 0.0316 -0.0139693 -0.0139693 0 0 0 818.798 -5.67856e-06 -5.67856e-06 0 0 0 18.28 5.53235 6.90465 5.84303 -1 1 1 396 0.396 323.15 0 0 0.03168 -0.0140078 -0.0140078 0 0 0 819.499 -5.67856e-06 -5.67856e-06 0 0 0 18.3456 5.54494 6.93672 5.86391 -1 1 1 397 0.397 323.15 0 0 0.03176 -0.0140462 -0.0140462 0 0 0 820.199 -5.67856e-06 -5.67856e-06 0 0 0 18.4112 5.55753 6.96883 5.8848 -1 1 1 398 0.398 323.15 0 0 0.03184 -0.0140847 -0.0140847 0 0 0 820.899 -5.67856e-06 -5.67856e-06 0 0 0 18.4768 5.57013 7.00098 5.9057 -1 1 1 399 0.399 323.15 0 0 0.03192 -0.0141231 -0.0141231 0 0 0 821.597 -5.67856e-06 -5.67856e-06 0 0 0 18.5425 5.58274 7.03317 5.9266 -1 1 1 400 0.4 323.15 0 0 0.032 -0.0141615 -0.0141615 0 0 0 822.294 -5.67856e-06 -5.67856e-06 0 0 0 18.6083 5.59536 7.0654 5.9475 -1 1 1 401 0.401 323.15 0 0 0.03208 -0.0142 -0.0142 0 0 0 822.99 -5.67856e-06 -5.67856e-06 0 0 0 18.6741 5.60799 7.09767 5.96841 -1 1 1 402 0.402 323.15 0 0 0.03216 -0.0142384 -0.0142384 0 0 0 823.685 -5.67856e-06 -5.67856e-06 0 0 0 18.7399 5.62063 7.12999 5.98932 -1 1 1 403 0.403 323.15 0 0 0.03224 -0.0142769 -0.0142769 0 0 0 824.379 -5.67856e-06 -5.67856e-06 0 0 0 18.8059 5.63328 7.16234 6.01024 -1 1 1 404 0.404 323.15 0 0 0.03232 -0.0143153 -0.0143153 0 0 0 825.072 -5.67856e-06 -5.67856e-06 0 0 0 18.8718 5.64594 7.19474 6.03116 -1 1 1 405 0.405 323.15 0 0 0.0324 -0.0143538 -0.0143538 0 0 0 825.763 -5.67856e-06 -5.67856e-06 0 0 0 18.9379 5.65861 7.22717 6.05209 -1 1 1 406 0.406 323.15 0 0 0.03248 -0.0143922 -0.0143922 0 0 0 826.454 -5.67856e-06 -5.67856e-06 0 0 0 19.004 5.67129 7.25965 6.07302 -1 1 1 407 0.407 323.15 0 0 0.03256 -0.0144307 -0.0144307 0 0 0 827.144 -5.67856e-06 -5.67856e-06 0 0 0 19.0701 5.68398 7.29217 6.09396 -1 1 1 408 0.408 323.15 0 0 0.03264 -0.0144691 -0.0144691 0 0 0 827.833 -5.67856e-06 -5.67856e-06 0 0 0 19.1363 5.69668 7.32473 6.1149 -1 1 1 409 0.409 323.15 0 0 0.03272 -0.0145076 -0.0145076 0 0 0 828.521 -5.67856e-06 -5.67856e-06 0 0 0 19.2026 5.70939 7.35733 6.13584 -1 1 1 410 0.41 323.15 0 0 0.0328 -0.0145461 -0.0145461 0 0 0 829.208 -5.67856e-06 -5.67856e-06 0 0 0 19.2689 5.72211 7.38996 6.15679 -1 1 1 411 0.411 323.15 0 0 0.03288 -0.0145845 -0.0145845 0 0 0 829.894 -5.67856e-06 -5.67856e-06 0 0 0 19.3352 5.73484 7.42264 6.17774 -1 1 1 412 0.412 323.15 0 0 0.03296 -0.014623 -0.014623 0 0 0 830.579 -5.67856e-06 -5.67856e-06 0 0 0 19.4016 5.74759 7.45536 6.1987 -1 1 1 413 0.413 323.15 0 0 0.03304 -0.0146615 -0.0146615 0 0 0 831.262 -5.67856e-06 -5.67856e-06 0 0 0 19.4681 5.76034 7.48812 6.21966 -1 1 1 414 0.414 323.15 0 0 0.03312 -0.0147 -0.0147 0 0 0 831.945 -5.67856e-06 -5.67856e-06 0 0 0 19.5346 5.7731 7.52092 6.24063 -1 1 1 415 0.415 323.15 0 0 0.0332 -0.0147384 -0.0147384 0 0 0 832.627 -5.67856e-06 -5.67856e-06 0 0 0 19.6012 5.78587 7.55376 6.2616 -1 1 1 416 0.416 323.15 0 0 0.03328 -0.0147769 -0.0147769 0 0 0 833.308 -5.67856e-06 -5.67856e-06 0 0 0 19.6679 5.79866 7.58664 6.28257 -1 1 1 417 0.417 323.15 0 0 0.03336 -0.0148154 -0.0148154 0 0 0 833.988 -5.67856e-06 -5.67856e-06 0 0 0 19.7346 5.81145 7.61955 6.30355 -1 1 1 418 0.418 323.15 0 0 0.03344 -0.0148539 -0.0148539 0 0 0 834.667 -5.67856e-06 -5.67856e-06 0 0 0 19.8013 5.82426 7.65251 6.32454 -1 1 1 419 0.419 323.15 0 0 0.03352 -0.0148924 -0.0148924 0 0 0 835.346 -5.67856e-06 -5.67856e-06 0 0 0 19.8681 5.83707 7.68551 6.34553 -1 1 1 420 0.42 323.15 0 0 0.0336 -0.0149308 -0.0149308 0 0 0 836.023 -5.67856e-06 -5.67856e-06 0 0 0 19.935 5.8499 7.71854 6.36652 -1 1 1 421 0.421 323.15 0 0 0.03368 -0.0149693 -0.0149693 0 0 0 836.699 -5.67856e-06 -5.67856e-06 0 0 0 20.0019 5.86274 7.75162 6.38751 -1 1 1 422 0.422 323.15 0 0 0.03376 -0.0150078 -0.0150078 0 0 0 837.374 -5.67856e-06 -5.67856e-06 0 0 0 20.0688 5.87559 7.78473 6.40851 -1 1 1 423 0.423 323.15 0 0 0.03384 -0.0150463 -0.0150463 0 0 0 838.049 -5.67856e-06 -5.67856e-06 0 0 0 20.1359 5.88845 7.81789 6.42952 -1 1 1 424 0.424 323.15 0 0 0.03392 -0.0150848 -0.0150848 0 0 0 838.722 -5.67856e-06 -5.67856e-06 0 0 0 20.2029 5.90131 7.85108 6.45053 -1 1 1 425 0.425 323.15 0 0 0.034 -0.0151233 -0.0151233 0 0 0 839.395 -5.67856e-06 -5.67856e-06 0 0 0 20.27 5.9142 7.88431 6.47154 -1 1 1 426 0.426 323.15 0 0 0.03408 -0.0151618 -0.0151618 0 0 0 840.066 -5.67856e-06 -5.67856e-06 0 0 0 20.3372 5.92709 7.91758 6.49256 -1 1 1 427 0.427 323.15 0 0 0.03416 -0.0152003 -0.0152003 0 0 0 840.737 -5.67856e-06 -5.67856e-06 0 0 0 20.4045 5.93999 7.95089 6.51358 -1 1 1 428 0.428 323.15 0 0 0.03424 -0.0152388 -0.0152388 0 0 0 841.407 -5.67856e-06 -5.67856e-06 0 0 0 20.4717 5.9529 7.98424 6.5346 -1 1 1 429 0.429 323.15 0 0 0.03432 -0.0152773 -0.0152773 0 0 0 842.076 -5.67856e-06 -5.67856e-06 0 0 0 20.5391 5.96583 8.01763 6.55563 -1 1 1 430 0.43 323.15 0 0 0.0344 -0.0153158 -0.0153158 0 0 0 842.744 -5.67856e-06 -5.67856e-06 0 0 0 20.6065 5.97876 8.05105 6.57666 -1 1 1 431 0.431 323.15 0 0 0.03448 -0.0153543 -0.0153543 0 0 0 843.411 -5.67856e-06 -5.67856e-06 0 0 0 20.6739 5.99171 8.08451 6.5977 -1 1 1 432 0.432 323.15 0 0 0.03456 -0.0153928 -0.0153928 0 0 0 844.077 -5.67856e-06 -5.67856e-06 0 0 0 20.7414 6.00466 8.11801 6.61874 -1 1 1 433 0.433 323.15 0 0 0.03464 -0.0154313 -0.0154313 0 0 0 844.742 -5.67856e-06 -5.67856e-06 0 0 0 20.809 6.01763 8.15155 6.63979 -1 1 1 434 0.434 323.15 0 0 0.03472 -0.0154699 -0.0154699 0 0 0 845.407 -5.67856e-06 -5.67856e-06 0 0 0 20.8766 6.03061 8.18513 6.66084 -1 1 1 435 0.435 323.15 0 0 0.0348 -0.0155084 -0.0155084 0 0 0 846.07 -5.67856e-06 -5.67856e-06 0 0 0 20.9442 6.0436 8.21875 6.68189 -1 1 1 436 0.436 323.15 0 0 0.03488 -0.0155469 -0.0155469 0 0 0 846.733 -5.67856e-06 -5.67856e-06 0 0 0 21.012 6.0566 8.2524 6.70294 -1 1 1 437 0.437 323.15 0 0 0.03496 -0.0155854 -0.0155854 0 0 0 847.394 -5.67856e-06 -5.67856e-06 0 0 0 21.0797 6.06962 8.28609 6.724 -1 1 1 438 0.438 323.15 0 0 0.03504 -0.0156239 -0.0156239 0 0 0 848.055 -5.67856e-06 -5.67856e-06 0 0 0 21.1475 6.08264 8.31982 6.74507 -1 1 1 439 0.439 323.15 0 0 0.03512 -0.0156625 -0.0156625 0 0 0 848.715 -5.67856e-06 -5.67856e-06 0 0 0 21.2154 6.09568 8.35359 6.76614 -1 1 1 440 0.44 323.15 0 0 0.0352 -0.015701 -0.015701 0 0 0 849.375 -5.67856e-06 -5.67856e-06 0 0 0 21.2833 6.10872 8.38739 6.78721 -1 1 1 441 0.441 323.15 0 0 0.03528 -0.0157395 -0.0157395 0 0 0 850.033 -5.67856e-06 -5.67856e-06 0 0 0 21.3513 6.12178 8.42124 6.80828 -1 1 1 442 0.442 323.15 0 0 0.03536 -0.015778 -0.015778 0 0 0 850.691 -5.67856e-06 -5.67856e-06 0 0 0 21.4193 6.13485 8.45512 6.82936 -1 1 1 443 0.443 323.15 0 0 0.03544 -0.0158166 -0.0158166 0 0 0 851.347 -5.67856e-06 -5.67856e-06 0 0 0 21.4874 6.14793 8.48903 6.85045 -1 1 1 444 0.444 323.15 0 0 0.03552 -0.0158551 -0.0158551 0 0 0 852.003 -5.67856e-06 -5.67856e-06 0 0 0 21.5555 6.16103 8.52299 6.87153 -1 1 1 445 0.445 323.15 0 0 0.0356 -0.0158936 -0.0158936 0 0 0 852.658 -5.67856e-06 -5.67856e-06 0 0 0 21.6237 6.17413 8.55698 6.89262 -1 1 1 446 0.446 323.15 0 0 0.03568 -0.0159322 -0.0159322 0 0 0 853.312 -5.67856e-06 -5.67856e-06 0 0 0 21.692 6.18725 8.59101 6.91372 -1 1 1 447 0.447 323.15 0 0 0.03576 -0.0159707 -0.0159707 0 0 0 853.965 -5.67856e-06 -5.67856e-06 0 0 0 21.7603 6.20037 8.62508 6.93482 -1 1 1 448 0.448 323.15 0 0 0.03584 -0.0160093 -0.0160093 0 0 0 854.618 -5.67856e-06 -5.67856e-06 0 0 0 21.8286 6.21351 8.65918 6.95592 -1 1 1 449 0.449 323.15 0 0 0.03592 -0.0160478 -0.0160478 0 0 0 855.27 -5.67856e-06 -5.67856e-06 0 0 0 21.897 6.22666 8.69332 6.97702 -1 1 1 450 0.45 323.15 0 0 0.036 -0.0160864 -0.0160864 0 0 0 855.92 -5.67856e-06 -5.67856e-06 0 0 0 21.9655 6.23982 8.7275 6.99813 -1 1 1 451 0.451 323.15 0 0 0.03608 -0.0161249 -0.0161249 0 0 0 856.57 -5.67856e-06 -5.67856e-06 0 0 0 22.034 6.253 8.76171 7.01925 -1 1 1 452 0.452 323.15 0 0 0.03616 -0.0161634 -0.0161634 0 0 0 857.22 -5.67856e-06 -5.67856e-06 0 0 0 22.1025 6.26618 8.79596 7.04036 -1 1 1 453 0.453 323.15 0 0 0.03624 -0.016202 -0.016202 0 0 0 857.868 -5.67856e-06 -5.67856e-06 0 0 0 22.1711 6.27938 8.83025 7.06148 -1 1 1 454 0.454 323.15 0 0 0.03632 -0.0162405 -0.0162405 0 0 0 858.516 -5.67856e-06 -5.67856e-06 0 0 0 22.2398 6.29259 8.86457 7.08261 -1 1 1 455 0.455 323.15 0 0 0.0364 -0.0162791 -0.0162791 0 0 0 859.162 -5.67856e-06 -5.67856e-06 0 0 0 22.3085 6.30581 8.89893 7.10373 -1 1 1 456 0.456 323.15 0 0 0.03648 -0.0163177 -0.0163177 0 0 0 859.808 -5.67856e-06 -5.67856e-06 0 0 0 22.3772 6.31904 8.93333 7.12486 -1 1 1 457 0.457 323.15 0 0 0.03656 -0.0163562 -0.0163562 0 0 0 860.454 -5.67856e-06 -5.67856e-06 0 0 0 22.446 6.33228 8.96776 7.146 -1 1 1 458 0.458 323.15 0 0 0.03664 -0.0163948 -0.0163948 0 0 0 861.098 -5.67856e-06 -5.67856e-06 0 0 0 22.5149 6.34554 9.00223 7.16713 -1 1 1 459 0.459 323.15 0 0 0.03672 -0.0164333 -0.0164333 0 0 0 861.742 -5.67856e-06 -5.67856e-06 0 0 0 22.5838 6.3588 9.03673 7.18828 -1 1 1 460 0.46 323.15 0 0 0.0368 -0.0164719 -0.0164719 0 0 0 862.385 -5.67856e-06 -5.67856e-06 0 0 0 22.6528 6.37208 9.07128 7.20942 -1 1 1 461 0.461 323.15 0 0 0.03688 -0.0165105 -0.0165105 0 0 0 863.027 -5.67856e-06 -5.67856e-06 0 0 0 22.7218 6.38538 9.10585 7.23057 -1 1 1 462 0.462 323.15 0 0 0.03696 -0.016549 -0.016549 0 0 0 863.668 -5.67856e-06 -5.67856e-06 0 0 0 22.7909 6.39868 9.14047 7.25172 -1 1 1 463 0.463 323.15 0 0 0.03704 -0.0165876 -0.0165876 0 0 0 864.308 -5.67856e-06 -5.67856e-06 0 0 0 22.86 6.41199 9.17511 7.27287 -1 1 1 464 0.464 323.15 0 0 0.03712 -0.0166262 -0.0166262 0 0 0 864.948 -5.67856e-06 -5.67856e-06 0 0 0 22.9292 6.42532 9.2098 7.29403 -1 1 1 465 0.465 323.15 0 0 0.0372 -0.0166647 -0.0166647 0 0 0 865.587 -5.67856e-06 -5.67856e-06 0 0 0 22.9984 6.43866 9.24452 7.31519 -1 1 1 466 0.466 323.15 0 0 0.03728 -0.0167033 -0.0167033 0 0 0 866.225 -5.67856e-06 -5.67856e-06 0 0 0 23.0676 6.45201 9.27928 7.33636 -1 1 1 467 0.467 323.15 0 0 0.03736 -0.0167419 -0.0167419 0 0 0 866.863 -5.67856e-06 -5.67856e-06 0 0 0 23.137 6.46537 9.31407 7.35753 -1 1 1 468 0.468 323.15 0 0 0.03744 -0.0167805 -0.0167805 0 0 0 867.5 -5.67856e-06 -5.67856e-06 0 0 0 23.2063 6.47875 9.3489 7.3787 -1 1 1 469 0.469 323.15 0 0 0.03752 -0.016819 -0.016819 0 0 0 868.136 -5.67856e-06 -5.67856e-06 0 0 0 23.2758 6.49214 9.38376 7.39987 -1 1 1 470 0.47 323.15 0 0 0.0376 -0.0168576 -0.0168576 0 0 0 868.771 -5.67856e-06 -5.67856e-06 0 0 0 23.3452 6.50554 9.41866 7.42105 -1 1 1 471 0.471 323.15 0 0 0.03768 -0.0168962 -0.0168962 0 0 0 869.405 -5.67856e-06 -5.67856e-06 0 0 0 23.4148 6.51895 9.45359 7.44223 -1 1 1 472 0.472 323.15 0 0 0.03776 -0.0169348 -0.0169348 0 0 0 870.039 -5.67856e-06 -5.67856e-06 0 0 0 23.4844 6.53237 9.48856 7.46342 -1 1 1 473 0.473 323.15 0 0 0.03784 -0.0169734 -0.0169734 0 0 0 870.672 -5.67856e-06 -5.67856e-06 0 0 0 23.554 6.54581 9.52357 7.48461 -1 1 1 474 0.474 323.15 0 0 0.03792 -0.017012 -0.017012 0 0 0 871.304 -5.67856e-06 -5.67856e-06 0 0 0 23.6237 6.55925 9.5586 7.5058 -1 1 1 475 0.475 323.15 0 0 0.038 -0.0170505 -0.0170505 0 0 0 871.936 -5.67856e-06 -5.67856e-06 0 0 0 23.6934 6.57272 9.59368 7.52699 -1 1 1 476 0.476 323.15 0 0 0.03808 -0.0170891 -0.0170891 0 0 0 872.567 -5.67856e-06 -5.67856e-06 0 0 0 23.7632 6.58619 9.62879 7.54819 -1 1 1 477 0.477 323.15 0 0 0.03816 -0.0171277 -0.0171277 0 0 0 873.197 -5.67856e-06 -5.67856e-06 0 0 0 23.833 6.59967 9.66393 7.56939 -1 1 1 478 0.478 323.15 0 0 0.03824 -0.0171663 -0.0171663 0 0 0 873.826 -5.67856e-06 -5.67856e-06 0 0 0 23.9029 6.61317 9.69911 7.5906 -1 1 1 479 0.479 323.15 0 0 0.03832 -0.0172049 -0.0172049 0 0 0 874.455 -5.67856e-06 -5.67856e-06 0 0 0 23.9728 6.62668 9.73433 7.61181 -1 1 1 480 0.48 323.15 0 0 0.0384 -0.0172435 -0.0172435 0 0 0 875.083 -5.67856e-06 -5.67856e-06 0 0 0 24.0428 6.6402 9.76957 7.63302 -1 1 1 481 0.481 323.15 0 0 0.03848 -0.0172821 -0.0172821 0 0 0 875.71 -5.67856e-06 -5.67856e-06 0 0 0 24.1128 6.65374 9.80486 7.65423 -1 1 1 482 0.482 323.15 0 0 0.03856 -0.0173207 -0.0173207 0 0 0 876.336 -5.67856e-06 -5.67856e-06 0 0 0 24.1829 6.66728 9.84018 7.67545 -1 1 1 483 0.483 323.15 0 0 0.03864 -0.0173593 -0.0173593 0 0 0 876.962 -5.67856e-06 -5.67856e-06 0 0 0 24.253 6.68084 9.87553 7.69667 -1 1 1 484 0.484 323.15 0 0 0.03872 -0.0173979 -0.0173979 0 0 0 877.587 -5.67856e-06 -5.67856e-06 0 0 0 24.3232 6.69441 9.91091 7.71789 -1 1 1 485 0.485 323.15 0 0 0.0388 -0.0174365 -0.0174365 0 0 0 878.211 -5.67856e-06 -5.67856e-06 0 0 0 24.3935 6.708 9.94634 7.73912 -1 1 1 486 0.486 323.15 0 0 0.03888 -0.0174751 -0.0174751 0 0 0 878.835 -5.67856e-06 -5.67856e-06 0 0 0 24.4637 6.7216 9.98179 7.76035 -1 1 1 487 0.487 323.15 0 0 0.03896 -0.0175137 -0.0175137 0 0 0 879.458 -5.67856e-06 -5.67856e-06 0 0 0 24.5341 6.7352 10.0173 7.78158 -1 1 1 488 0.488 323.15 0 0 0.03904 -0.0175523 -0.0175523 0 0 0 880.08 -5.67856e-06 -5.67856e-06 0 0 0 24.6044 6.74883 10.0528 7.80282 -1 1 1 489 0.489 323.15 0 0 0.03912 -0.0175909 -0.0175909 0 0 0 880.702 -5.67856e-06 -5.67856e-06 0 0 0 24.6749 6.76246 10.0884 7.82405 -1 1 1 490 0.49 323.15 0 0 0.0392 -0.0176296 -0.0176296 0 0 0 881.323 -5.67856e-06 -5.67856e-06 0 0 0 24.7454 6.77611 10.124 7.8453 -1 1 1 491 0.491 323.15 0 0 0.03928 -0.0176682 -0.0176682 0 0 0 881.943 -5.67856e-06 -5.67856e-06 0 0 0 24.8159 6.78977 10.1596 7.86654 -1 1 1 492 0.492 323.15 0 0 0.03936 -0.0177068 -0.0177068 0 0 0 882.563 -5.67856e-06 -5.67856e-06 0 0 0 24.8865 6.80344 10.1952 7.88779 -1 1 1 493 0.493 323.15 0 0 0.03944 -0.0177454 -0.0177454 0 0 0 883.181 -5.67856e-06 -5.67856e-06 0 0 0 24.9571 6.81712 10.2309 7.90904 -1 1 1 494 0.494 323.15 0 0 0.03952 -0.017784 -0.017784 0 0 0 883.8 -5.67856e-06 -5.67856e-06 0 0 0 25.0278 6.83082 10.2667 7.9303 -1 1 1 495 0.495 323.15 0 0 0.0396 -0.0178226 -0.0178226 0 0 0 884.417 -5.67856e-06 -5.67856e-06 0 0 0 25.0985 6.84453 10.3024 7.95155 -1 1 1 496 0.496 323.15 0 0 0.03968 -0.0178613 -0.0178613 0 0 0 885.034 -5.67856e-06 -5.67856e-06 0 0 0 25.1693 6.85826 10.3382 7.97281 -1 1 1 497 0.497 323.15 0 0 0.03976 -0.0178999 -0.0178999 0 0 0 885.65 -5.67856e-06 -5.67856e-06 0 0 0 25.2401 6.87199 10.374 7.99408 -1 1 1 498 0.498 323.15 0 0 0.03984 -0.0179385 -0.0179385 0 0 0 886.266 -5.67856e-06 -5.67856e-06 0 0 0 25.311 6.88574 10.4099 8.01534 -1 1 1 499 0.499 323.15 0 0 0.03992 -0.0179771 -0.0179771 0 0 0 886.881 -5.67856e-06 -5.67856e-06 0 0 0 25.3819 6.8995 10.4458 8.03661 -1 1 1 500 0.5 323.15 0 0 0.04 -0.0180158 -0.0180158 0 0 0 887.495 -5.67856e-06 -5.67856e-06 0 0 0 25.4529 6.91327 10.4817 8.05788 -1 1 1 501 0.501 323.15 0 0 0.04008 -0.0180544 -0.0180544 0 0 0 888.108 -5.67856e-06 -5.67856e-06 0 0 0 25.5239 6.92706 10.5177 8.07916 -1 1 1 502 0.502 323.15 0 0 0.04016 -0.018093 -0.018093 0 0 0 888.721 -5.67856e-06 -5.67856e-06 0 0 0 25.595 6.94086 10.5537 8.10043 -1 1 1 503 0.503 323.15 0 0 0.04024 -0.0181316 -0.0181316 0 0 0 889.333 -5.67856e-06 -5.67856e-06 0 0 0 25.6661 6.95467 10.5897 8.12171 -1 1 1 504 0.504 323.15 0 0 0.04032 -0.0181703 -0.0181703 0 0 0 889.945 -5.67856e-06 -5.67856e-06 0 0 0 25.7373 6.9685 10.6258 8.143 -1 1 1 505 0.505 323.15 0 0 0.0404 -0.0182089 -0.0182089 0 0 0 890.556 -5.67856e-06 -5.67856e-06 0 0 0 25.8085 6.98234 10.6619 8.16428 -1 1 1 506 0.506 323.15 0 0 0.04048 -0.0182475 -0.0182475 0 0 0 891.166 -5.67856e-06 -5.67856e-06 0 0 0 25.8798 6.99619 10.698 8.18557 -1 1 1 507 0.507 323.15 0 0 0.04056 -0.0182862 -0.0182862 0 0 0 891.776 -5.67856e-06 -5.67856e-06 0 0 0 25.9511 7.01005 10.7342 8.20687 -1 1 1 508 0.508 323.15 0 0 0.04064 -0.0183248 -0.0183248 0 0 0 892.385 -5.67856e-06 -5.67856e-06 0 0 0 26.0225 7.02393 10.7704 8.22816 -1 1 1 509 0.509 323.15 0 0 0.04072 -0.0183635 -0.0183635 0 0 0 892.993 -5.67856e-06 -5.67856e-06 0 0 0 26.0939 7.03782 10.8066 8.24946 -1 1 1 510 0.51 323.15 0 0 0.0408 -0.0184021 -0.0184021 0 0 0 893.601 -5.67856e-06 -5.67856e-06 0 0 0 26.1653 7.05172 10.8429 8.27076 -1 1 1 511 0.511 323.15 0 0 0.04088 -0.0184407 -0.0184407 0 0 0 894.208 -5.67856e-06 -5.67856e-06 0 0 0 26.2368 7.06564 10.8791 8.29206 -1 1 1 512 0.512 323.15 0 0 0.04096 -0.0184794 -0.0184794 0 0 0 894.815 -5.67856e-06 -5.67856e-06 0 0 0 26.3084 7.07957 10.9155 8.31337 -1 1 1 513 0.513 323.15 0 0 0.04104 -0.018518 -0.018518 0 0 0 895.42 -5.67856e-06 -5.67856e-06 0 0 0 26.38 7.09351 10.9518 8.33468 -1 1 1 514 0.514 323.15 0 0 0.04112 -0.0185567 -0.0185567 0 0 0 896.026 -5.67856e-06 -5.67856e-06 0 0 0 26.4517 7.10747 10.9882 8.35599 -1 1 1 515 0.515 323.15 0 0 0.0412 -0.0185953 -0.0185953 0 0 0 896.63 -5.67856e-06 -5.67856e-06 0 0 0 26.5234 7.12143 11.0246 8.3773 -1 1 1 516 0.516 323.15 0 0 0.04128 -0.018634 -0.018634 0 0 0 897.234 -5.67856e-06 -5.67856e-06 0 0 0 26.5951 7.13542 11.0611 8.39862 -1 1 1 517 0.517 323.15 0 0 0.04136 -0.0186726 -0.0186726 0 0 0 897.838 -5.67856e-06 -5.67856e-06 0 0 0 26.6669 7.14941 11.0976 8.41994 -1 1 1 518 0.518 323.15 0 0 0.04144 -0.0187113 -0.0187113 0 0 0 898.44 -5.67856e-06 -5.67856e-06 0 0 0 26.7388 7.16342 11.1341 8.44126 -1 1 1 519 0.519 323.15 0 0 0.04152 -0.0187499 -0.0187499 0 0 0 899.043 -5.67856e-06 -5.67856e-06 0 0 0 26.8107 7.17744 11.1707 8.46259 -1 1 1 520 0.52 323.15 0 0 0.0416 -0.0187886 -0.0187886 0 0 0 899.644 -5.67856e-06 -5.67856e-06 0 0 0 26.8826 7.19147 11.2072 8.48391 -1 1 1 521 0.521 323.15 0 0 0.04168 -0.0188273 -0.0188273 0 0 0 900.245 -5.67856e-06 -5.67856e-06 0 0 0 26.9546 7.20552 11.2439 8.50525 -1 1 1 522 0.522 323.15 0 0 0.04176 -0.0188659 -0.0188659 0 0 0 900.845 -5.67856e-06 -5.67856e-06 0 0 0 27.0267 7.21958 11.2805 8.52658 -1 1 1 523 0.523 323.15 0 0 0.04184 -0.0189046 -0.0189046 0 0 0 901.445 -5.67856e-06 -5.67856e-06 0 0 0 27.0988 7.23366 11.3172 8.54791 -1 1 1 524 0.524 323.15 0 0 0.04192 -0.0189432 -0.0189432 0 0 0 902.044 -5.67856e-06 -5.67856e-06 0 0 0 27.1709 7.24774 11.3539 8.56925 -1 1 1 525 0.525 323.15 0 0 0.042 -0.0189819 -0.0189819 0 0 0 902.643 -5.67856e-06 -5.67856e-06 0 0 0 27.2431 7.26184 11.3907 8.59059 -1 1 1 526 0.526 323.15 0 0 0.04208 -0.0190206 -0.0190206 0 0 0 903.241 -5.67856e-06 -5.67856e-06 0 0 0 27.3153 7.27596 11.4274 8.61194 -1 1 1 527 0.527 323.15 0 0 0.04216 -0.0190592 -0.0190592 0 0 0 903.838 -5.67856e-06 -5.67856e-06 0 0 0 27.3876 7.29008 11.4642 8.63329 -1 1 1 528 0.528 323.15 0 0 0.04224 -0.0190979 -0.0190979 0 0 0 904.435 -5.67856e-06 -5.67856e-06 0 0 0 27.4599 7.30422 11.5011 8.65463 -1 1 1 529 0.529 323.15 0 0 0.04232 -0.0191366 -0.0191366 0 0 0 905.031 -5.67856e-06 -5.67856e-06 0 0 0 27.5323 7.31838 11.538 8.67599 -1 1 1 530 0.53 323.15 0 0 0.0424 -0.0191752 -0.0191752 0 0 0 905.627 -5.67856e-06 -5.67856e-06 0 0 0 27.6047 7.33254 11.5749 8.69734 -1 1 1 531 0.531 323.15 0 0 0.04248 -0.0192139 -0.0192139 0 0 0 906.222 -5.67856e-06 -5.67856e-06 0 0 0 27.6772 7.34672 11.6118 8.7187 -1 1 1 532 0.532 323.15 0 0 0.04256 -0.0192526 -0.0192526 0 0 0 906.816 -5.67856e-06 -5.67856e-06 0 0 0 27.7497 7.36092 11.6488 8.74006 -1 1 1 533 0.533 323.15 0 0 0.04264 -0.0192912 -0.0192912 0 0 0 907.41 -5.67856e-06 -5.67856e-06 0 0 0 27.8223 7.37513 11.6858 8.76142 -1 1 1 534 0.534 323.15 0 0 0.04272 -0.0193299 -0.0193299 0 0 0 908.003 -5.67856e-06 -5.67856e-06 0 0 0 27.8949 7.38935 11.7228 8.78278 -1 1 1 535 0.535 323.15 0 0 0.0428 -0.0193686 -0.0193686 0 0 0 908.596 -5.67856e-06 -5.67856e-06 0 0 0 27.9676 7.40358 11.7599 8.80415 -1 1 1 536 0.536 323.15 0 0 0.04288 -0.0194073 -0.0194073 0 0 0 909.188 -5.67856e-06 -5.67856e-06 0 0 0 28.0403 7.41783 11.797 8.82552 -1 1 1 537 0.537 323.15 0 0 0.04296 -0.0194459 -0.0194459 0 0 0 909.78 -5.67856e-06 -5.67856e-06 0 0 0 28.1131 7.43209 11.8341 8.84689 -1 1 1 538 0.538 323.15 0 0 0.04304 -0.0194846 -0.0194846 0 0 0 910.371 -5.67856e-06 -5.67856e-06 0 0 0 28.1859 7.44636 11.8712 8.86827 -1 1 1 539 0.539 323.15 0 0 0.04312 -0.0195233 -0.0195233 0 0 0 910.961 -5.67856e-06 -5.67856e-06 0 0 0 28.2587 7.46065 11.9084 8.88965 -1 1 1 540 0.54 323.15 0 0 0.0432 -0.019562 -0.019562 0 0 0 911.551 -5.67856e-06 -5.67856e-06 0 0 0 28.3316 7.47495 11.9456 8.91103 -1 1 1 541 0.541 323.15 0 0 0.04328 -0.0196007 -0.0196007 0 0 0 912.14 -5.67856e-06 -5.67856e-06 0 0 0 28.4046 7.48927 11.9829 8.93241 -1 1 1 542 0.542 323.15 0 0 0.04336 -0.0196393 -0.0196393 0 0 0 912.729 -5.67856e-06 -5.67856e-06 0 0 0 28.4776 7.5036 12.0202 8.95379 -1 1 1 543 0.543 323.15 0 0 0.04344 -0.019678 -0.019678 0 0 0 913.317 -5.67856e-06 -5.67856e-06 0 0 0 28.5506 7.51794 12.0575 8.97518 -1 1 1 544 0.544 323.15 0 0 0.04352 -0.0197167 -0.0197167 0 0 0 913.905 -5.67856e-06 -5.67856e-06 0 0 0 28.6237 7.53229 12.0948 8.99657 -1 1 1 545 0.545 323.15 0 0 0.0436 -0.0197554 -0.0197554 0 0 0 914.492 -5.67856e-06 -5.67856e-06 0 0 0 28.6968 7.54666 12.1322 9.01796 -1 1 1 546 0.546 323.15 0 0 0.04368 -0.0197941 -0.0197941 0 0 0 915.078 -5.67856e-06 -5.67856e-06 0 0 0 28.77 7.56105 12.1696 9.03936 -1 1 1 547 0.547 323.15 0 0 0.04376 -0.0198328 -0.0198328 0 0 0 915.664 -5.67856e-06 -5.67856e-06 0 0 0 28.8432 7.57544 12.207 9.06075 -1 1 1 548 0.548 323.15 0 0 0.04384 -0.0198715 -0.0198715 0 0 0 916.25 -5.67856e-06 -5.67856e-06 0 0 0 28.9165 7.58985 12.2445 9.08215 -1 1 1 549 0.549 323.15 0 0 0.04392 -0.0199102 -0.0199102 0 0 0 916.835 -5.67856e-06 -5.67856e-06 0 0 0 28.9898 7.60428 12.282 9.10356 -1 1 1 550 0.55 323.15 0 0 0.044 -0.0199489 -0.0199489 0 0 0 917.419 -5.67856e-06 -5.67856e-06 0 0 0 29.0632 7.61871 12.3195 9.12496 -1 1 1 551 0.551 323.15 0 0 0.04408 -0.0199875 -0.0199875 0 0 0 918.003 -5.67856e-06 -5.67856e-06 0 0 0 29.1366 7.63317 12.3571 9.14637 -1 1 1 552 0.552 323.15 0 0 0.04416 -0.0200262 -0.0200262 0 0 0 918.586 -5.67856e-06 -5.67856e-06 0 0 0 29.2101 7.64763 12.3947 9.16778 -1 1 1 553 0.553 323.15 0 0 0.04424 -0.0200649 -0.0200649 0 0 0 919.169 -5.67856e-06 -5.67856e-06 0 0 0 29.2836 7.66211 12.4323 9.18919 -1 1 1 554 0.554 323.15 0 0 0.04432 -0.0201036 -0.0201036 0 0 0 919.751 -5.67856e-06 -5.67856e-06 0 0 0 29.3572 7.6766 12.47 9.2106 -1 1 1 555 0.555 323.15 0 0 0.0444 -0.0201423 -0.0201423 0 0 0 920.332 -5.67856e-06 -5.67856e-06 0 0 0 29.4308 7.69111 12.5076 9.23202 -1 1 1 556 0.556 323.15 0 0 0.04448 -0.020181 -0.020181 0 0 0 920.914 -5.67856e-06 -5.67856e-06 0 0 0 29.5044 7.70563 12.5453 9.25344 -1 1 1 557 0.557 323.15 0 0 0.04456 -0.0202197 -0.0202197 0 0 0 921.494 -5.67856e-06 -5.67856e-06 0 0 0 29.5781 7.72016 12.5831 9.27486 -1 1 1 558 0.558 323.15 0 0 0.04464 -0.0202584 -0.0202584 0 0 0 922.074 -5.67856e-06 -5.67856e-06 0 0 0 29.6519 7.73471 12.6209 9.29628 -1 1 1 559 0.559 323.15 0 0 0.04472 -0.0202972 -0.0202972 0 0 0 922.654 -5.67856e-06 -5.67856e-06 0 0 0 29.7256 7.74927 12.6587 9.31771 -1 1 1 560 0.56 323.15 0 0 0.0448 -0.0203359 -0.0203359 0 0 0 923.233 -5.67856e-06 -5.67856e-06 0 0 0 29.7995 7.76385 12.6965 9.33914 -1 1 1 561 0.561 323.15 0 0 0.04488 -0.0203746 -0.0203746 0 0 0 923.811 -5.67856e-06 -5.67856e-06 0 0 0 29.8734 7.77844 12.7344 9.36057 -1 1 1 562 0.562 323.15 0 0 0.04496 -0.0204133 -0.0204133 0 0 0 924.389 -5.67856e-06 -5.67856e-06 0 0 0 29.9473 7.79304 12.7722 9.382 -1 1 1 563 0.563 323.15 0 0 0.04504 -0.020452 -0.020452 0 0 0 924.967 -5.67856e-06 -5.67856e-06 0 0 0 30.0213 7.80766 12.8102 9.40343 -1 1 1 564 0.564 323.15 0 0 0.04512 -0.0204907 -0.0204907 0 0 0 925.544 -5.67856e-06 -5.67856e-06 0 0 0 30.0953 7.82229 12.8481 9.42487 -1 1 1 565 0.565 323.15 0 0 0.0452 -0.0205294 -0.0205294 0 0 0 926.12 -5.67856e-06 -5.67856e-06 0 0 0 30.1693 7.83693 12.8861 9.44631 -1 1 1 566 0.566 323.15 0 0 0.04528 -0.0205681 -0.0205681 0 0 0 926.696 -5.67856e-06 -5.67856e-06 0 0 0 30.2435 7.85159 12.9241 9.46775 -1 1 1 567 0.567 323.15 0 0 0.04536 -0.0206068 -0.0206068 0 0 0 927.271 -5.67856e-06 -5.67856e-06 0 0 0 30.3176 7.86626 12.9622 9.4892 -1 1 1 568 0.568 323.15 0 0 0.04544 -0.0206455 -0.0206455 0 0 0 927.846 -5.67856e-06 -5.67856e-06 0 0 0 30.3918 7.88095 13.0002 9.51064 -1 1 1 569 0.569 323.15 0 0 0.04552 -0.0206843 -0.0206843 0 0 0 928.42 -5.67856e-06 -5.67856e-06 0 0 0 30.4661 7.89565 13.0383 9.53209 -1 1 1 570 0.57 323.15 0 0 0.0456 -0.020723 -0.020723 0 0 0 928.994 -5.67856e-06 -5.67856e-06 0 0 0 30.5404 7.91036 13.0765 9.55354 -1 1 1 571 0.571 323.15 0 0 0.04568 -0.0207617 -0.0207617 0 0 0 929.568 -5.67856e-06 -5.67856e-06 0 0 0 30.6147 7.92509 13.1146 9.575 -1 1 1 572 0.572 323.15 0 0 0.04576 -0.0208004 -0.0208004 0 0 0 930.141 -5.67856e-06 -5.67856e-06 0 0 0 30.6891 7.93984 13.1528 9.59645 -1 1 1 573 0.573 323.15 0 0 0.04584 -0.0208391 -0.0208391 0 0 0 930.713 -5.67856e-06 -5.67856e-06 0 0 0 30.7635 7.95459 13.191 9.61791 -1 1 1 574 0.574 323.15 0 0 0.04592 -0.0208779 -0.0208779 0 0 0 931.285 -5.67856e-06 -5.67856e-06 0 0 0 30.838 7.96936 13.2293 9.63937 -1 1 1 575 0.575 323.15 0 0 0.046 -0.0209166 -0.0209166 0 0 0 931.856 -5.67856e-06 -5.67856e-06 0 0 0 30.9125 7.98415 13.2676 9.66083 -1 1 1 576 0.576 323.15 0 0 0.04608 -0.0209553 -0.0209553 0 0 0 932.427 -5.67856e-06 -5.67856e-06 0 0 0 30.9871 7.99895 13.3059 9.6823 -1 1 1 577 0.577 323.15 0 0 0.04616 -0.020994 -0.020994 0 0 0 932.997 -5.67856e-06 -5.67856e-06 0 0 0 31.0617 8.01376 13.3442 9.70376 -1 1 1 578 0.578 323.15 0 0 0.04624 -0.0210328 -0.0210328 0 0 0 933.567 -5.67856e-06 -5.67856e-06 0 0 0 31.1364 8.02859 13.3826 9.72523 -1 1 1 579 0.579 323.15 0 0 0.04632 -0.0210715 -0.0210715 0 0 0 934.137 -5.67856e-06 -5.67856e-06 0 0 0 31.2111 8.04343 13.421 9.7467 -1 1 1 580 0.58 323.15 0 0 0.0464 -0.0211102 -0.0211102 0 0 0 934.706 -5.67856e-06 -5.67857e-06 0 0 0 31.2859 8.05828 13.4594 9.76817 -1 1 1 581 0.581 323.15 0 0 0.04648 -0.0211489 -0.0211489 0 0 0 935.274 -5.67856e-06 -5.67856e-06 0 0 0 31.3607 8.07315 13.4979 9.78965 -1 1 1 582 0.582 323.15 0 0 0.04656 -0.0211877 -0.0211877 0 0 0 935.842 -5.67856e-06 -5.67856e-06 0 0 0 31.4355 8.08803 13.5363 9.81113 -1 1 1 583 0.583 323.15 0 0 0.04664 -0.0212264 -0.0212264 0 0 0 936.409 -5.67856e-06 -5.67856e-06 0 0 0 31.5104 8.10293 13.5749 9.83261 -1 1 1 584 0.584 323.15 0 0 0.04672 -0.0212651 -0.0212651 0 0 0 936.976 -5.67856e-06 -5.67856e-06 0 0 0 31.5853 8.11784 13.6134 9.85409 -1 1 1 585 0.585 323.15 0 0 0.0468 -0.0213039 -0.0213039 0 0 0 937.543 -5.67856e-06 -5.67856e-06 0 0 0 31.6603 8.13277 13.652 9.87557 -1 1 1 586 0.586 323.15 0 0 0.04688 -0.0213426 -0.0213426 0 0 0 938.109 -5.67856e-06 -5.67856e-06 0 0 0 31.7353 8.14771 13.6906 9.89706 -1 1 1 587 0.587 323.15 0 0 0.04696 -0.0213813 -0.0213813 0 0 0 938.674 -5.67856e-06 -5.67856e-06 0 0 0 31.8104 8.16266 13.7292 9.91855 -1 1 1 588 0.588 323.15 0 0 0.04704 -0.0214201 -0.0214201 0 0 0 939.239 -5.67856e-06 -5.67857e-06 0 0 0 31.8855 8.17763 13.7679 9.94004 -1 1 1 589 0.589 323.15 0 0 0.04712 -0.0214588 -0.0214588 0 0 0 939.804 -5.67856e-06 -5.67856e-06 0 0 0 31.9607 8.19261 13.8065 9.96153 -1 1 1 590 0.59 323.15 0 0 0.0472 -0.0214975 -0.0214975 0 0 0 940.368 -5.67856e-06 -5.67856e-06 0 0 0 32.0359 8.20761 13.8453 9.98302 -1 1 1 591 0.591 323.15 0 0 0.04728 -0.0215363 -0.0215363 0 0 0 940.932 -5.67856e-06 -5.67856e-06 0 0 0 32.1111 8.22262 13.884 10.0045 -1 1 1 592 0.592 323.15 0 0 0.04736 -0.021575 -0.021575 0 0 0 941.495 -5.67856e-06 -5.67857e-06 0 0 0 32.1864 8.23765 13.9228 10.026 -1 1 1 593 0.593 323.15 0 0 0.04744 -0.0216138 -0.0216138 0 0 0 942.058 -5.67856e-06 -5.67856e-06 0 0 0 32.2618 8.25269 13.9616 10.0475 -1 1 1 594 0.594 323.15 0 0 0.04752 -0.0216525 -0.0216525 0 0 0 942.62 -5.67856e-06 -5.67856e-06 0 0 0 32.3372 8.26774 14.0004 10.069 -1 1 1 595 0.595 323.15 0 0 0.0476 -0.0216913 -0.0216913 0 0 0 943.182 -5.67856e-06 -5.67857e-06 0 0 0 32.4126 8.28281 14.0393 10.0905 -1 1 1 596 0.596 323.15 0 0 0.04768 -0.02173 -0.02173 0 0 0 943.743 -5.67856e-06 -5.67857e-06 0 0 0 32.4881 8.29789 14.0782 10.112 -1 1 1 597 0.597 323.15 0 0 0.04776 -0.0217687 -0.0217687 0 0 0 944.304 -5.67856e-06 -5.67857e-06 0 0 0 32.5636 8.31299 14.1171 10.1335 -1 1 1 598 0.598 323.15 0 0 0.04784 -0.0218075 -0.0218075 0 0 0 944.864 -5.67856e-06 -5.67857e-06 0 0 0 32.6392 8.3281 14.156 10.1551 -1 1 1 599 0.599 323.15 0 0 0.04792 -0.0218462 -0.0218462 0 0 0 945.424 -5.67856e-06 -5.67856e-06 0 0 0 32.7148 8.34322 14.195 10.1766 -1 1 1 600 0.6 323.15 0 0 0.048 -0.021885 -0.021885 0 0 0 945.983 -5.67856e-06 -5.67856e-06 0 0 0 32.7904 8.35836 14.234 10.1981 -1 1 1 601 0.601 323.15 0 0 0.04808 -0.0219237 -0.0219237 0 0 0 946.542 -5.67856e-06 -5.67857e-06 0 0 0 32.8661 8.37352 14.273 10.2196 -1 1 1 602 0.602 323.15 0 0 0.04816 -0.0219625 -0.0219625 0 0 0 947.101 -5.67856e-06 -5.67856e-06 0 0 0 32.9419 8.38869 14.3121 10.2411 -1 1 1 603 0.603 323.15 0 0 0.04824 -0.0220012 -0.0220012 0 0 0 947.659 -5.67856e-06 -5.67856e-06 0 0 0 33.0177 8.40387 14.3512 10.2626 -1 1 1 604 0.604 323.15 0 0 0.04832 -0.02204 -0.02204 0 0 0 948.217 -5.67856e-06 -5.67856e-06 0 0 0 33.0935 8.41907 14.3903 10.2842 -1 1 1 605 0.605 323.15 0 0 0.0484 -0.0220788 -0.0220788 0 0 0 948.774 -5.67856e-06 -5.67857e-06 0 0 0 33.1694 8.43428 14.4294 10.3057 -1 1 1 606 0.606 323.15 0 0 0.04848 -0.0221175 -0.0221175 0 0 0 949.331 -5.67856e-06 -5.67857e-06 0 0 0 33.2453 8.44951 14.4686 10.3272 -1 1 1 607 0.607 323.15 0 0 0.04856 -0.0221563 -0.0221563 0 0 0 949.887 -5.67856e-06 -5.67856e-06 0 0 0 33.3213 8.46475 14.5078 10.3487 -1 1 1 608 0.608 323.15 0 0 0.04864 -0.022195 -0.022195 0 0 0 950.443 -5.67856e-06 -5.67856e-06 0 0 0 33.3973 8.48 14.547 10.3703 -1 1 1 609 0.609 323.15 0 0 0.04872 -0.0222338 -0.0222338 0 0 0 950.998 -5.67856e-06 -5.67856e-06 0 0 0 33.4733 8.49527 14.5863 10.3918 -1 1 1 610 0.61 323.15 0 0 0.0488 -0.0222725 -0.0222725 0 0 0 951.553 -5.67856e-06 -5.67856e-06 0 0 0 33.5494 8.51055 14.6256 10.4133 -1 1 1 611 0.611 323.15 0 0 0.04888 -0.0223113 -0.0223113 0 0 0 952.108 -5.67856e-06 -5.67856e-06 0 0 0 33.6256 8.52585 14.6649 10.4349 -1 1 1 612 0.612 323.15 0 0 0.04896 -0.0223501 -0.0223501 0 0 0 952.662 -5.67856e-06 -5.67856e-06 0 0 0 33.7018 8.54117 14.7042 10.4564 -1 1 1 613 0.613 323.15 0 0 0.04904 -0.0223888 -0.0223888 0 0 0 953.216 -5.67856e-06 -5.67856e-06 0 0 0 33.778 8.55649 14.7436 10.478 -1 1 1 614 0.614 323.15 0 0 0.04912 -0.0224276 -0.0224276 0 0 0 953.769 -5.67856e-06 -5.67856e-06 0 0 0 33.8543 8.57184 14.783 10.4995 -1 1 1 615 0.615 323.15 0 0 0.0492 -0.0224663 -0.0224663 0 0 0 954.322 -5.67856e-06 -5.67856e-06 0 0 0 33.9306 8.58719 14.8224 10.521 -1 1 1 616 0.616 323.15 0 0 0.04928 -0.0225051 -0.0225051 0 0 0 954.874 -5.67856e-06 -5.67856e-06 0 0 0 34.007 8.60256 14.8618 10.5426 -1 1 1 617 0.617 323.15 0 0 0.04936 -0.0225439 -0.0225439 0 0 0 955.426 -5.67856e-06 -5.67856e-06 0 0 0 34.0834 8.61795 14.9013 10.5641 -1 1 1 618 0.618 323.15 0 0 0.04944 -0.0225826 -0.0225826 0 0 0 955.977 -5.67856e-06 -5.67856e-06 0 0 0 34.1599 8.63335 14.9408 10.5857 -1 1 1 619 0.619 323.15 0 0 0.04952 -0.0226214 -0.0226214 0 0 0 956.528 -5.67856e-06 -5.67856e-06 0 0 0 34.2364 8.64877 14.9804 10.6072 -1 1 1 620 0.62 323.15 0 0 0.0496 -0.0226602 -0.0226602 0 0 0 957.079 -5.67856e-06 -5.67856e-06 0 0 0 34.3129 8.66419 15.0199 10.6288 -1 1 1 621 0.621 323.15 0 0 0.04968 -0.022699 -0.022699 0 0 0 957.629 -5.67856e-06 -5.67856e-06 0 0 0 34.3895 8.67964 15.0595 10.6503 -1 1 1 622 0.622 323.15 0 0 0.04976 -0.0227377 -0.0227377 0 0 0 958.179 -5.67856e-06 -5.67857e-06 0 0 0 34.4661 8.6951 15.0991 10.6719 -1 1 1 623 0.623 323.15 0 0 0.04984 -0.0227765 -0.0227765 0 0 0 958.728 -5.67856e-06 -5.67857e-06 0 0 0 34.5428 8.71057 15.1388 10.6935 -1 1 1 624 0.624 323.15 0 0 0.04992 -0.0228153 -0.0228153 0 0 0 959.277 -5.67856e-06 -5.67857e-06 0 0 0 34.6195 8.72606 15.1784 10.715 -1 1 1 625 0.625 323.15 0 0 0.05 -0.022854 -0.022854 0 0 0 959.826 -5.67856e-06 -5.67857e-06 0 0 0 34.6963 8.74156 15.2181 10.7366 -1 1 1 626 0.626 323.15 0 0 0.05008 -0.0228928 -0.0228928 0 0 0 960.374 -5.67856e-06 -5.67857e-06 0 0 0 34.7731 8.75708 15.2579 10.7582 -1 1 1 627 0.627 323.15 0 0 0.05016 -0.0229316 -0.0229316 0 0 0 960.922 -5.67856e-06 -5.67856e-06 0 0 0 34.8499 8.77261 15.2976 10.7797 -1 1 1 628 0.628 323.15 0 0 0.05024 -0.0229704 -0.0229704 0 0 0 961.469 -5.67856e-06 -5.67856e-06 0 0 0 34.9268 8.78816 15.3374 10.8013 -1 1 1 629 0.629 323.15 0 0 0.05032 -0.0230091 -0.0230091 0 0 0 962.016 -5.67856e-06 -5.67856e-06 0 0 0 35.0038 8.80372 15.3772 10.8229 -1 1 1 630 0.63 323.15 0 0 0.0504 -0.0230479 -0.0230479 0 0 0 962.562 -5.67856e-06 -5.67856e-06 0 0 0 35.0808 8.81929 15.417 10.8444 -1 1 1 631 0.631 323.15 0 0 0.05048 -0.0230867 -0.0230867 0 0 0 963.108 -5.67856e-06 -5.67856e-06 0 0 0 35.1578 8.83488 15.4569 10.866 -1 1 1 632 0.632 323.15 0 0 0.05056 -0.0231255 -0.0231255 0 0 0 963.654 -5.67856e-06 -5.67856e-06 0 0 0 35.2349 8.85049 15.4968 10.8876 -1 1 1 633 0.633 323.15 0 0 0.05064 -0.0231643 -0.0231643 0 0 0 964.199 -5.67856e-06 -5.67856e-06 0 0 0 35.312 8.86611 15.5367 10.9092 -1 1 1 634 0.634 323.15 0 0 0.05072 -0.023203 -0.023203 0 0 0 964.744 -5.67856e-06 -5.67856e-06 0 0 0 35.3891 8.88175 15.5766 10.9307 -1 1 1 635 0.635 323.15 0 0 0.0508 -0.0232418 -0.0232418 0 0 0 965.288 -5.67856e-06 -5.67856e-06 0 0 0 35.4663 8.89739 15.6166 10.9523 -1 1 1 636 0.636 323.15 0 0 0.05088 -0.0232806 -0.0232806 0 0 0 965.832 -5.67856e-06 -5.67856e-06 0 0 0 35.5436 8.91306 15.6566 10.9739 -1 1 1 637 0.637 323.15 0 0 0.05096 -0.0233194 -0.0233194 0 0 0 966.376 -5.67856e-06 -5.67856e-06 0 0 0 35.6209 8.92874 15.6966 10.9955 -1 1 1 638 0.638 323.15 0 0 0.05104 -0.0233582 -0.0233582 0 0 0 966.919 -5.67856e-06 -5.67856e-06 0 0 0 35.6982 8.94443 15.7367 11.0171 -1 1 1 639 0.639 323.15 0 0 0.05112 -0.023397 -0.023397 0 0 0 967.462 -5.67856e-06 -5.67856e-06 0 0 0 35.7756 8.96014 15.7768 11.0387 -1 1 1 640 0.64 323.15 0 0 0.0512 -0.0234358 -0.0234358 0 0 0 968.004 -5.67856e-06 -5.67856e-06 0 0 0 35.853 8.97586 15.8169 11.0603 -1 1 1 641 0.641 323.15 0 0 0.05128 -0.0234745 -0.0234745 0 0 0 968.546 -5.67856e-06 -5.67856e-06 0 0 0 35.9305 8.9916 15.857 11.0819 -1 1 1 642 0.642 323.15 0 0 0.05136 -0.0235133 -0.0235133 0 0 0 969.088 -5.67856e-06 -5.67856e-06 0 0 0 36.008 9.00736 15.8972 11.1035 -1 1 1 643 0.643 323.15 0 0 0.05144 -0.0235521 -0.0235521 0 0 0 969.629 -5.67856e-06 -5.67856e-06 0 0 0 36.0855 9.02312 15.9373 11.125 -1 1 1 644 0.644 323.15 0 0 0.05152 -0.0235909 -0.0235909 0 0 0 970.169 -5.67856e-06 -5.67856e-06 0 0 0 36.1631 9.03891 15.9776 11.1466 -1 1 1 645 0.645 323.15 0 0 0.0516 -0.0236297 -0.0236297 0 0 0 970.71 -5.67856e-06 -5.67856e-06 0 0 0 36.2407 9.0547 16.0178 11.1682 -1 1 1 646 0.646 323.15 0 0 0.05168 -0.0236685 -0.0236685 0 0 0 971.25 -5.67856e-06 -5.67856e-06 0 0 0 36.3184 9.07052 16.0581 11.1898 -1 1 1 647 0.647 323.15 0 0 0.05176 -0.0237073 -0.0237073 0 0 0 971.789 -5.67856e-06 -5.67856e-06 0 0 0 36.3961 9.08634 16.0983 11.2114 -1 1 1 648 0.648 323.15 0 0 0.05184 -0.0237461 -0.0237461 0 0 0 972.329 -5.67856e-06 -5.67856e-06 0 0 0 36.4739 9.10219 16.1387 11.2331 -1 1 1 649 0.649 323.15 0 0 0.05192 -0.0237849 -0.0237849 0 0 0 972.867 -5.67856e-06 -5.67856e-06 0 0 0 36.5517 9.11804 16.179 11.2547 -1 1 1 650 0.65 323.15 0 0 0.052 -0.0238237 -0.0238237 0 0 0 973.406 -5.67856e-06 -5.67856e-06 0 0 0 36.6296 9.13391 16.2194 11.2763 -1 1 1 651 0.651 323.15 0 0 0.05208 -0.0238625 -0.0238625 0 0 0 973.944 -5.67856e-06 -5.67856e-06 0 0 0 36.7075 9.1498 16.2598 11.2979 -1 1 1 652 0.652 323.15 0 0 0.05216 -0.0239013 -0.0239013 0 0 0 974.481 -5.67856e-06 -5.67856e-06 0 0 0 36.7854 9.1657 16.3002 11.3195 -1 1 1 653 0.653 323.15 0 0 0.05224 -0.0239401 -0.0239401 0 0 0 975.019 -5.67856e-06 -5.67856e-06 0 0 0 36.8634 9.18162 16.3406 11.3411 -1 1 1 654 0.654 323.15 0 0 0.05232 -0.0239789 -0.0239789 0 0 0 975.555 -5.67856e-06 -5.67856e-06 0 0 0 36.9414 9.19755 16.3811 11.3627 -1 1 1 655 0.655 323.15 0 0 0.0524 -0.0240177 -0.0240177 0 0 0 976.092 -5.67856e-06 -5.67856e-06 0 0 0 37.0195 9.2135 16.4216 11.3843 -1 1 1 656 0.656 323.15 0 0 0.05248 -0.0240565 -0.0240565 0 0 0 976.628 -5.67856e-06 -5.67856e-06 0 0 0 37.0976 9.22946 16.4622 11.406 -1 1 1 657 0.657 323.15 0 0 0.05256 -0.0240953 -0.0240953 0 0 0 977.164 -5.67856e-06 -5.67856e-06 0 0 0 37.1757 9.24544 16.5027 11.4276 -1 1 1 658 0.658 323.15 0 0 0.05264 -0.0241341 -0.0241341 0 0 0 977.699 -5.67856e-06 -5.67856e-06 0 0 0 37.2539 9.26143 16.5433 11.4492 -1 1 1 659 0.659 323.15 0 0 0.05272 -0.0241729 -0.0241729 0 0 0 978.234 -5.67856e-06 -5.67856e-06 0 0 0 37.3322 9.27743 16.5839 11.4708 -1 1 1 660 0.66 323.15 0 0 0.0528 -0.0242117 -0.0242117 0 0 0 978.769 -5.67856e-06 -5.67856e-06 0 0 0 37.4104 9.29345 16.6245 11.4924 -1 1 1 661 0.661 323.15 0 0 0.05288 -0.0242505 -0.0242505 0 0 0 979.303 -5.67856e-06 -5.67856e-06 0 0 0 37.4888 9.30949 16.6652 11.5141 -1 1 1 662 0.662 323.15 0 0 0.05296 -0.0242893 -0.0242893 0 0 0 979.837 -5.67856e-06 -5.67856e-06 0 0 0 37.5671 9.32554 16.7059 11.5357 -1 1 1 663 0.663 323.15 0 0 0.05304 -0.0243281 -0.0243281 0 0 0 980.37 -5.67856e-06 -5.67856e-06 0 0 0 37.6455 9.34161 16.7466 11.5573 -1 1 1 664 0.664 323.15 0 0 0.05312 -0.0243669 -0.0243669 0 0 0 980.903 -5.67856e-06 -5.67856e-06 0 0 0 37.724 9.35769 16.7873 11.579 -1 1 1 665 0.665 323.15 0 0 0.0532 -0.0244057 -0.0244057 0 0 0 981.436 -5.67856e-06 -5.67856e-06 0 0 0 37.8025 9.37379 16.8281 11.6006 -1 1 1 666 0.666 323.15 0 0 0.05328 -0.0244445 -0.0244445 0 0 0 981.968 -5.67856e-06 -5.67856e-06 0 0 0 37.881 9.3899 16.8689 11.6222 -1 1 1 667 0.667 323.15 0 0 0.05336 -0.0244833 -0.0244833 0 0 0 982.5 -5.67856e-06 -5.67856e-06 0 0 0 37.9596 9.40602 16.9097 11.6439 -1 1 1 668 0.668 323.15 0 0 0.05344 -0.0245222 -0.0245222 0 0 0 983.032 -5.67856e-06 -5.67856e-06 0 0 0 38.0382 9.42217 16.9505 11.6655 -1 1 1 669 0.669 323.15 0 0 0.05352 -0.024561 -0.024561 0 0 0 983.563 -5.67856e-06 -5.67856e-06 0 0 0 38.1169 9.43832 16.9914 11.6872 -1 1 1 670 0.67 323.15 0 0 0.0536 -0.0245998 -0.0245998 0 0 0 984.094 -5.67856e-06 -5.67856e-06 0 0 0 38.1956 9.45449 17.0323 11.7088 -1 1 1 671 0.671 323.15 0 0 0.05368 -0.0246386 -0.0246386 0 0 0 984.624 -5.67856e-06 -5.67856e-06 0 0 0 38.2743 9.47068 17.0732 11.7304 -1 1 1 672 0.672 323.15 0 0 0.05376 -0.0246774 -0.0246774 0 0 0 985.154 -5.67856e-06 -5.67856e-06 0 0 0 38.3531 9.48688 17.1142 11.7521 -1 1 1 673 0.673 323.15 0 0 0.05384 -0.0247162 -0.0247162 0 0 0 985.684 -5.67856e-06 -5.67856e-06 0 0 0 38.432 9.5031 17.1551 11.7737 -1 1 1 674 0.674 323.15 0 0 0.05392 -0.024755 -0.024755 0 0 0 986.213 -5.67856e-06 -5.67856e-06 0 0 0 38.5108 9.51933 17.1961 11.7954 -1 1 1 675 0.675 323.15 0 0 0.054 -0.0247939 -0.0247939 0 0 0 986.742 -5.67856e-06 -5.67856e-06 0 0 0 38.5897 9.53558 17.2371 11.817 -1 1 1 676 0.676 323.15 0 0 0.05408 -0.0248327 -0.0248327 0 0 0 987.271 -5.67856e-06 -5.67856e-06 0 0 0 38.6687 9.55184 17.2782 11.8387 -1 1 1 677 0.677 323.15 0 0 0.05416 -0.0248715 -0.0248715 0 0 0 987.799 -5.67856e-06 -5.67856e-06 0 0 0 38.7477 9.56812 17.3193 11.8603 -1 1 1 678 0.678 323.15 0 0 0.05424 -0.0249103 -0.0249103 0 0 0 988.327 -5.67856e-06 -5.67856e-06 0 0 0 38.8268 9.58441 17.3604 11.882 -1 1 1 679 0.679 323.15 0 0 0.05432 -0.0249491 -0.0249491 0 0 0 988.855 -5.67856e-06 -5.67856e-06 0 0 0 38.9058 9.60072 17.4015 11.9036 -1 1 1 680 0.68 323.15 0 0 0.0544 -0.024988 -0.024988 0 0 0 989.382 -5.67856e-06 -5.67856e-06 0 0 0 38.985 9.61704 17.4426 11.9253 -1 1 1 681 0.681 323.15 0 0 0.05448 -0.0250268 -0.0250268 0 0 0 989.909 -5.67856e-06 -5.67856e-06 0 0 0 39.0641 9.63338 17.4838 11.947 -1 1 1 682 0.682 323.15 0 0 0.05456 -0.0250656 -0.0250656 0 0 0 990.435 -5.67856e-06 -5.67856e-06 0 0 0 39.1434 9.64973 17.525 11.9686 -1 1 1 683 0.683 323.15 0 0 0.05464 -0.0251044 -0.0251044 0 0 0 990.962 -5.67856e-06 -5.67856e-06 0 0 0 39.2226 9.6661 17.5662 11.9903 -1 1 1 684 0.684 323.15 0 0 0.05472 -0.0251433 -0.0251433 0 0 0 991.487 -5.67856e-06 -5.67856e-06 0 0 0 39.3019 9.68248 17.6075 12.012 -1 1 1 685 0.685 323.15 0 0 0.0548 -0.0251821 -0.0251821 0 0 0 992.013 -5.67856e-06 -5.67856e-06 0 0 0 39.3813 9.69888 17.6488 12.0336 -1 1 1 686 0.686 323.15 0 0 0.05488 -0.0252209 -0.0252209 0 0 0 992.538 -5.67856e-06 -5.67856e-06 0 0 0 39.4606 9.7153 17.6901 12.0553 -1 1 1 687 0.687 323.15 0 0 0.05496 -0.0252597 -0.0252597 0 0 0 993.063 -5.67856e-06 -5.67856e-06 0 0 0 39.5401 9.73173 17.7314 12.077 -1 1 1 688 0.688 323.15 0 0 0.05504 -0.0252986 -0.0252986 0 0 0 993.587 -5.67856e-06 -5.67856e-06 0 0 0 39.6195 9.74817 17.7727 12.0986 -1 1 1 689 0.689 323.15 0 0 0.05512 -0.0253374 -0.0253374 0 0 0 994.111 -5.67856e-06 -5.67856e-06 0 0 0 39.699 9.76463 17.8141 12.1203 -1 1 1 690 0.69 323.15 0 0 0.0552 -0.0253762 -0.0253762 0 0 0 994.635 -5.67856e-06 -5.67856e-06 0 0 0 39.7786 9.78111 17.8555 12.142 -1 1 1 691 0.691 323.15 0 0 0.05528 -0.025415 -0.025415 0 0 0 995.158 -5.67856e-06 -5.67856e-06 0 0 0 39.8582 9.7976 17.8969 12.1636 -1 1 1 692 0.692 323.15 0 0 0.05536 -0.0254539 -0.0254539 0 0 0 995.681 -5.67856e-06 -5.67856e-06 0 0 0 39.9378 9.8141 17.9384 12.1853 -1 1 1 693 0.693 323.15 0 0 0.05544 -0.0254927 -0.0254927 0 0 0 996.204 -5.67856e-06 -5.67856e-06 0 0 0 40.0175 9.83062 17.9799 12.207 -1 1 1 694 0.694 323.15 0 0 0.05552 -0.0255315 -0.0255315 0 0 0 996.726 -5.67856e-06 -5.67856e-06 0 0 0 40.0972 9.84716 18.0214 12.2287 -1 1 1 695 0.695 323.15 0 0 0.0556 -0.0255704 -0.0255704 0 0 0 997.248 -5.67856e-06 -5.67856e-06 0 0 0 40.177 9.86371 18.0629 12.2504 -1 1 1 696 0.696 323.15 0 0 0.05568 -0.0256092 -0.0256092 0 0 0 997.77 -5.67856e-06 -5.67856e-06 0 0 0 40.2568 9.88027 18.1044 12.272 -1 1 1 697 0.697 323.15 0 0 0.05576 -0.025648 -0.025648 0 0 0 998.291 -5.67856e-06 -5.67856e-06 0 0 0 40.3366 9.89686 18.146 12.2937 -1 1 1 698 0.698 323.15 0 0 0.05584 -0.0256869 -0.0256869 0 0 0 998.812 -5.67856e-06 -5.67856e-06 0 0 0 40.4165 9.91345 18.1876 12.3154 -1 1 1 699 0.699 323.15 0 0 0.05592 -0.0257257 -0.0257257 0 0 0 999.333 -5.67856e-06 -5.67856e-06 0 0 0 40.4964 9.93007 18.2292 12.3371 -1 1 1 700 0.7 323.15 0 0 0.056 -0.0257646 -0.0257646 0 0 0 999.853 -5.67856e-06 -5.67856e-06 0 0 0 40.5764 9.94669 18.2709 12.3588 -1 1 1 701 0.701 323.15 0 0 0.05608 -0.0258034 -0.0258034 0 0 0 1000.37 -5.67856e-06 -5.67856e-06 0 0 0 40.6564 9.96334 18.3126 12.3805 -1 1 1 702 0.702 323.15 0 0 0.05616 -0.0258422 -0.0258422 0 0 0 1000.89 -5.67856e-06 -5.67856e-06 0 0 0 40.7364 9.97999 18.3543 12.4022 -1 1 1 703 0.703 323.15 0 0 0.05624 -0.0258811 -0.0258811 0 0 0 1001.41 -5.67856e-06 -5.67856e-06 0 0 0 40.8165 9.99667 18.396 12.4239 -1 1 1 704 0.704 323.15 0 0 0.05632 -0.0259199 -0.0259199 0 0 0 1001.93 -5.67856e-06 -5.67856e-06 0 0 0 40.8967 10.0134 18.4377 12.4456 -1 1 1 705 0.705 323.15 0 0 0.0564 -0.0259587 -0.0259587 0 0 0 1002.45 -5.67856e-06 -5.67856e-06 0 0 0 40.9768 10.0301 18.4795 12.4673 -1 1 1 706 0.706 323.15 0 0 0.05648 -0.0259976 -0.0259976 0 0 0 1002.97 -5.67856e-06 -5.67856e-06 0 0 0 41.0571 10.0468 18.5213 12.489 -1 1 1 707 0.707 323.15 0 0 0.05656 -0.0260364 -0.0260364 0 0 0 1003.49 -5.67856e-06 -5.67856e-06 0 0 0 41.1373 10.0635 18.5631 12.5107 -1 1 1 708 0.708 323.15 0 0 0.05664 -0.0260753 -0.0260753 0 0 0 1004 -5.67856e-06 -5.67856e-06 0 0 0 41.2176 10.0803 18.605 12.5324 -1 1 1 709 0.709 323.15 0 0 0.05672 -0.0261141 -0.0261141 0 0 0 1004.52 -5.67856e-06 -5.67856e-06 0 0 0 41.298 10.097 18.6469 12.5541 -1 1 1 710 0.71 323.15 0 0 0.0568 -0.026153 -0.026153 0 0 0 1005.04 -5.67856e-06 -5.67856e-06 0 0 0 41.3783 10.1138 18.6888 12.5758 -1 1 1 711 0.711 323.15 0 0 0.05688 -0.0261918 -0.0261918 0 0 0 1005.55 -5.67856e-06 -5.67856e-06 0 0 0 41.4588 10.1306 18.7307 12.5975 -1 1 1 712 0.712 323.15 0 0 0.05696 -0.0262306 -0.0262306 0 0 0 1006.07 -5.67856e-06 -5.67856e-06 0 0 0 41.5392 10.1474 18.7726 12.6192 -1 1 1 713 0.713 323.15 0 0 0.05704 -0.0262695 -0.0262695 0 0 0 1006.59 -5.67856e-06 -5.67857e-06 0 0 0 41.6197 10.1642 18.8146 12.6409 -1 1 1 714 0.714 323.15 0 0 0.05712 -0.0263083 -0.0263083 0 0 0 1007.1 -5.67856e-06 -5.67856e-06 0 0 0 41.7003 10.1811 18.8566 12.6626 -1 1 1 715 0.715 323.15 0 0 0.0572 -0.0263472 -0.0263472 0 0 0 1007.62 -5.67856e-06 -5.67857e-06 0 0 0 41.7809 10.198 18.8986 12.6843 -1 1 1 716 0.716 323.15 0 0 0.05728 -0.026386 -0.026386 0 0 0 1008.13 -5.67856e-06 -5.67857e-06 0 0 0 41.8615 10.2148 18.9407 12.706 -1 1 1 717 0.717 323.15 0 0 0.05736 -0.0264249 -0.0264249 0 0 0 1008.65 -5.67856e-06 -5.67857e-06 0 0 0 41.9422 10.2317 18.9827 12.7277 -1 1 1 718 0.718 323.15 0 0 0.05744 -0.0264637 -0.0264637 0 0 0 1009.16 -5.67856e-06 -5.67857e-06 0 0 0 42.0229 10.2486 19.0248 12.7494 -1 1 1 719 0.719 323.15 0 0 0.05752 -0.0265026 -0.0265026 0 0 0 1009.68 -5.67856e-06 -5.67857e-06 0 0 0 42.1036 10.2655 19.0669 12.7712 -1 1 1 720 0.72 323.15 0 0 0.0576 -0.0265414 -0.0265414 0 0 0 1010.19 -5.67856e-06 -5.67856e-06 0 0 0 42.1844 10.2825 19.1091 12.7929 -1 1 1 721 0.721 323.15 0 0 0.05768 -0.0265803 -0.0265803 0 0 0 1010.7 -5.67856e-06 -5.67856e-06 0 0 0 42.2653 10.2994 19.1512 12.8146 -1 1 1 722 0.722 323.15 0 0 0.05776 -0.0266191 -0.0266191 0 0 0 1011.22 -5.67856e-06 -5.67857e-06 0 0 0 42.3461 10.3164 19.1934 12.8363 -1 1 1 723 0.723 323.15 0 0 0.05784 -0.026658 -0.026658 0 0 0 1011.73 -5.67856e-06 -5.67857e-06 0 0 0 42.4271 10.3334 19.2356 12.858 -1 1 1 724 0.724 323.15 0 0 0.05792 -0.0266969 -0.0266969 0 0 0 1012.24 -5.67856e-06 -5.67857e-06 0 0 0 42.508 10.3504 19.2779 12.8798 -1 1 1 725 0.725 323.15 0 0 0.058 -0.0267357 -0.0267357 0 0 0 1012.75 -5.67856e-06 -5.67857e-06 0 0 0 42.589 10.3674 19.3201 12.9015 -1 1 1 726 0.726 323.15 0 0 0.05808 -0.0267746 -0.0267746 0 0 0 1013.27 -5.67856e-06 -5.67856e-06 0 0 0 42.6701 10.3844 19.3624 12.9232 -1 1 1 727 0.727 323.15 0 0 0.05816 -0.0268134 -0.0268134 0 0 0 1013.78 -5.67856e-06 -5.67856e-06 0 0 0 42.7511 10.4015 19.4047 12.9449 -1 1 1 728 0.728 323.15 0 0 0.05824 -0.0268523 -0.0268523 0 0 0 1014.29 -5.67856e-06 -5.67856e-06 0 0 0 42.8323 10.4185 19.4471 12.9667 -1 1 1 729 0.729 323.15 0 0 0.05832 -0.0268911 -0.0268911 0 0 0 1014.8 -5.67856e-06 -5.67856e-06 0 0 0 42.9134 10.4356 19.4894 12.9884 -1 1 1 730 0.73 323.15 0 0 0.0584 -0.02693 -0.02693 0 0 0 1015.31 -5.67856e-06 -5.67857e-06 0 0 0 42.9946 10.4527 19.5318 13.0101 -1 1 1 731 0.731 323.15 0 0 0.05848 -0.0269689 -0.0269689 0 0 0 1015.82 -5.67856e-06 -5.67857e-06 0 0 0 43.0759 10.4698 19.5742 13.0319 -1 1 1 732 0.732 323.15 0 0 0.05856 -0.0270077 -0.0270077 0 0 0 1016.33 -5.67856e-06 -5.67856e-06 0 0 0 43.1572 10.4869 19.6167 13.0536 -1 1 1 733 0.733 323.15 0 0 0.05864 -0.0270466 -0.0270466 0 0 0 1016.84 -5.67856e-06 -5.67857e-06 0 0 0 43.2385 10.504 19.6591 13.0753 -1 1 1 734 0.734 323.15 0 0 0.05872 -0.0270854 -0.0270854 0 0 0 1017.35 -5.67856e-06 -5.67857e-06 0 0 0 43.3199 10.5212 19.7016 13.0971 -1 1 1 735 0.735 323.15 0 0 0.0588 -0.0271243 -0.0271243 0 0 0 1017.86 -5.67856e-06 -5.67856e-06 0 0 0 43.4013 10.5384 19.7441 13.1188 -1 1 1 736 0.736 323.15 0 0 0.05888 -0.0271632 -0.0271632 0 0 0 1018.37 -5.67856e-06 -5.67857e-06 0 0 0 43.4827 10.5555 19.7866 13.1406 -1 1 1 737 0.737 323.15 0 0 0.05896 -0.027202 -0.027202 0 0 0 1018.87 -5.67856e-06 -5.67857e-06 0 0 0 43.5642 10.5727 19.8292 13.1623 -1 1 1 738 0.738 323.15 0 0 0.05904 -0.0272409 -0.0272409 0 0 0 1019.38 -5.67856e-06 -5.67856e-06 0 0 0 43.6457 10.59 19.8717 13.184 -1 1 1 739 0.739 323.15 0 0 0.05912 -0.0272797 -0.0272797 0 0 0 1019.89 -5.67856e-06 -5.67856e-06 0 0 0 43.7273 10.6072 19.9143 13.2058 -1 1 1 740 0.74 323.15 0 0 0.0592 -0.0273186 -0.0273186 0 0 0 1020.4 -5.67856e-06 -5.67856e-06 0 0 0 43.8089 10.6244 19.9569 13.2275 -1 1 1 741 0.741 323.15 0 0 0.05928 -0.0273575 -0.0273575 0 0 0 1020.91 -5.67856e-06 -5.67857e-06 0 0 0 43.8906 10.6417 19.9996 13.2493 -1 1 1 742 0.742 323.15 0 0 0.05936 -0.0273963 -0.0273963 0 0 0 1021.41 -5.67856e-06 -5.67857e-06 0 0 0 43.9723 10.659 20.0423 13.271 -1 1 1 743 0.743 323.15 0 0 0.05944 -0.0274352 -0.0274352 0 0 0 1021.92 -5.67856e-06 -5.67857e-06 0 0 0 44.054 10.6763 20.0849 13.2928 -1 1 1 744 0.744 323.15 0 0 0.05952 -0.0274741 -0.0274741 0 0 0 1022.43 -5.67856e-06 -5.67857e-06 0 0 0 44.1358 10.6936 20.1277 13.3145 -1 1 1 745 0.745 323.15 0 0 0.0596 -0.027513 -0.027513 0 0 0 1022.93 -5.67856e-06 -5.67857e-06 0 0 0 44.2176 10.7109 20.1704 13.3363 -1 1 1 746 0.746 323.15 0 0 0.05968 -0.0275518 -0.0275518 0 0 0 1023.44 -5.67856e-06 -5.67857e-06 0 0 0 44.2994 10.7282 20.2132 13.358 -1 1 1 747 0.747 323.15 0 0 0.05976 -0.0275907 -0.0275907 0 0 0 1023.94 -5.67856e-06 -5.67857e-06 0 0 0 44.3813 10.7456 20.2559 13.3798 -1 1 1 748 0.748 323.15 0 0 0.05984 -0.0276296 -0.0276296 0 0 0 1024.45 -5.67856e-06 -5.67857e-06 0 0 0 44.4633 10.763 20.2988 13.4015 -1 1 1 749 0.749 323.15 0 0 0.05992 -0.0276684 -0.0276684 0 0 0 1024.95 -5.67856e-06 -5.67857e-06 0 0 0 44.5452 10.7804 20.3416 13.4233 -1 1 1 750 0.75 323.15 0 0 0.06 -0.0277073 -0.0277073 0 0 0 1025.46 -5.67856e-06 -5.67857e-06 0 0 0 44.6273 10.7978 20.3844 13.4451 -1 1 1 751 0.751 323.15 0 0 0.06008 -0.0277462 -0.0277462 0 0 0 1025.96 -5.67856e-06 -5.67857e-06 0 0 0 44.7093 10.8152 20.4273 13.4668 -1 1 1 752 0.752 323.15 0 0 0.06016 -0.0277851 -0.0277851 0 0 0 1026.47 -5.67856e-06 -5.67857e-06 0 0 0 44.7914 10.8326 20.4702 13.4886 -1 1 1 753 0.753 323.15 0 0 0.06024 -0.0278239 -0.0278239 0 0 0 1026.97 -5.67856e-06 -5.67857e-06 0 0 0 44.8736 10.8501 20.5131 13.5103 -1 1 1 754 0.754 323.15 0 0 0.06032 -0.0278628 -0.0278628 0 0 0 1027.47 -5.67856e-06 -5.67857e-06 0 0 0 44.9557 10.8675 20.5561 13.5321 -1 1 1 755 0.755 323.15 0 0 0.0604 -0.0279017 -0.0279017 0 0 0 1027.98 -5.67856e-06 -5.67857e-06 0 0 0 45.0379 10.885 20.5991 13.5539 -1 1 1 756 0.756 323.15 0 0 0.06048 -0.0279406 -0.0279406 0 0 0 1028.48 -5.67856e-06 -5.67857e-06 0 0 0 45.1202 10.9025 20.6421 13.5756 -1 1 1 757 0.757 323.15 0 0 0.06056 -0.0279794 -0.0279794 0 0 0 1028.98 -5.67856e-06 -5.67857e-06 0 0 0 45.2025 10.92 20.6851 13.5974 -1 1 1 758 0.758 323.15 0 0 0.06064 -0.0280183 -0.0280183 0 0 0 1029.48 -5.67856e-06 -5.67857e-06 0 0 0 45.2848 10.9375 20.7281 13.6192 -1 1 1 759 0.759 323.15 0 0 0.06072 -0.0280572 -0.0280572 0 0 0 1029.98 -5.67856e-06 -5.67857e-06 0 0 0 45.3672 10.9551 20.7712 13.6409 -1 1 1 760 0.76 323.15 0 0 0.0608 -0.0280961 -0.0280961 0 0 0 1030.49 -5.67856e-06 -5.67857e-06 0 0 0 45.4496 10.9726 20.8143 13.6627 -1 1 1 761 0.761 323.15 0 0 0.06088 -0.0281349 -0.0281349 0 0 0 1030.99 -5.67856e-06 -5.67857e-06 0 0 0 45.5321 10.9902 20.8574 13.6845 -1 1 1 762 0.762 323.15 0 0 0.06096 -0.0281738 -0.0281738 0 0 0 1031.49 -5.67856e-06 -5.67857e-06 0 0 0 45.6146 11.0078 20.9005 13.7063 -1 1 1 763 0.763 323.15 0 0 0.06104 -0.0282127 -0.0282127 0 0 0 1031.99 -5.67856e-06 -5.67857e-06 0 0 0 45.6971 11.0254 20.9437 13.728 -1 1 1 764 0.764 323.15 0 0 0.06112 -0.0282516 -0.0282516 0 0 0 1032.49 -5.67856e-06 -5.67857e-06 0 0 0 45.7797 11.043 20.9869 13.7498 -1 1 1 765 0.765 323.15 0 0 0.0612 -0.0282905 -0.0282905 0 0 0 1032.99 -5.67856e-06 -5.67857e-06 0 0 0 45.8623 11.0607 21.0301 13.7716 -1 1 1 766 0.766 323.15 0 0 0.06128 -0.0283293 -0.0283293 0 0 0 1033.49 -5.67856e-06 -5.67857e-06 0 0 0 45.945 11.0783 21.0733 13.7934 -1 1 1 767 0.767 323.15 0 0 0.06136 -0.0283682 -0.0283682 0 0 0 1033.99 -5.67856e-06 -5.67856e-06 0 0 0 46.0277 11.096 21.1165 13.8152 -1 1 1 768 0.768 323.15 0 0 0.06144 -0.0284071 -0.0284071 0 0 0 1034.49 -5.67856e-06 -5.67856e-06 0 0 0 46.1104 11.1137 21.1598 13.8369 -1 1 1 769 0.769 323.15 0 0 0.06152 -0.028446 -0.028446 0 0 0 1034.99 -5.67856e-06 -5.67856e-06 0 0 0 46.1932 11.1314 21.2031 13.8587 -1 1 1 770 0.77 323.15 0 0 0.0616 -0.0284849 -0.0284849 0 0 0 1035.49 -5.67856e-06 -5.67856e-06 0 0 0 46.276 11.1491 21.2464 13.8805 -1 1 1 771 0.771 323.15 0 0 0.06168 -0.0285238 -0.0285238 0 0 0 1035.99 -5.67856e-06 -5.67857e-06 0 0 0 46.3589 11.1668 21.2898 13.9023 -1 1 1 772 0.772 323.15 0 0 0.06176 -0.0285627 -0.0285627 0 0 0 1036.48 -5.67856e-06 -5.67857e-06 0 0 0 46.4418 11.1846 21.3331 13.9241 -1 1 1 773 0.773 323.15 0 0 0.06184 -0.0286015 -0.0286015 0 0 0 1036.98 -5.67856e-06 -5.67856e-06 0 0 0 46.5247 11.2024 21.3765 13.9459 -1 1 1 774 0.774 323.15 0 0 0.06192 -0.0286404 -0.0286404 0 0 0 1037.48 -5.67856e-06 -5.67856e-06 0 0 0 46.6077 11.2201 21.4199 13.9677 -1 1 1 775 0.775 323.15 0 0 0.062 -0.0286793 -0.0286793 0 0 0 1037.98 -5.67856e-06 -5.67856e-06 0 0 0 46.6907 11.2379 21.4634 13.9894 -1 1 1 776 0.776 323.15 0 0 0.06208 -0.0287182 -0.0287182 0 0 0 1038.47 -5.67856e-06 -5.67856e-06 0 0 0 46.7738 11.2557 21.5068 14.0112 -1 1 1 777 0.777 323.15 0 0 0.06216 -0.0287571 -0.0287571 0 0 0 1038.97 -5.67856e-06 -5.67856e-06 0 0 0 46.8569 11.2736 21.5503 14.033 -1 1 1 778 0.778 323.15 0 0 0.06224 -0.028796 -0.028796 0 0 0 1039.47 -5.67856e-06 -5.67856e-06 0 0 0 46.94 11.2914 21.5938 14.0548 -1 1 1 779 0.779 323.15 0 0 0.06232 -0.0288349 -0.0288349 0 0 0 1039.96 -5.67856e-06 -5.67856e-06 0 0 0 47.0232 11.3093 21.6373 14.0766 -1 1 1 780 0.78 323.15 0 0 0.0624 -0.0288738 -0.0288738 0 0 0 1040.46 -5.67856e-06 -5.67857e-06 0 0 0 47.1064 11.3271 21.6809 14.0984 -1 1 1 781 0.781 323.15 0 0 0.06248 -0.0289127 -0.0289127 0 0 0 1040.96 -5.67856e-06 -5.67857e-06 0 0 0 47.1897 11.345 21.7244 14.1202 -1 1 1 782 0.782 323.15 0 0 0.06256 -0.0289515 -0.0289515 0 0 0 1041.45 -5.67856e-06 -5.67857e-06 0 0 0 47.273 11.3629 21.768 14.142 -1 1 1 783 0.783 323.15 0 0 0.06264 -0.0289904 -0.0289904 0 0 0 1041.95 -5.67856e-06 -5.67857e-06 0 0 0 47.3563 11.3809 21.8116 14.1638 -1 1 1 784 0.784 323.15 0 0 0.06272 -0.0290293 -0.0290293 0 0 0 1042.44 -5.67856e-06 -5.67857e-06 0 0 0 47.4397 11.3988 21.8553 14.1856 -1 1 1 785 0.785 323.15 0 0 0.0628 -0.0290682 -0.0290682 0 0 0 1042.94 -5.67856e-06 -5.67857e-06 0 0 0 47.5231 11.4168 21.8989 14.2074 -1 1 1 786 0.786 323.15 0 0 0.06288 -0.0291071 -0.0291071 0 0 0 1043.43 -5.67856e-06 -5.67856e-06 0 0 0 47.6065 11.4347 21.9426 14.2292 -1 1 1 787 0.787 323.15 0 0 0.06296 -0.029146 -0.029146 0 0 0 1043.92 -5.67856e-06 -5.67857e-06 0 0 0 47.69 11.4527 21.9863 14.251 -1 1 1 788 0.788 323.15 0 0 0.06304 -0.0291849 -0.0291849 0 0 0 1044.42 -5.67856e-06 -5.67856e-06 0 0 0 47.7736 11.4707 22.03 14.2728 -1 1 1 789 0.789 323.15 0 0 0.06312 -0.0292238 -0.0292238 0 0 0 1044.91 -5.67856e-06 -5.67856e-06 0 0 0 47.8571 11.4887 22.0738 14.2946 -1 1 1 790 0.79 323.15 0 0 0.0632 -0.0292627 -0.0292627 0 0 0 1045.41 -5.67856e-06 -5.67856e-06 0 0 0 47.9408 11.5068 22.1175 14.3165 -1 1 1 791 0.791 323.15 0 0 0.06328 -0.0293016 -0.0293016 0 0 0 1045.9 -5.67856e-06 -5.67856e-06 0 0 0 48.0244 11.5248 22.1613 14.3383 -1 1 1 792 0.792 323.15 0 0 0.06336 -0.0293405 -0.0293405 0 0 0 1046.39 -5.67856e-06 -5.67856e-06 0 0 0 48.1081 11.5429 22.2052 14.3601 -1 1 1 793 0.793 323.15 0 0 0.06344 -0.0293794 -0.0293794 0 0 0 1046.88 -5.67856e-06 -5.67856e-06 0 0 0 48.1918 11.561 22.249 14.3819 -1 1 1 794 0.794 323.15 0 0 0.06352 -0.0294183 -0.0294183 0 0 0 1047.38 -5.67856e-06 -5.67856e-06 0 0 0 48.2756 11.5791 22.2928 14.4037 -1 1 1 795 0.795 323.15 0 0 0.0636 -0.0294572 -0.0294572 0 0 0 1047.87 -5.67856e-06 -5.67856e-06 0 0 0 48.3594 11.5972 22.3367 14.4255 -1 1 1 796 0.796 323.15 0 0 0.06368 -0.0294961 -0.0294961 0 0 0 1048.36 -5.67856e-06 -5.67856e-06 0 0 0 48.4433 11.6153 22.3806 14.4473 -1 1 1 797 0.797 323.15 0 0 0.06376 -0.029535 -0.029535 0 0 0 1048.85 -5.67856e-06 -5.67856e-06 0 0 0 48.5272 11.6334 22.4246 14.4691 -1 1 1 798 0.798 323.15 0 0 0.06384 -0.0295739 -0.0295739 0 0 0 1049.34 -5.67856e-06 -5.67856e-06 0 0 0 48.6111 11.6516 22.4685 14.491 -1 1 1 799 0.799 323.15 0 0 0.06392 -0.0296128 -0.0296128 0 0 0 1049.83 -5.67856e-06 -5.67856e-06 0 0 0 48.695 11.6698 22.5125 14.5128 -1 1 1 800 0.8 323.15 0 0 0.064 -0.0296517 -0.0296517 0 0 0 1050.32 -5.67856e-06 -5.67856e-06 0 0 0 48.7791 11.688 22.5565 14.5346 -1 1 1 801 0.801 323.15 0 0 0.06408 -0.0296906 -0.0296906 0 0 0 1050.81 -5.67856e-06 -5.67856e-06 0 0 0 48.8631 11.7062 22.6005 14.5564 -1 1 1 802 0.802 323.15 0 0 0.06416 -0.0297295 -0.0297295 0 0 0 1051.3 -5.67856e-06 -5.67856e-06 0 0 0 48.9472 11.7244 22.6445 14.5782 -1 1 1 803 0.803 323.15 0 0 0.06424 -0.0297684 -0.0297684 0 0 0 1051.79 -5.67856e-06 -5.67856e-06 0 0 0 49.0313 11.7427 22.6886 14.6001 -1 1 1 804 0.804 323.15 0 0 0.06432 -0.0298073 -0.0298073 0 0 0 1052.28 -5.67856e-06 -5.67856e-06 0 0 0 49.1155 11.7609 22.7327 14.6219 -1 1 1 805 0.805 323.15 0 0 0.0644 -0.0298462 -0.0298462 0 0 0 1052.77 -5.67856e-06 -5.67856e-06 0 0 0 49.1997 11.7792 22.7768 14.6437 -1 1 1 806 0.806 323.15 0 0 0.06448 -0.0298851 -0.0298851 0 0 0 1053.26 -5.67856e-06 -5.67856e-06 0 0 0 49.2839 11.7975 22.8209 14.6656 -1 1 1 807 0.807 323.15 0 0 0.06456 -0.029924 -0.029924 0 0 0 1053.75 -5.67856e-06 -5.67856e-06 0 0 0 49.3682 11.8158 22.865 14.6874 -1 1 1 808 0.808 323.15 0 0 0.06464 -0.029963 -0.029963 0 0 0 1054.24 -5.67856e-06 -5.67856e-06 0 0 0 49.4525 11.8341 22.9092 14.7092 -1 1 1 809 0.809 323.15 0 0 0.06472 -0.0300019 -0.0300019 0 0 0 1054.73 -5.67856e-06 -5.67856e-06 0 0 0 49.5369 11.8524 22.9534 14.731 -1 1 1 810 0.81 323.15 0 0 0.0648 -0.0300408 -0.0300408 0 0 0 1055.22 -5.67856e-06 -5.67856e-06 0 0 0 49.6213 11.8708 22.9976 14.7529 -1 1 1 811 0.811 323.15 0 0 0.06488 -0.0300797 -0.0300797 0 0 0 1055.7 -5.67856e-06 -5.67856e-06 0 0 0 49.7057 11.8892 23.0419 14.7747 -1 1 1 812 0.812 323.15 0 0 0.06496 -0.0301186 -0.0301186 0 0 0 1056.19 -5.67856e-06 -5.67856e-06 0 0 0 49.7902 11.9075 23.0861 14.7965 -1 1 1 813 0.813 323.15 0 0 0.06504 -0.0301575 -0.0301575 0 0 0 1056.68 -5.67856e-06 -5.67856e-06 0 0 0 49.8747 11.9259 23.1304 14.8184 -1 1 1 814 0.814 323.15 0 0 0.06512 -0.0301964 -0.0301964 0 0 0 1057.17 -5.67856e-06 -5.67856e-06 0 0 0 49.9593 11.9444 23.1747 14.8402 -1 1 1 815 0.815 323.15 0 0 0.0652 -0.0302353 -0.0302353 0 0 0 1057.65 -5.67856e-06 -5.67856e-06 0 0 0 50.0438 11.9628 23.219 14.862 -1 1 1 816 0.816 323.15 0 0 0.06528 -0.0302742 -0.0302742 0 0 0 1058.14 -5.67856e-06 -5.67856e-06 0 0 0 50.1285 11.9812 23.2634 14.8839 -1 1 1 817 0.817 323.15 0 0 0.06536 -0.0303131 -0.0303131 0 0 0 1058.63 -5.67856e-06 -5.67856e-06 0 0 0 50.2131 11.9997 23.3077 14.9057 -1 1 1 818 0.818 323.15 0 0 0.06544 -0.0303521 -0.0303521 0 0 0 1059.11 -5.67856e-06 -5.67856e-06 0 0 0 50.2979 12.0182 23.3521 14.9276 -1 1 1 819 0.819 323.15 0 0 0.06552 -0.030391 -0.030391 0 0 0 1059.6 -5.67856e-06 -5.67856e-06 0 0 0 50.3826 12.0367 23.3965 14.9494 -1 1 1 820 0.82 323.15 0 0 0.0656 -0.0304299 -0.0304299 0 0 0 1060.08 -5.67856e-06 -5.67856e-06 0 0 0 50.4674 12.0552 23.441 14.9713 -1 1 1 821 0.821 323.15 0 0 0.06568 -0.0304688 -0.0304688 0 0 0 1060.57 -5.67856e-06 -5.67856e-06 0 0 0 50.5522 12.0737 23.4854 14.9931 -1 1 1 822 0.822 323.15 0 0 0.06576 -0.0305077 -0.0305077 0 0 0 1061.05 -5.67856e-06 -5.67856e-06 0 0 0 50.6371 12.0923 23.5299 15.0149 -1 1 1 823 0.823 323.15 0 0 0.06584 -0.0305466 -0.0305466 0 0 0 1061.54 -5.67856e-06 -5.67856e-06 0 0 0 50.722 12.1108 23.5744 15.0368 -1 1 1 824 0.824 323.15 0 0 0.06592 -0.0305856 -0.0305856 0 0 0 1062.02 -5.67856e-06 -5.67856e-06 0 0 0 50.8069 12.1294 23.6189 15.0586 -1 1 1 825 0.825 323.15 0 0 0.066 -0.0306245 -0.0306245 0 0 0 1062.51 -5.67856e-06 -5.67856e-06 0 0 0 50.8919 12.148 23.6634 15.0805 -1 1 1 826 0.826 323.15 0 0 0.06608 -0.0306634 -0.0306634 0 0 0 1062.99 -5.67856e-06 -5.67856e-06 0 0 0 50.9769 12.1666 23.708 15.1023 -1 1 1 827 0.827 323.15 0 0 0.06616 -0.0307023 -0.0307023 0 0 0 1063.48 -5.67856e-06 -5.67856e-06 0 0 0 51.062 12.1852 23.7526 15.1242 -1 1 1 828 0.828 323.15 0 0 0.06624 -0.0307412 -0.0307412 0 0 0 1063.96 -5.67856e-06 -5.67856e-06 0 0 0 51.1471 12.2039 23.7972 15.146 -1 1 1 829 0.829 323.15 0 0 0.06632 -0.0307801 -0.0307801 0 0 0 1064.44 -5.67856e-06 -5.67856e-06 0 0 0 51.2322 12.2225 23.8418 15.1679 -1 1 1 830 0.83 323.15 0 0 0.0664 -0.0308191 -0.0308191 0 0 0 1064.93 -5.67856e-06 -5.67856e-06 0 0 0 51.3174 12.2412 23.8865 15.1897 -1 1 1 831 0.831 323.15 0 0 0.06648 -0.030858 -0.030858 0 0 0 1065.41 -5.67856e-06 -5.67856e-06 0 0 0 51.4026 12.2599 23.9311 15.2116 -1 1 1 832 0.832 323.15 0 0 0.06656 -0.0308969 -0.0308969 0 0 0 1065.89 -5.67856e-06 -5.67856e-06 0 0 0 51.4879 12.2786 23.9758 15.2335 -1 1 1 833 0.833 323.15 0 0 0.06664 -0.0309358 -0.0309358 0 0 0 1066.37 -5.67856e-06 -5.67856e-06 0 0 0 51.5732 12.2973 24.0205 15.2553 -1 1 1 834 0.834 323.15 0 0 0.06672 -0.0309747 -0.0309747 0 0 0 1066.86 -5.67856e-06 -5.67856e-06 0 0 0 51.6585 12.3161 24.0653 15.2772 -1 1 1 835 0.835 323.15 0 0 0.0668 -0.0310137 -0.0310137 0 0 0 1067.34 -5.67856e-06 -5.67856e-06 0 0 0 51.7439 12.3348 24.11 15.299 -1 1 1 836 0.836 323.15 0 0 0.06688 -0.0310526 -0.0310526 0 0 0 1067.82 -5.67856e-06 -5.67856e-06 0 0 0 51.8293 12.3536 24.1548 15.3209 -1 1 1 837 0.837 323.15 0 0 0.06696 -0.0310915 -0.0310915 0 0 0 1068.3 -5.67856e-06 -5.67856e-06 0 0 0 51.9147 12.3724 24.1996 15.3427 -1 1 1 838 0.838 323.15 0 0 0.06704 -0.0311304 -0.0311304 0 0 0 1068.78 -5.67856e-06 -5.67856e-06 0 0 0 52.0002 12.3912 24.2444 15.3646 -1 1 1 839 0.839 323.15 0 0 0.06712 -0.0311694 -0.0311694 0 0 0 1069.26 -5.67856e-06 -5.67856e-06 0 0 0 52.0857 12.41 24.2892 15.3865 -1 1 1 840 0.84 323.15 0 0 0.0672 -0.0312083 -0.0312083 0 0 0 1069.74 -5.67856e-06 -5.67856e-06 0 0 0 52.1713 12.4288 24.3341 15.4083 -1 1 1 841 0.841 323.15 0 0 0.06728 -0.0312472 -0.0312472 0 0 0 1070.22 -5.67856e-06 -5.67856e-06 0 0 0 52.2569 12.4477 24.379 15.4302 -1 1 1 842 0.842 323.15 0 0 0.06736 -0.0312861 -0.0312861 0 0 0 1070.7 -5.67856e-06 -5.67856e-06 0 0 0 52.3425 12.4665 24.4239 15.4521 -1 1 1 843 0.843 323.15 0 0 0.06744 -0.0313251 -0.0313251 0 0 0 1071.18 -5.67856e-06 -5.67856e-06 0 0 0 52.4282 12.4854 24.4688 15.4739 -1 1 1 844 0.844 323.15 0 0 0.06752 -0.031364 -0.031364 0 0 0 1071.66 -5.67856e-06 -5.67856e-06 0 0 0 52.5139 12.5043 24.5138 15.4958 -1 1 1 845 0.845 323.15 0 0 0.0676 -0.0314029 -0.0314029 0 0 0 1072.14 -5.67856e-06 -5.67856e-06 0 0 0 52.5996 12.5232 24.5587 15.5177 -1 1 1 846 0.846 323.15 0 0 0.06768 -0.0314419 -0.0314419 0 0 0 1072.62 -5.67856e-06 -5.67856e-06 0 0 0 52.6854 12.5422 24.6037 15.5395 -1 1 1 847 0.847 323.15 0 0 0.06776 -0.0314808 -0.0314808 0 0 0 1073.1 -5.67856e-06 -5.67856e-06 0 0 0 52.7713 12.5611 24.6487 15.5614 -1 1 1 848 0.848 323.15 0 0 0.06784 -0.0315197 -0.0315197 0 0 0 1073.58 -5.67856e-06 -5.67856e-06 0 0 0 52.8571 12.5801 24.6938 15.5833 -1 1 1 849 0.849 323.15 0 0 0.06792 -0.0315586 -0.0315586 0 0 0 1074.06 -5.67856e-06 -5.67856e-06 0 0 0 52.943 12.5991 24.7388 15.6052 -1 1 1 850 0.85 323.15 0 0 0.068 -0.0315976 -0.0315976 0 0 0 1074.54 -5.67856e-06 -5.67856e-06 0 0 0 53.029 12.6181 24.7839 15.627 -1 1 1 851 0.851 323.15 0 0 0.06808 -0.0316365 -0.0316365 0 0 0 1075.02 -5.67856e-06 -5.67856e-06 0 0 0 53.115 12.6371 24.829 15.6489 -1 1 1 852 0.852 323.15 0 0 0.06816 -0.0316754 -0.0316754 0 0 0 1075.49 -5.67856e-06 -5.67856e-06 0 0 0 53.201 12.6561 24.8741 15.6708 -1 1 1 853 0.853 323.15 0 0 0.06824 -0.0317144 -0.0317144 0 0 0 1075.97 -5.67856e-06 -5.67856e-06 0 0 0 53.287 12.6751 24.9192 15.6927 -1 1 1 854 0.854 323.15 0 0 0.06832 -0.0317533 -0.0317533 0 0 0 1076.45 -5.67856e-06 -5.67856e-06 0 0 0 53.3731 12.6942 24.9644 15.7146 -1 1 1 855 0.855 323.15 0 0 0.0684 -0.0317922 -0.0317922 0 0 0 1076.93 -5.67856e-06 -5.67856e-06 0 0 0 53.4593 12.7133 25.0096 15.7364 -1 1 1 856 0.856 323.15 0 0 0.06848 -0.0318312 -0.0318312 0 0 0 1077.4 -5.67856e-06 -5.67856e-06 0 0 0 53.5454 12.7324 25.0548 15.7583 -1 1 1 857 0.857 323.15 0 0 0.06856 -0.0318701 -0.0318701 0 0 0 1077.88 -5.67856e-06 -5.67856e-06 0 0 0 53.6317 12.7515 25.1 15.7802 -1 1 1 858 0.858 323.15 0 0 0.06864 -0.031909 -0.031909 0 0 0 1078.36 -5.67856e-06 -5.67856e-06 0 0 0 53.7179 12.7706 25.1452 15.8021 -1 1 1 859 0.859 323.15 0 0 0.06872 -0.031948 -0.031948 0 0 0 1078.83 -5.67856e-06 -5.67856e-06 0 0 0 53.8042 12.7898 25.1905 15.824 -1 1 1 860 0.86 323.15 0 0 0.0688 -0.0319869 -0.0319869 0 0 0 1079.31 -5.67856e-06 -5.67856e-06 0 0 0 53.8905 12.8089 25.2358 15.8458 -1 1 1 861 0.861 323.15 0 0 0.06888 -0.0320258 -0.0320258 0 0 0 1079.79 -5.67856e-06 -5.67856e-06 0 0 0 53.9769 12.8281 25.2811 15.8677 -1 1 1 862 0.862 323.15 0 0 0.06896 -0.0320648 -0.0320648 0 0 0 1080.26 -5.67856e-06 -5.67856e-06 0 0 0 54.0633 12.8473 25.3264 15.8896 -1 1 1 863 0.863 323.15 0 0 0.06904 -0.0321037 -0.0321037 0 0 0 1080.74 -5.67856e-06 -5.67856e-06 0 0 0 54.1497 12.8665 25.3717 15.9115 -1 1 1 864 0.864 323.15 0 0 0.06912 -0.0321426 -0.0321426 0 0 0 1081.21 -5.67856e-06 -5.67856e-06 0 0 0 54.2362 12.8857 25.4171 15.9334 -1 1 1 865 0.865 323.15 0 0 0.0692 -0.0321816 -0.0321816 0 0 0 1081.69 -5.67856e-06 -5.67856e-06 0 0 0 54.3227 12.9049 25.4625 15.9553 -1 1 1 866 0.866 323.15 0 0 0.06928 -0.0322205 -0.0322205 0 0 0 1082.16 -5.67856e-06 -5.67856e-06 0 0 0 54.4093 12.9242 25.5079 15.9772 -1 1 1 867 0.867 323.15 0 0 0.06936 -0.0322595 -0.0322595 0 0 0 1082.64 -5.67856e-06 -5.67856e-06 0 0 0 54.4959 12.9435 25.5533 15.9991 -1 1 1 868 0.868 323.15 0 0 0.06944 -0.0322984 -0.0322984 0 0 0 1083.11 -5.67856e-06 -5.67856e-06 0 0 0 54.5825 12.9628 25.5988 16.021 -1 1 1 869 0.869 323.15 0 0 0.06952 -0.0323373 -0.0323373 0 0 0 1083.58 -5.67856e-06 -5.67856e-06 0 0 0 54.6692 12.9821 25.6442 16.0429 -1 1 1 870 0.87 323.15 0 0 0.0696 -0.0323763 -0.0323763 0 0 0 1084.06 -5.67856e-06 -5.67856e-06 0 0 0 54.7559 13.0014 25.6897 16.0648 -1 1 1 871 0.871 323.15 0 0 0.06968 -0.0324152 -0.0324152 0 0 0 1084.53 -5.67856e-06 -5.67856e-06 0 0 0 54.8426 13.0207 25.7352 16.0867 -1 1 1 872 0.872 323.15 0 0 0.06976 -0.0324542 -0.0324542 0 0 0 1085.01 -5.67856e-06 -5.67856e-06 0 0 0 54.9294 13.0401 25.7808 16.1085 -1 1 1 873 0.873 323.15 0 0 0.06984 -0.0324931 -0.0324931 0 0 0 1085.48 -5.67856e-06 -5.67856e-06 0 0 0 55.0162 13.0595 25.8263 16.1304 -1 1 1 874 0.874 323.15 0 0 0.06992 -0.0325321 -0.0325321 0 0 0 1085.95 -5.67856e-06 -5.67856e-06 0 0 0 55.1031 13.0788 25.8719 16.1523 -1 1 1 875 0.875 323.15 0 0 0.07 -0.032571 -0.032571 0 0 0 1086.42 -5.67856e-06 -5.67856e-06 0 0 0 55.19 13.0982 25.9175 16.1742 -1 1 1 876 0.876 323.15 0 0 0.07008 -0.0326099 -0.0326099 0 0 0 1086.9 -5.67856e-06 -5.67856e-06 0 0 0 55.2769 13.1177 25.9631 16.1961 -1 1 1 877 0.877 323.15 0 0 0.07016 -0.0326489 -0.0326489 0 0 0 1087.37 -5.67856e-06 -5.67856e-06 0 0 0 55.3639 13.1371 26.0087 16.218 -1 1 1 878 0.878 323.15 0 0 0.07024 -0.0326878 -0.0326878 0 0 0 1087.84 -5.67856e-06 -5.67856e-06 0 0 0 55.4509 13.1565 26.0544 16.24 -1 1 1 879 0.879 323.15 0 0 0.07032 -0.0327268 -0.0327268 0 0 0 1088.31 -5.67856e-06 -5.67856e-06 0 0 0 55.5379 13.176 26.1001 16.2619 -1 1 1 880 0.88 323.15 0 0 0.0704 -0.0327657 -0.0327657 0 0 0 1088.79 -5.67856e-06 -5.67856e-06 0 0 0 55.625 13.1955 26.1458 16.2838 -1 1 1 881 0.881 323.15 0 0 0.07048 -0.0328047 -0.0328047 0 0 0 1089.26 -5.67856e-06 -5.67856e-06 0 0 0 55.7121 13.215 26.1915 16.3057 -1 1 1 882 0.882 323.15 0 0 0.07056 -0.0328436 -0.0328436 0 0 0 1089.73 -5.67856e-06 -5.67856e-06 0 0 0 55.7993 13.2345 26.2372 16.3276 -1 1 1 883 0.883 323.15 0 0 0.07064 -0.0328826 -0.0328826 0 0 0 1090.2 -5.67856e-06 -5.67856e-06 0 0 0 55.8865 13.254 26.283 16.3495 -1 1 1 884 0.884 323.15 0 0 0.07072 -0.0329215 -0.0329215 0 0 0 1090.67 -5.67856e-06 -5.67856e-06 0 0 0 55.9737 13.2736 26.3287 16.3714 -1 1 1 885 0.885 323.15 0 0 0.0708 -0.0329605 -0.0329605 0 0 0 1091.14 -5.67856e-06 -5.67856e-06 0 0 0 56.061 13.2932 26.3745 16.3933 -1 1 1 886 0.886 323.15 0 0 0.07088 -0.0329994 -0.0329994 0 0 0 1091.61 -5.67856e-06 -5.67856e-06 0 0 0 56.1483 13.3127 26.4204 16.4152 -1 1 1 887 0.887 323.15 0 0 0.07096 -0.0330383 -0.0330383 0 0 0 1092.08 -5.67856e-06 -5.67856e-06 0 0 0 56.2357 13.3323 26.4662 16.4371 -1 1 1 888 0.888 323.15 0 0 0.07104 -0.0330773 -0.0330773 0 0 0 1092.55 -5.67856e-06 -5.67856e-06 0 0 0 56.323 13.352 26.5121 16.459 -1 1 1 889 0.889 323.15 0 0 0.07112 -0.0331162 -0.0331162 0 0 0 1093.02 -5.67856e-06 -5.67856e-06 0 0 0 56.4105 13.3716 26.5579 16.4809 -1 1 1 890 0.89 323.15 0 0 0.0712 -0.0331552 -0.0331552 0 0 0 1093.49 -5.67856e-06 -5.67856e-06 0 0 0 56.4979 13.3912 26.6038 16.5029 -1 1 1 891 0.891 323.15 0 0 0.07128 -0.0331941 -0.0331941 0 0 0 1093.96 -5.67856e-06 -5.67856e-06 0 0 0 56.5854 13.4109 26.6497 16.5248 -1 1 1 892 0.892 323.15 0 0 0.07136 -0.0332331 -0.0332331 0 0 0 1094.43 -5.67856e-06 -5.67856e-06 0 0 0 56.673 13.4306 26.6957 16.5467 -1 1 1 893 0.893 323.15 0 0 0.07144 -0.0332721 -0.0332721 0 0 0 1094.9 -5.67856e-06 -5.67856e-06 0 0 0 56.7605 13.4503 26.7416 16.5686 -1 1 1 894 0.894 323.15 0 0 0.07152 -0.033311 -0.033311 0 0 0 1095.37 -5.67856e-06 -5.67856e-06 0 0 0 56.8481 13.47 26.7876 16.5905 -1 1 1 895 0.895 323.15 0 0 0.0716 -0.03335 -0.03335 0 0 0 1095.83 -5.67856e-06 -5.67856e-06 0 0 0 56.9358 13.4897 26.8336 16.6124 -1 1 1 896 0.896 323.15 0 0 0.07168 -0.0333889 -0.0333889 0 0 0 1096.3 -5.67856e-06 -5.67856e-06 0 0 0 57.0235 13.5095 26.8796 16.6344 -1 1 1 897 0.897 323.15 0 0 0.07176 -0.0334279 -0.0334279 0 0 0 1096.77 -5.67856e-06 -5.67856e-06 0 0 0 57.1112 13.5292 26.9257 16.6563 -1 1 1 898 0.898 323.15 0 0 0.07184 -0.0334668 -0.0334668 0 0 0 1097.24 -5.67856e-06 -5.67856e-06 0 0 0 57.199 13.549 26.9717 16.6782 -1 1 1 899 0.899 323.15 0 0 0.07192 -0.0335058 -0.0335058 0 0 0 1097.71 -5.67856e-06 -5.67856e-06 0 0 0 57.2868 13.5688 27.0178 16.7001 -1 1 1 900 0.9 323.15 0 0 0.072 -0.0335447 -0.0335447 0 0 0 1098.17 -5.67856e-06 -5.67856e-06 0 0 0 57.3746 13.5886 27.0639 16.7221 -1 1 1 901 0.901 323.15 0 0 0.07208 -0.0335837 -0.0335837 0 0 0 1098.64 -5.67856e-06 -5.67856e-06 0 0 0 57.4625 13.6084 27.11 16.744 -1 1 1 902 0.902 323.15 0 0 0.07216 -0.0336226 -0.0336226 0 0 0 1099.11 -5.67856e-06 -5.67856e-06 0 0 0 57.5504 13.6283 27.1562 16.7659 -1 1 1 903 0.903 323.15 0 0 0.07224 -0.0336616 -0.0336616 0 0 0 1099.57 -5.67856e-06 -5.67856e-06 0 0 0 57.6383 13.6481 27.2024 16.7878 -1 1 1 904 0.904 323.15 0 0 0.07232 -0.0337006 -0.0337006 0 0 0 1100.04 -5.67856e-06 -5.67856e-06 0 0 0 57.7263 13.668 27.2485 16.8098 -1 1 1 905 0.905 323.15 0 0 0.0724 -0.0337395 -0.0337395 0 0 0 1100.51 -5.67856e-06 -5.67856e-06 0 0 0 57.8143 13.6879 27.2947 16.8317 -1 1 1 906 0.906 323.15 0 0 0.07248 -0.0337785 -0.0337785 0 0 0 1100.97 -5.67856e-06 -5.67856e-06 0 0 0 57.9024 13.7078 27.341 16.8536 -1 1 1 907 0.907 323.15 0 0 0.07256 -0.0338174 -0.0338174 0 0 0 1101.44 -5.67856e-06 -5.67856e-06 0 0 0 57.9905 13.7277 27.3872 16.8756 -1 1 1 908 0.908 323.15 0 0 0.07264 -0.0338564 -0.0338564 0 0 0 1101.91 -5.67856e-06 -5.67856e-06 0 0 0 58.0786 13.7477 27.4335 16.8975 -1 1 1 909 0.909 323.15 0 0 0.07272 -0.0338953 -0.0338953 0 0 0 1102.37 -5.67856e-06 -5.67856e-06 0 0 0 58.1668 13.7676 27.4797 16.9194 -1 1 1 910 0.91 323.15 0 0 0.0728 -0.0339343 -0.0339343 0 0 0 1102.84 -5.67856e-06 -5.67856e-06 0 0 0 58.255 13.7876 27.526 16.9413 -1 1 1 911 0.911 323.15 0 0 0.07288 -0.0339733 -0.0339733 0 0 0 1103.3 -5.67856e-06 -5.67856e-06 0 0 0 58.3432 13.8076 27.5724 16.9633 -1 1 1 912 0.912 323.15 0 0 0.07296 -0.0340122 -0.0340122 0 0 0 1103.77 -5.67856e-06 -5.67856e-06 0 0 0 58.4315 13.8276 27.6187 16.9852 -1 1 1 913 0.913 323.15 0 0 0.07304 -0.0340512 -0.0340512 0 0 0 1104.23 -5.67856e-06 -5.67856e-06 0 0 0 58.5198 13.8476 27.6651 17.0072 -1 1 1 914 0.914 323.15 0 0 0.07312 -0.0340901 -0.0340901 0 0 0 1104.7 -5.67856e-06 -5.67856e-06 0 0 0 58.6082 13.8677 27.7114 17.0291 -1 1 1 915 0.915 323.15 0 0 0.0732 -0.0341291 -0.0341291 0 0 0 1105.16 -5.67856e-06 -5.67856e-06 0 0 0 58.6966 13.8877 27.7578 17.051 -1 1 1 916 0.916 323.15 0 0 0.07328 -0.0341681 -0.0341681 0 0 0 1105.62 -5.67856e-06 -5.67856e-06 0 0 0 58.785 13.9078 27.8043 17.073 -1 1 1 917 0.917 323.15 0 0 0.07336 -0.034207 -0.034207 0 0 0 1106.09 -5.67856e-06 -5.67856e-06 0 0 0 58.8735 13.9279 27.8507 17.0949 -1 1 1 918 0.918 323.15 0 0 0.07344 -0.034246 -0.034246 0 0 0 1106.55 -5.67856e-06 -5.67856e-06 0 0 0 58.962 13.948 27.8972 17.1168 -1 1 1 919 0.919 323.15 0 0 0.07352 -0.034285 -0.034285 0 0 0 1107.02 -5.67856e-06 -5.67856e-06 0 0 0 59.0505 13.9681 27.9436 17.1388 -1 1 1 920 0.92 323.15 0 0 0.0736 -0.0343239 -0.0343239 0 0 0 1107.48 -5.67856e-06 -5.67856e-06 0 0 0 59.1391 13.9883 27.9901 17.1607 -1 1 1 921 0.921 323.15 0 0 0.07368 -0.0343629 -0.0343629 0 0 0 1107.94 -5.67856e-06 -5.67856e-06 0 0 0 59.2277 14.0084 28.0366 17.1827 -1 1 1 922 0.922 323.15 0 0 0.07376 -0.0344019 -0.0344019 0 0 0 1108.4 -5.67856e-06 -5.67856e-06 0 0 0 59.3164 14.0286 28.0832 17.2046 -1 1 1 923 0.923 323.15 0 0 0.07384 -0.0344408 -0.0344408 0 0 0 1108.87 -5.67856e-06 -5.67856e-06 0 0 0 59.4051 14.0488 28.1297 17.2266 -1 1 1 924 0.924 323.15 0 0 0.07392 -0.0344798 -0.0344798 0 0 0 1109.33 -5.67856e-06 -5.67856e-06 0 0 0 59.4938 14.069 28.1763 17.2485 -1 1 1 925 0.925 323.15 0 0 0.074 -0.0345188 -0.0345188 0 0 0 1109.79 -5.67856e-06 -5.67856e-06 0 0 0 59.5826 14.0892 28.2229 17.2704 -1 1 1 926 0.926 323.15 0 0 0.07408 -0.0345577 -0.0345577 0 0 0 1110.25 -5.67856e-06 -5.67856e-06 0 0 0 59.6714 14.1094 28.2695 17.2924 -1 1 1 927 0.927 323.15 0 0 0.07416 -0.0345967 -0.0345967 0 0 0 1110.72 -5.67856e-06 -5.67856e-06 0 0 0 59.7602 14.1297 28.3162 17.3143 -1 1 1 928 0.928 323.15 0 0 0.07424 -0.0346357 -0.0346357 0 0 0 1111.18 -5.67856e-06 -5.67856e-06 0 0 0 59.8491 14.15 28.3628 17.3363 -1 1 1 929 0.929 323.15 0 0 0.07432 -0.0346746 -0.0346746 0 0 0 1111.64 -5.67856e-06 -5.67856e-06 0 0 0 59.938 14.1703 28.4095 17.3582 -1 1 1 930 0.93 323.15 0 0 0.0744 -0.0347136 -0.0347136 0 0 0 1112.1 -5.67856e-06 -5.67856e-06 0 0 0 60.027 14.1906 28.4562 17.3802 -1 1 1 931 0.931 323.15 0 0 0.07448 -0.0347526 -0.0347526 0 0 0 1112.56 -5.67856e-06 -5.67856e-06 0 0 0 60.1159 14.2109 28.5029 17.4021 -1 1 1 932 0.932 323.15 0 0 0.07456 -0.0347915 -0.0347915 0 0 0 1113.02 -5.67856e-06 -5.67856e-06 0 0 0 60.205 14.2312 28.5496 17.4241 -1 1 1 933 0.933 323.15 0 0 0.07464 -0.0348305 -0.0348305 0 0 0 1113.48 -5.67856e-06 -5.67856e-06 0 0 0 60.294 14.2516 28.5964 17.4461 -1 1 1 934 0.934 323.15 0 0 0.07472 -0.0348695 -0.0348695 0 0 0 1113.94 -5.67856e-06 -5.67856e-06 0 0 0 60.3831 14.2719 28.6432 17.468 -1 1 1 935 0.935 323.15 0 0 0.0748 -0.0349084 -0.0349084 0 0 0 1114.4 -5.67856e-06 -5.67856e-06 0 0 0 60.4723 14.2923 28.69 17.49 -1 1 1 936 0.936 323.15 0 0 0.07488 -0.0349474 -0.0349474 0 0 0 1114.87 -5.67856e-06 -5.67856e-06 0 0 0 60.5614 14.3127 28.7368 17.5119 -1 1 1 937 0.937 323.15 0 0 0.07496 -0.0349864 -0.0349864 0 0 0 1115.33 -5.67856e-06 -5.67856e-06 0 0 0 60.6506 14.3332 28.7836 17.5339 -1 1 1 938 0.938 323.15 0 0 0.07504 -0.0350254 -0.0350254 0 0 0 1115.78 -5.67856e-06 -5.67856e-06 0 0 0 60.7399 14.3536 28.8305 17.5558 -1 1 1 939 0.939 323.15 0 0 0.07512 -0.0350643 -0.0350643 0 0 0 1116.24 -5.67856e-06 -5.67856e-06 0 0 0 60.8292 14.374 28.8773 17.5778 -1 1 1 940 0.94 323.15 0 0 0.0752 -0.0351033 -0.0351033 0 0 0 1116.7 -5.67856e-06 -5.67856e-06 0 0 0 60.9185 14.3945 28.9242 17.5997 -1 1 1 941 0.941 323.15 0 0 0.07528 -0.0351423 -0.0351423 0 0 0 1117.16 -5.67856e-06 -5.67856e-06 0 0 0 61.0078 14.415 28.9711 17.6217 -1 1 1 942 0.942 323.15 0 0 0.07536 -0.0351812 -0.0351812 0 0 0 1117.62 -5.67856e-06 -5.67856e-06 0 0 0 61.0972 14.4355 29.0181 17.6437 -1 1 1 943 0.943 323.15 0 0 0.07544 -0.0352202 -0.0352202 0 0 0 1118.08 -5.67856e-06 -5.67856e-06 0 0 0 61.1867 14.456 29.065 17.6656 -1 1 1 944 0.944 323.15 0 0 0.07552 -0.0352592 -0.0352592 0 0 0 1118.54 -5.67856e-06 -5.67856e-06 0 0 0 61.2761 14.4766 29.112 17.6876 -1 1 1 945 0.945 323.15 0 0 0.0756 -0.0352982 -0.0352982 0 0 0 1119 -5.67856e-06 -5.67856e-06 0 0 0 61.3656 14.4971 29.159 17.7096 -1 1 1 946 0.946 323.15 0 0 0.07568 -0.0353371 -0.0353371 0 0 0 1119.46 -5.67856e-06 -5.67856e-06 0 0 0 61.4552 14.5177 29.206 17.7315 -1 1 1 947 0.947 323.15 0 0 0.07576 -0.0353761 -0.0353761 0 0 0 1119.91 -5.67856e-06 -5.67856e-06 0 0 0 61.5447 14.5383 29.253 17.7535 -1 1 1 948 0.948 323.15 0 0 0.07584 -0.0354151 -0.0354151 0 0 0 1120.37 -5.67856e-06 -5.67856e-06 0 0 0 61.6343 14.5589 29.3 17.7755 -1 1 1 949 0.949 323.15 0 0 0.07592 -0.0354541 -0.0354541 0 0 0 1120.83 -5.67856e-06 -5.67856e-06 0 0 0 61.724 14.5795 29.3471 17.7974 -1 1 1 950 0.95 323.15 0 0 0.076 -0.035493 -0.035493 0 0 0 1121.29 -5.67856e-06 -5.67856e-06 0 0 0 61.8137 14.6001 29.3942 17.8194 -1 1 1 951 0.951 323.15 0 0 0.07608 -0.035532 -0.035532 0 0 0 1121.75 -5.67856e-06 -5.67856e-06 0 0 0 61.9034 14.6208 29.4413 17.8414 -1 1 1 952 0.952 323.15 0 0 0.07616 -0.035571 -0.035571 0 0 0 1122.2 -5.67856e-06 -5.67856e-06 0 0 0 61.9932 14.6414 29.4884 17.8633 -1 1 1 953 0.953 323.15 0 0 0.07624 -0.03561 -0.03561 0 0 0 1122.66 -5.67856e-06 -5.67856e-06 0 0 0 62.083 14.6621 29.5355 17.8853 -1 1 1 954 0.954 323.15 0 0 0.07632 -0.035649 -0.035649 0 0 0 1123.12 -5.67856e-06 -5.67856e-06 0 0 0 62.1728 14.6828 29.5827 17.9073 -1 1 1 955 0.955 323.15 0 0 0.0764 -0.0356879 -0.0356879 0 0 0 1123.57 -5.67856e-06 -5.67856e-06 0 0 0 62.2626 14.7035 29.6299 17.9292 -1 1 1 956 0.956 323.15 0 0 0.07648 -0.0357269 -0.0357269 0 0 0 1124.03 -5.67856e-06 -5.67856e-06 0 0 0 62.3526 14.7243 29.6771 17.9512 -1 1 1 957 0.957 323.15 0 0 0.07656 -0.0357659 -0.0357659 0 0 0 1124.49 -5.67856e-06 -5.67856e-06 0 0 0 62.4425 14.745 29.7243 17.9732 -1 1 1 958 0.958 323.15 0 0 0.07664 -0.0358049 -0.0358049 0 0 0 1124.94 -5.67856e-06 -5.67856e-06 0 0 0 62.5325 14.7658 29.7715 17.9952 -1 1 1 959 0.959 323.15 0 0 0.07672 -0.0358439 -0.0358439 0 0 0 1125.4 -5.67856e-06 -5.67856e-06 0 0 0 62.6225 14.7866 29.8188 18.0171 -1 1 1 960 0.96 323.15 0 0 0.0768 -0.0358828 -0.0358828 0 0 0 1125.85 -5.67856e-06 -5.67856e-06 0 0 0 62.7125 14.8074 29.866 18.0391 -1 1 1 961 0.961 323.15 0 0 0.07688 -0.0359218 -0.0359218 0 0 0 1126.31 -5.67856e-06 -5.67856e-06 0 0 0 62.8026 14.8282 29.9133 18.0611 -1 1 1 962 0.962 323.15 0 0 0.07696 -0.0359608 -0.0359608 0 0 0 1126.76 -5.67856e-06 -5.67856e-06 0 0 0 62.8927 14.849 29.9607 18.0831 -1 1 1 963 0.963 323.15 0 0 0.07704 -0.0359998 -0.0359998 0 0 0 1127.22 -5.67856e-06 -5.67856e-06 0 0 0 62.9829 14.8699 30.008 18.105 -1 1 1 964 0.964 323.15 0 0 0.07712 -0.0360388 -0.0360388 0 0 0 1127.67 -5.67856e-06 -5.67856e-06 0 0 0 63.0731 14.8907 30.0553 18.127 -1 1 1 965 0.965 323.15 0 0 0.0772 -0.0360778 -0.0360778 0 0 0 1128.13 -5.67856e-06 -5.67856e-06 0 0 0 63.1633 14.9116 30.1027 18.149 -1 1 1 966 0.966 323.15 0 0 0.07728 -0.0361167 -0.0361167 0 0 0 1128.58 -5.67856e-06 -5.67856e-06 0 0 0 63.2536 14.9325 30.1501 18.171 -1 1 1 967 0.967 323.15 0 0 0.07736 -0.0361557 -0.0361557 0 0 0 1129.04 -5.67856e-06 -5.67856e-06 0 0 0 63.3439 14.9534 30.1975 18.193 -1 1 1 968 0.968 323.15 0 0 0.07744 -0.0361947 -0.0361947 0 0 0 1129.49 -5.67856e-06 -5.67856e-06 0 0 0 63.4342 14.9744 30.2449 18.2149 -1 1 1 969 0.969 323.15 0 0 0.07752 -0.0362337 -0.0362337 0 0 0 1129.95 -5.67856e-06 -5.67856e-06 0 0 0 63.5246 14.9953 30.2924 18.2369 -1 1 1 970 0.97 323.15 0 0 0.0776 -0.0362727 -0.0362727 0 0 0 1130.4 -5.67856e-06 -5.67856e-06 0 0 0 63.615 15.0163 30.3398 18.2589 -1 1 1 971 0.971 323.15 0 0 0.07768 -0.0363117 -0.0363117 0 0 0 1130.85 -5.67856e-06 -5.67856e-06 0 0 0 63.7055 15.0373 30.3873 18.2809 -1 1 1 972 0.972 323.15 0 0 0.07776 -0.0363506 -0.0363506 0 0 0 1131.31 -5.67856e-06 -5.67856e-06 0 0 0 63.796 15.0583 30.4348 18.3029 -1 1 1 973 0.973 323.15 0 0 0.07784 -0.0363896 -0.0363896 0 0 0 1131.76 -5.67856e-06 -5.67856e-06 0 0 0 63.8865 15.0793 30.4823 18.3249 -1 1 1 974 0.974 323.15 0 0 0.07792 -0.0364286 -0.0364286 0 0 0 1132.21 -5.67856e-06 -5.67856e-06 0 0 0 63.9771 15.1003 30.5299 18.3469 -1 1 1 975 0.975 323.15 0 0 0.078 -0.0364676 -0.0364676 0 0 0 1132.67 -5.67856e-06 -5.67856e-06 0 0 0 64.0676 15.1214 30.5774 18.3688 -1 1 1 976 0.976 323.15 0 0 0.07808 -0.0365066 -0.0365066 0 0 0 1133.12 -5.67856e-06 -5.67856e-06 0 0 0 64.1583 15.1424 30.625 18.3908 -1 1 1 977 0.977 323.15 0 0 0.07816 -0.0365456 -0.0365456 0 0 0 1133.57 -5.67856e-06 -5.67856e-06 0 0 0 64.2489 15.1635 30.6726 18.4128 -1 1 1 978 0.978 323.15 0 0 0.07824 -0.0365846 -0.0365846 0 0 0 1134.02 -5.67856e-06 -5.67856e-06 0 0 0 64.3397 15.1846 30.7202 18.4348 -1 1 1 979 0.979 323.15 0 0 0.07832 -0.0366236 -0.0366236 0 0 0 1134.48 -5.67856e-06 -5.67856e-06 0 0 0 64.4304 15.2057 30.7678 18.4568 -1 1 1 980 0.98 323.15 0 0 0.0784 -0.0366626 -0.0366626 0 0 0 1134.93 -5.67856e-06 -5.67856e-06 0 0 0 64.5212 15.2269 30.8155 18.4788 -1 1 1 981 0.981 323.15 0 0 0.07848 -0.0367015 -0.0367015 0 0 0 1135.38 -5.67856e-06 -5.67856e-06 0 0 0 64.612 15.248 30.8632 18.5008 -1 1 1 982 0.982 323.15 0 0 0.07856 -0.0367405 -0.0367405 0 0 0 1135.83 -5.67856e-06 -5.67856e-06 0 0 0 64.7028 15.2692 30.9109 18.5228 -1 1 1 983 0.983 323.15 0 0 0.07864 -0.0367795 -0.0367795 0 0 0 1136.28 -5.67856e-06 -5.67856e-06 0 0 0 64.7937 15.2904 30.9586 18.5448 -1 1 1 984 0.984 323.15 0 0 0.07872 -0.0368185 -0.0368185 0 0 0 1136.73 -5.67856e-06 -5.67856e-06 0 0 0 64.8846 15.3116 31.0063 18.5668 -1 1 1 985 0.985 323.15 0 0 0.0788 -0.0368575 -0.0368575 0 0 0 1137.19 -5.67856e-06 -5.67856e-06 0 0 0 64.9756 15.3328 31.054 18.5888 -1 1 1 986 0.986 323.15 0 0 0.07888 -0.0368965 -0.0368965 0 0 0 1137.64 -5.67856e-06 -5.67856e-06 0 0 0 65.0666 15.354 31.1018 18.6108 -1 1 1 987 0.987 323.15 0 0 0.07896 -0.0369355 -0.0369355 0 0 0 1138.09 -5.67856e-06 -5.67856e-06 0 0 0 65.1576 15.3753 31.1496 18.6328 -1 1 1 988 0.988 323.15 0 0 0.07904 -0.0369745 -0.0369745 0 0 0 1138.54 -5.67856e-06 -5.67856e-06 0 0 0 65.2487 15.3965 31.1974 18.6548 -1 1 1 989 0.989 323.15 0 0 0.07912 -0.0370135 -0.0370135 0 0 0 1138.99 -5.67856e-06 -5.67856e-06 0 0 0 65.3398 15.4178 31.2452 18.6768 -1 1 1 990 0.99 323.15 0 0 0.0792 -0.0370525 -0.0370525 0 0 0 1139.44 -5.67856e-06 -5.67856e-06 0 0 0 65.4309 15.4391 31.293 18.6988 -1 1 1 991 0.991 323.15 0 0 0.07928 -0.0370915 -0.0370915 0 0 0 1139.89 -5.67856e-06 -5.67856e-06 0 0 0 65.5221 15.4604 31.3409 18.7208 -1 1 1 992 0.992 323.15 0 0 0.07936 -0.0371305 -0.0371305 0 0 0 1140.34 -5.67856e-06 -5.67856e-06 0 0 0 65.6133 15.4818 31.3888 18.7428 -1 1 1 993 0.993 323.15 0 0 0.07944 -0.0371694 -0.0371694 0 0 0 1140.79 -5.67856e-06 -5.67856e-06 0 0 0 65.7045 15.5031 31.4367 18.7648 -1 1 1 994 0.994 323.15 0 0 0.07952 -0.0372084 -0.0372084 0 0 0 1141.24 -5.67856e-06 -5.67856e-06 0 0 0 65.7958 15.5245 31.4846 18.7868 -1 1 1 995 0.995 323.15 0 0 0.0796 -0.0372474 -0.0372474 0 0 0 1141.69 -5.67856e-06 -5.67856e-06 0 0 0 65.8871 15.5459 31.5325 18.8088 -1 1 1 996 0.996 323.15 0 0 0.07968 -0.0372864 -0.0372864 0 0 0 1142.14 -5.67856e-06 -5.67856e-06 0 0 0 65.9785 15.5673 31.5804 18.8308 -1 1 1 997 0.997 323.15 0 0 0.07976 -0.0373254 -0.0373254 0 0 0 1142.59 -5.67856e-06 -5.67856e-06 0 0 0 66.0699 15.5887 31.6284 18.8528 -1 1 1 998 0.998 323.15 0 0 0.07984 -0.0373644 -0.0373644 0 0 0 1143.03 -5.67856e-06 -5.67856e-06 0 0 0 66.1613 15.6101 31.6764 18.8748 -1 1 1 999 0.999 323.15 0 0 0.07992 -0.0374034 -0.0374034 0 0 0 1143.48 -5.67856e-06 -5.67856e-06 0 0 0 66.2528 15.6316 31.7244 18.8968 -1 1 1 1000 1 323.15 0 0 0.08 -0.0374424 -0.0374424 0 0 0 1143.93 -5.67856e-06 -5.67856e-06 0 0 0 66.3443 15.653 31.7724 18.9188 -1 1 2 1 1.001 323.15 0 0 0.07984 -0.0373866 -0.0373866 0 0 0 1133.13 -5.67288e-06 -5.67288e-06 0 0 0 66.1621 15.4709 31.7724 18.9188 -1 1 2 2 1.002 323.15 0 0 0.07968 -0.0373307 -0.0373307 0 0 0 1122.32 -5.6672e-06 -5.6672e-06 0 0 0 65.9817 15.2904 31.7724 18.9188 -1 1 2 3 1.003 323.15 0 0 0.07952 -0.0372749 -0.0372749 0 0 0 1111.51 -5.66152e-06 -5.66153e-06 0 0 0 65.803 15.1117 31.7724 18.9188 -1 1 2 4 1.004 323.15 0 0 0.07936 -0.0372191 -0.0372191 0 0 0 1100.71 -5.65584e-06 -5.65585e-06 0 0 0 65.626 14.9348 31.7724 18.9188 -1 1 2 5 1.005 323.15 0 0 0.0792 -0.0371632 -0.0371632 0 0 0 1089.9 -5.65017e-06 -5.65017e-06 0 0 0 65.4507 14.7595 31.7724 18.9188 -1 1 2 6 1.006 323.15 0 0 0.07904 -0.0371074 -0.0371074 0 0 0 1079.1 -5.64449e-06 -5.64449e-06 0 0 0 65.2772 14.586 31.7724 18.9188 -1 1 2 7 1.007 323.15 0 0 0.07888 -0.0370515 -0.0370515 0 0 0 1068.29 -5.63881e-06 -5.63881e-06 0 0 0 65.1054 14.4142 31.7724 18.9188 -1 1 2 8 1.008 323.15 0 0 0.07872 -0.0369957 -0.0369957 0 0 0 1057.48 -5.63313e-06 -5.63313e-06 0 0 0 64.9354 14.2441 31.7724 18.9188 -1 1 2 9 1.009 323.15 0 0 0.07856 -0.0369399 -0.0369399 0 0 0 1046.68 -5.62745e-06 -5.62745e-06 0 0 0 64.767 14.0758 31.7724 18.9188 -1 1 2 10 1.01 323.15 0 0 0.0784 -0.036884 -0.036884 0 0 0 1035.87 -5.62177e-06 -5.62177e-06 0 0 0 64.6004 13.9092 31.7724 18.9188 -1 1 2 11 1.011 323.15 0 0 0.07824 -0.0368282 -0.0368282 0 0 0 1025.07 -5.61609e-06 -5.6161e-06 0 0 0 64.4355 13.7443 31.7724 18.9188 -1 1 2 12 1.012 323.15 0 0 0.07808 -0.0367723 -0.0367723 0 0 0 1014.26 -5.61042e-06 -5.61042e-06 0 0 0 64.2724 13.5812 31.7724 18.9188 -1 1 2 13 1.013 323.15 0 0 0.07792 -0.0367165 -0.0367165 0 0 0 1003.45 -5.60474e-06 -5.60474e-06 0 0 0 64.111 13.4198 31.7724 18.9188 -1 1 2 14 1.014 323.15 0 0 0.07776 -0.0366607 -0.0366607 0 0 0 992.647 -5.59906e-06 -5.59906e-06 0 0 0 63.9513 13.2601 31.7724 18.9188 -1 1 2 15 1.015 323.15 0 0 0.0776 -0.0366048 -0.0366048 0 0 0 981.841 -5.59338e-06 -5.59338e-06 0 0 0 63.7933 13.1021 31.7724 18.9188 -1 1 2 16 1.016 323.15 0 0 0.07744 -0.036549 -0.036549 0 0 0 971.035 -5.5877e-06 -5.5877e-06 0 0 0 63.6371 12.9459 31.7724 18.9188 -1 1 2 17 1.017 323.15 0 0 0.07728 -0.0364931 -0.0364931 0 0 0 960.229 -5.58202e-06 -5.58202e-06 0 0 0 63.4826 12.7914 31.7724 18.9188 -1 1 2 18 1.018 323.15 0 0 0.07712 -0.0364373 -0.0364373 0 0 0 949.423 -5.57634e-06 -5.57635e-06 0 0 0 63.3298 12.6386 31.7724 18.9188 -1 1 2 19 1.019 323.15 0 0 0.07696 -0.0363815 -0.0363815 0 0 0 938.617 -5.57066e-06 -5.57067e-06 0 0 0 63.1788 12.4876 31.7724 18.9188 -1 1 2 20 1.02 323.15 0 0 0.0768 -0.0363256 -0.0363256 0 0 0 927.811 -5.56499e-06 -5.56499e-06 0 0 0 63.0295 12.3382 31.7724 18.9188 -1 1 2 21 1.021 323.15 0 0 0.07664 -0.0362698 -0.0362698 0 0 0 917.004 -5.55931e-06 -5.55931e-06 0 0 0 62.8819 12.1907 31.7724 18.9188 -1 1 2 22 1.022 323.15 0 0 0.07648 -0.0362139 -0.0362139 0 0 0 906.198 -5.55363e-06 -5.55363e-06 0 0 0 62.736 12.0448 31.7724 18.9188 -1 1 2 23 1.023 323.15 0 0 0.07632 -0.0361581 -0.0361581 0 0 0 895.392 -5.54795e-06 -5.54795e-06 0 0 0 62.5919 11.9007 31.7724 18.9188 -1 1 2 24 1.024 323.15 0 0 0.07616 -0.0361023 -0.0361023 0 0 0 884.586 -5.54227e-06 -5.54227e-06 0 0 0 62.4495 11.7583 31.7724 18.9188 -1 1 2 25 1.025 323.15 0 0 0.076 -0.0360464 -0.0360464 0 0 0 873.78 -5.53659e-06 -5.5366e-06 0 0 0 62.3088 11.6176 31.7724 18.9188 -1 1 2 26 1.026 323.15 0 0 0.07584 -0.0359906 -0.0359906 0 0 0 862.974 -5.53091e-06 -5.53092e-06 0 0 0 62.1699 11.4787 31.7724 18.9188 -1 1 2 27 1.027 323.15 0 0 0.07568 -0.0359347 -0.0359347 0 0 0 852.168 -5.52524e-06 -5.52524e-06 0 0 0 62.0327 11.3415 31.7724 18.9188 -1 1 2 28 1.028 323.15 0 0 0.07552 -0.0358789 -0.0358789 0 0 0 841.362 -5.51956e-06 -5.51956e-06 0 0 0 61.8972 11.206 31.7724 18.9188 -1 1 2 29 1.029 323.15 0 0 0.07536 -0.0358231 -0.0358231 0 0 0 830.556 -5.51388e-06 -5.51388e-06 0 0 0 61.7635 11.0722 31.7724 18.9188 -1 1 2 30 1.03 323.15 0 0 0.0752 -0.0357672 -0.0357672 0 0 0 819.75 -5.5082e-06 -5.5082e-06 0 0 0 61.6314 10.9402 31.7724 18.9188 -1 1 2 31 1.031 323.15 0 0 0.07504 -0.0357114 -0.0357114 0 0 0 808.944 -5.50252e-06 -5.50252e-06 0 0 0 61.5011 10.8099 31.7724 18.9188 -1 1 2 32 1.032 323.15 0 0 0.07488 -0.0356555 -0.0356555 0 0 0 798.138 -5.49684e-06 -5.49685e-06 0 0 0 61.3726 10.6813 31.7724 18.9188 -1 1 2 33 1.033 323.15 0 0 0.07472 -0.0355997 -0.0355997 0 0 0 787.332 -5.49116e-06 -5.49117e-06 0 0 0 61.2457 10.5545 31.7724 18.9188 -1 1 2 34 1.034 323.15 0 0 0.07456 -0.0355439 -0.0355439 0 0 0 776.525 -5.48549e-06 -5.48549e-06 0 0 0 61.1206 10.4294 31.7724 18.9188 -1 1 2 35 1.035 323.15 0 0 0.0744 -0.035488 -0.035488 0 0 0 765.719 -5.47981e-06 -5.47981e-06 0 0 0 60.9972 10.306 31.7724 18.9188 -1 1 2 36 1.036 323.15 0 0 0.07424 -0.0354322 -0.0354322 0 0 0 754.913 -5.47413e-06 -5.47413e-06 0 0 0 60.8756 10.1844 31.7724 18.9188 -1 1 2 37 1.037 323.15 0 0 0.07408 -0.0353763 -0.0353763 0 0 0 744.107 -5.46845e-06 -5.46845e-06 0 0 0 60.7557 10.0644 31.7724 18.9188 -1 1 2 38 1.038 323.15 0 0 0.07392 -0.0353205 -0.0353205 0 0 0 733.301 -5.46277e-06 -5.46277e-06 0 0 0 60.6375 9.94625 31.7724 18.9188 -1 1 2 39 1.039 323.15 0 0 0.07376 -0.0352647 -0.0352647 0 0 0 722.495 -5.45709e-06 -5.4571e-06 0 0 0 60.521 9.82978 31.7724 18.9188 -1 1 2 40 1.04 323.15 0 0 0.0736 -0.0352088 -0.0352088 0 0 0 711.689 -5.45141e-06 -5.45142e-06 0 0 0 60.4063 9.71505 31.7724 18.9188 -1 1 2 41 1.041 323.15 0 0 0.07344 -0.035153 -0.035153 0 0 0 700.883 -5.44574e-06 -5.44574e-06 0 0 0 60.2933 9.60204 31.7724 18.9188 -1 1 2 42 1.042 323.15 0 0 0.07328 -0.0350971 -0.0350971 0 0 0 690.077 -5.44006e-06 -5.44006e-06 0 0 0 60.182 9.49077 31.7724 18.9188 -1 1 2 43 1.043 323.15 0 0 0.07312 -0.0350413 -0.0350413 0 0 0 679.271 -5.43438e-06 -5.43438e-06 0 0 0 60.0724 9.38122 31.7724 18.9188 -1 1 2 44 1.044 323.15 0 0 0.07296 -0.0349855 -0.0349855 0 0 0 668.465 -5.4287e-06 -5.4287e-06 0 0 0 59.9646 9.2734 31.7724 18.9188 -1 1 2 45 1.045 323.15 0 0 0.0728 -0.0349296 -0.0349296 0 0 0 657.659 -5.42302e-06 -5.42302e-06 0 0 0 59.8585 9.16731 31.7724 18.9188 -1 1 2 46 1.046 323.15 0 0 0.07264 -0.0348738 -0.0348738 0 0 0 646.852 -5.41734e-06 -5.41734e-06 0 0 0 59.7542 9.06295 31.7724 18.9188 -1 1 2 47 1.047 323.15 0 0 0.07248 -0.0348179 -0.0348179 0 0 0 636.046 -5.41166e-06 -5.41167e-06 0 0 0 59.6515 8.96032 31.7724 18.9188 -1 1 2 48 1.048 323.15 0 0 0.07232 -0.0347621 -0.0347621 0 0 0 625.24 -5.40599e-06 -5.40599e-06 0 0 0 59.5506 8.85941 31.7724 18.9188 -1 1 2 49 1.049 323.15 0 0 0.07216 -0.0347063 -0.0347063 0 0 0 614.434 -5.40031e-06 -5.40031e-06 0 0 0 59.4515 8.76024 31.7724 18.9188 -1 1 2 50 1.05 323.15 0 0 0.072 -0.0346504 -0.0346504 0 0 0 603.628 -5.39463e-06 -5.39463e-06 0 0 0 59.354 8.66279 31.7724 18.9188 -1 1 2 51 1.051 323.15 0 0 0.07184 -0.0345946 -0.0345946 0 0 0 592.822 -5.38895e-06 -5.38895e-06 0 0 0 59.2583 8.56708 31.7724 18.9188 -1 1 2 52 1.052 323.15 0 0 0.07168 -0.0345387 -0.0345387 0 0 0 582.016 -5.38327e-06 -5.38327e-06 0 0 0 59.1643 8.47309 31.7724 18.9188 -1 1 2 53 1.053 323.15 0 0 0.07152 -0.0344829 -0.0344829 0 0 0 571.21 -5.37759e-06 -5.37759e-06 0 0 0 59.0721 8.38083 31.7724 18.9188 -1 1 2 54 1.054 323.15 0 0 0.07136 -0.0344271 -0.0344271 0 0 0 560.404 -5.37191e-06 -5.37192e-06 0 0 0 58.9815 8.2903 31.7724 18.9188 -1 1 2 55 1.055 323.15 0 0 0.0712 -0.0343712 -0.0343712 0 0 0 549.598 -5.36623e-06 -5.36624e-06 0 0 0 58.8927 8.2015 31.7724 18.9188 -1 1 2 56 1.056 323.15 0 0 0.07104 -0.0343154 -0.0343154 0 0 0 538.792 -5.36056e-06 -5.36056e-06 0 0 0 58.8057 8.11443 31.7724 18.9188 -1 1 2 57 1.057 323.15 0 0 0.07088 -0.0342595 -0.0342595 0 0 0 527.986 -5.35488e-06 -5.35488e-06 0 0 0 58.7203 8.02909 31.7724 18.9188 -1 1 2 58 1.058 323.15 0 0 0.07072 -0.0342037 -0.0342037 0 0 0 517.18 -5.3492e-06 -5.3492e-06 0 0 0 58.6367 7.94548 31.7724 18.9188 -1 1 2 59 1.059 323.15 0 0 0.07056 -0.0341479 -0.0341479 0 0 0 506.373 -5.34352e-06 -5.34352e-06 0 0 0 58.5548 7.86359 31.7724 18.9188 -1 1 2 60 1.06 323.15 0 0 0.0704 -0.034092 -0.034092 0 0 0 495.567 -5.33784e-06 -5.33784e-06 0 0 0 58.4747 7.78344 31.7724 18.9188 -1 1 2 61 1.061 323.15 0 0 0.07024 -0.0340362 -0.0340362 0 0 0 484.761 -5.33216e-06 -5.33217e-06 0 0 0 58.3962 7.70501 31.7724 18.9188 -1 1 2 62 1.062 323.15 0 0 0.07008 -0.0339803 -0.0339803 0 0 0 473.955 -5.32648e-06 -5.32649e-06 0 0 0 58.3195 7.62831 31.7724 18.9188 -1 1 2 63 1.063 323.15 0 0 0.06992 -0.0339245 -0.0339245 0 0 0 463.149 -5.32081e-06 -5.32081e-06 0 0 0 58.2446 7.55335 31.7724 18.9188 -1 1 2 64 1.064 323.15 0 0 0.06976 -0.0338687 -0.0338687 0 0 0 452.343 -5.31513e-06 -5.31513e-06 0 0 0 58.1713 7.48011 31.7724 18.9188 -1 1 2 65 1.065 323.15 0 0 0.0696 -0.0338128 -0.0338128 0 0 0 441.537 -5.30945e-06 -5.30945e-06 0 0 0 58.0998 7.4086 31.7724 18.9188 -1 1 2 66 1.066 323.15 0 0 0.06944 -0.033757 -0.033757 0 0 0 430.731 -5.30377e-06 -5.30377e-06 0 0 0 58.03 7.33881 31.7724 18.9188 -1 1 2 67 1.067 323.15 0 0 0.06928 -0.0337011 -0.0337011 0 0 0 419.925 -5.29809e-06 -5.29809e-06 0 0 0 57.962 7.27076 31.7724 18.9188 -1 1 2 68 1.068 323.15 0 0 0.06912 -0.0336453 -0.0336453 0 0 0 409.119 -5.29241e-06 -5.29242e-06 0 0 0 57.8957 7.20444 31.7724 18.9188 -1 1 2 69 1.069 323.15 0 0 0.06896 -0.0335895 -0.0335895 0 0 0 398.313 -5.28673e-06 -5.28674e-06 0 0 0 57.8311 7.13984 31.7724 18.9188 -1 1 2 70 1.07 323.15 0 0 0.0688 -0.0335336 -0.0335336 0 0 0 387.507 -5.28106e-06 -5.28106e-06 0 0 0 57.7682 7.07698 31.7724 18.9188 -1 1 2 71 1.071 323.15 0 0 0.06864 -0.0334778 -0.0334778 0 0 0 376.7 -5.27538e-06 -5.27538e-06 0 0 0 57.7071 7.01584 31.7724 18.9188 -1 1 2 72 1.072 323.15 0 0 0.06848 -0.0334219 -0.0334219 0 0 0 365.894 -5.2697e-06 -5.2697e-06 0 0 0 57.6477 6.95643 31.7724 18.9188 -1 1 2 73 1.073 323.15 0 0 0.06832 -0.0333661 -0.0333661 0 0 0 355.088 -5.26402e-06 -5.26402e-06 0 0 0 57.59 6.89876 31.7724 18.9188 -1 1 2 74 1.074 323.15 0 0 0.06816 -0.0333103 -0.0333103 0 0 0 344.282 -5.25834e-06 -5.25834e-06 0 0 0 57.534 6.84281 31.7724 18.9188 -1 1 2 75 1.075 323.15 0 0 0.068 -0.0332544 -0.0332544 0 0 0 333.476 -5.25266e-06 -5.25267e-06 0 0 0 57.4798 6.78859 31.7724 18.9188 -1 1 2 76 1.076 323.15 0 0 0.06784 -0.0331986 -0.0331986 0 0 0 322.67 -5.24698e-06 -5.24699e-06 0 0 0 57.4273 6.73609 31.7724 18.9188 -1 1 2 77 1.077 323.15 0 0 0.06768 -0.0331427 -0.0331427 0 0 0 311.864 -5.24131e-06 -5.24131e-06 0 0 0 57.3766 6.68533 31.7724 18.9188 -1 1 2 78 1.078 323.15 0 0 0.06752 -0.0330869 -0.0330869 0 0 0 301.058 -5.23563e-06 -5.23563e-06 0 0 0 57.3275 6.6363 31.7724 18.9188 -1 1 2 79 1.079 323.15 0 0 0.06736 -0.0330311 -0.0330311 0 0 0 290.252 -5.22995e-06 -5.22995e-06 0 0 0 57.2802 6.58899 31.7724 18.9188 -1 1 2 80 1.08 323.15 0 0 0.0672 -0.0329752 -0.0329752 0 0 0 279.446 -5.22427e-06 -5.22427e-06 0 0 0 57.2346 6.54342 31.7724 18.9188 -1 1 2 81 1.081 323.15 0 0 0.06704 -0.0329194 -0.0329194 0 0 0 268.64 -5.21859e-06 -5.21859e-06 0 0 0 57.1908 6.49957 31.7724 18.9188 -1 1 2 82 1.082 323.15 0 0 0.06688 -0.0328635 -0.0328635 0 0 0 257.834 -5.21291e-06 -5.21291e-06 0 0 0 57.1487 6.45745 31.7724 18.9188 -1 1 2 83 1.083 323.15 0 0 0.06672 -0.0328077 -0.0328077 0 0 0 247.028 -5.20723e-06 -5.20724e-06 0 0 0 57.1083 6.41706 31.7724 18.9188 -1 1 2 84 1.084 323.15 0 0 0.06656 -0.0327519 -0.0327519 0 0 0 236.221 -5.20156e-06 -5.20156e-06 0 0 0 57.0696 6.3784 31.7724 18.9188 -1 1 2 85 1.085 323.15 0 0 0.0664 -0.032696 -0.032696 0 0 0 225.415 -5.19588e-06 -5.19588e-06 0 0 0 57.0327 6.34147 31.7724 18.9188 -1 1 2 86 1.086 323.15 0 0 0.06624 -0.0326402 -0.0326402 0 0 0 214.609 -5.1902e-06 -5.1902e-06 0 0 0 56.9975 6.30627 31.7724 18.9188 -1 1 2 87 1.087 323.15 0 0 0.06608 -0.0325843 -0.0325843 0 0 0 203.803 -5.18452e-06 -5.18452e-06 0 0 0 56.964 6.2728 31.7724 18.9188 -1 1 2 88 1.088 323.15 0 0 0.06592 -0.0325285 -0.0325285 0 0 0 192.997 -5.17884e-06 -5.17884e-06 0 0 0 56.9323 6.24105 31.7724 18.9188 -1 1 2 89 1.089 323.15 0 0 0.06576 -0.0324727 -0.0324727 0 0 0 182.191 -5.17316e-06 -5.17316e-06 0 0 0 56.9023 6.21104 31.7724 18.9188 -1 1 2 90 1.09 323.15 0 0 0.0656 -0.0324168 -0.0324168 0 0 0 171.385 -5.16748e-06 -5.16749e-06 0 0 0 56.874 6.18275 31.7724 18.9188 -1 1 2 91 1.091 323.15 0 0 0.06544 -0.032361 -0.032361 0 0 0 160.579 -5.1618e-06 -5.16181e-06 0 0 0 56.8474 6.15619 31.7724 18.9188 -1 1 2 92 1.092 323.15 0 0 0.06528 -0.0323051 -0.0323051 0 0 0 149.773 -5.15613e-06 -5.15613e-06 0 0 0 56.8226 6.13137 31.7724 18.9188 -1 1 2 93 1.093 323.15 0 0 0.06512 -0.0322493 -0.0322493 0 0 0 138.967 -5.15045e-06 -5.15045e-06 0 0 0 56.7995 6.10827 31.7724 18.9188 -1 1 2 94 1.094 323.15 0 0 0.06496 -0.0321935 -0.0321935 0 0 0 128.161 -5.14477e-06 -5.14477e-06 0 0 0 56.7781 6.0869 31.7724 18.9188 -1 1 2 95 1.095 323.15 0 0 0.0648 -0.0321376 -0.0321376 0 0 0 117.355 -5.13909e-06 -5.13909e-06 0 0 0 56.7585 6.06726 31.7724 18.9188 -1 1 2 96 1.096 323.15 0 0 0.06464 -0.0320818 -0.0320818 0 0 0 106.548 -5.13341e-06 -5.13341e-06 0 0 0 56.7406 6.04934 31.7724 18.9188 -1 1 2 97 1.097 323.15 0 0 0.06448 -0.0320259 -0.0320259 0 0 0 95.7424 -5.12773e-06 -5.12774e-06 0 0 0 56.7244 6.03316 31.7724 18.9188 -1 1 2 98 1.098 323.15 0 0 0.06432 -0.0319701 -0.0319701 0 0 0 84.9363 -5.12205e-06 -5.12206e-06 0 0 0 56.7099 6.01871 31.7724 18.9188 -1 1 2 99 1.099 323.15 0 0 0.06416 -0.0319143 -0.0319143 0 0 0 74.1302 -5.11638e-06 -5.11638e-06 0 0 0 56.6972 6.00598 31.7724 18.9188 -1 1 2 100 1.1 323.15 0 0 0.064 -0.0318584 -0.0318584 0 0 0 63.3242 -5.1107e-06 -5.1107e-06 0 0 0 56.6862 5.99498 31.7724 18.9188 -1 1 2 101 1.101 323.15 0 0 0.06384 -0.0318026 -0.0318026 0 0 0 52.5181 -5.10502e-06 -5.10502e-06 0 0 0 56.6769 5.98572 31.7724 18.9188 -1 1 2 102 1.102 323.15 0 0 0.06368 -0.0317467 -0.0317467 0 0 0 41.712 -5.09934e-06 -5.09934e-06 0 0 0 56.6694 5.97818 31.7724 18.9188 -1 1 2 103 1.103 323.15 0 0 0.06352 -0.0316909 -0.0316909 0 0 0 30.9059 -5.09366e-06 -5.09366e-06 0 0 0 56.6636 5.97237 31.7724 18.9188 -1 1 2 104 1.104 323.15 0 0 0.06336 -0.0316351 -0.0316351 0 0 0 20.0998 -5.08798e-06 -5.08799e-06 0 0 0 56.6595 5.96829 31.7724 18.9188 -1 1 2 105 1.105 323.15 0 0 0.0632 -0.0315792 -0.0315792 0 0 0 9.29376 -5.0823e-06 -5.08231e-06 0 0 0 56.6572 5.96594 31.7724 18.9188 -1 1 2 106 1.106 323.15 0 0 0.06304 -0.0315234 -0.0315234 0 0 0 -1.51232 -5.07663e-06 -5.07663e-06 0 0 0 56.6565 5.96531 31.7724 18.9188 -1 1 2 107 1.107 323.15 0 0 0.06288 -0.0314675 -0.0314675 0 0 0 -12.3184 -5.07095e-06 -5.07095e-06 0 0 0 56.6577 5.96642 31.7724 18.9188 -1 1 2 108 1.108 323.15 0 0 0.06272 -0.0314117 -0.0314117 0 0 0 -23.1245 -5.06527e-06 -5.06527e-06 0 0 0 56.6605 5.96926 31.7724 18.9188 -1 1 2 109 1.109 323.15 0 0 0.06256 -0.0313559 -0.0313559 0 0 0 -33.9306 -5.05959e-06 -5.05959e-06 0 0 0 56.6651 5.97382 31.7724 18.9188 -1 1 2 110 1.11 323.15 0 0 0.0624 -0.0313 -0.0313 0 0 0 -44.7366 -5.05391e-06 -5.05391e-06 0 0 0 56.6713 5.98011 31.7724 18.9188 -1 1 2 111 1.111 323.15 0 0 0.06224 -0.0312442 -0.0312442 0 0 0 -55.5427 -5.04823e-06 -5.04824e-06 0 0 0 56.6794 5.98814 31.7724 18.9188 -1 1 2 112 1.112 323.15 0 0 0.06208 -0.0311883 -0.0311883 0 0 0 -66.3488 -5.04256e-06 -5.04256e-06 0 0 0 56.6891 5.99789 31.7724 18.9188 -1 1 2 113 1.113 323.15 0 0 0.06192 -0.0311325 -0.0311325 0 0 0 -77.1549 -5.03688e-06 -5.03688e-06 0 0 0 56.7006 6.00937 31.7724 18.9188 -1 1 2 114 1.114 323.15 0 0 0.06176 -0.0310767 -0.0310767 0 0 0 -87.961 -5.0312e-06 -5.0312e-06 0 0 0 56.7138 6.02258 31.7724 18.9188 -1 1 2 115 1.115 323.15 0 0 0.0616 -0.0310208 -0.0310208 0 0 0 -98.767 -5.02552e-06 -5.02552e-06 0 0 0 56.7287 6.03752 31.7724 18.9188 -1 1 2 116 1.116 323.15 0 0 0.06144 -0.030965 -0.030965 0 0 0 -109.573 -5.01984e-06 -5.01984e-06 0 0 0 56.7454 6.05418 31.7724 18.9188 -1 1 2 117 1.117 323.15 0 0 0.06128 -0.0309091 -0.0309091 0 0 0 -120.379 -5.01416e-06 -5.01417e-06 0 0 0 56.7638 6.07258 31.7724 18.9188 -1 1 2 118 1.118 323.15 0 0 0.06112 -0.0308533 -0.0308533 0 0 0 -131.185 -5.00849e-06 -5.00849e-06 0 0 0 56.7839 6.0927 31.7724 18.9188 -1 1 2 119 1.119 323.15 0 0 0.06096 -0.0307975 -0.0307975 0 0 0 -141.991 -5.00281e-06 -5.00281e-06 0 0 0 56.8058 6.11456 31.7724 18.9188 -1 1 2 120 1.12 323.15 0 0 0.0608 -0.0307416 -0.0307416 0 0 0 -152.797 -4.99713e-06 -4.99713e-06 0 0 0 56.8294 6.13814 31.7724 18.9188 -1 1 2 121 1.121 323.15 0 0 0.06064 -0.0306858 -0.0306858 0 0 0 -163.604 -4.99145e-06 -4.99145e-06 0 0 0 56.8547 6.16345 31.7724 18.9188 -1 1 2 122 1.122 323.15 0 0 0.06048 -0.0306299 -0.0306299 0 0 0 -174.41 -4.98577e-06 -4.98578e-06 0 0 0 56.8817 6.19049 31.7724 18.9188 -1 1 2 123 1.123 323.15 0 0 0.06032 -0.0305741 -0.0305741 0 0 0 -185.216 -4.9801e-06 -4.9801e-06 0 0 0 56.9105 6.21926 31.7724 18.9188 -1 1 2 124 1.124 323.15 0 0 0.06016 -0.0305183 -0.0305183 0 0 0 -196.022 -4.97442e-06 -4.97442e-06 0 0 0 56.941 6.24976 31.7724 18.9188 -1 1 2 125 1.125 323.15 0 0 0.06 -0.0304624 -0.0304624 0 0 0 -206.828 -4.96874e-06 -4.96874e-06 0 0 0 56.9732 6.28199 31.7724 18.9188 -1 1 2 126 1.126 323.15 0 0 0.05984 -0.0304066 -0.0304066 0 0 0 -217.634 -4.96306e-06 -4.96306e-06 0 0 0 57.0072 6.31595 31.7724 18.9188 -1 1 2 127 1.127 323.15 0 0 0.05968 -0.0303507 -0.0303507 0 0 0 -228.44 -4.95738e-06 -4.95738e-06 0 0 0 57.0429 6.35163 31.7724 18.9188 -1 1 2 128 1.128 323.15 0 0 0.05952 -0.0302949 -0.0302949 0 0 0 -239.246 -4.9517e-06 -4.95171e-06 0 0 0 57.0803 6.38905 31.7724 18.9188 -1 1 2 129 1.129 323.15 0 0 0.05936 -0.0302391 -0.0302391 0 0 0 -250.052 -4.94603e-06 -4.94603e-06 0 0 0 57.1194 6.42819 31.7724 18.9188 -1 1 2 130 1.13 323.15 0 0 0.0592 -0.0301832 -0.0301832 0 0 0 -260.858 -4.94035e-06 -4.94035e-06 0 0 0 57.1603 6.46907 31.7724 18.9188 -1 1 2 131 1.131 323.15 0 0 0.05904 -0.0301274 -0.0301274 0 0 0 -271.664 -4.93467e-06 -4.93467e-06 0 0 0 57.2029 6.51167 31.7724 18.9188 -1 1 2 132 1.132 323.15 0 0 0.05888 -0.0300715 -0.0300715 0 0 0 -282.47 -4.92899e-06 -4.92899e-06 0 0 0 57.2472 6.556 31.7724 18.9188 -1 1 2 133 1.133 323.15 0 0 0.05872 -0.0300157 -0.0300157 0 0 0 -293.276 -4.92331e-06 -4.92332e-06 0 0 0 57.2933 6.60206 31.7724 18.9188 -1 1 2 134 1.134 323.15 0 0 0.05856 -0.0299599 -0.0299599 0 0 0 -304.083 -4.91763e-06 -4.91764e-06 0 0 0 57.3411 6.64985 31.7724 18.9188 -1 1 2 135 1.135 323.15 0 0 0.0584 -0.029904 -0.029904 0 0 0 -314.889 -4.91196e-06 -4.91196e-06 0 0 0 57.3906 6.69937 31.7724 18.9188 -1 1 2 136 1.136 323.15 0 0 0.05824 -0.0298482 -0.0298482 0 0 0 -325.695 -4.90628e-06 -4.90628e-06 0 0 0 57.4418 6.75061 31.7724 18.9188 -1 1 2 137 1.137 323.15 0 0 0.05808 -0.0297923 -0.0297923 0 0 0 -336.501 -4.9006e-06 -4.9006e-06 0 0 0 57.4948 6.80359 31.7724 18.9188 -1 1 2 138 1.138 323.15 0 0 0.05792 -0.0297365 -0.0297365 0 0 0 -347.307 -4.89492e-06 -4.89492e-06 0 0 0 57.5495 6.85829 31.7724 18.9188 -1 1 2 139 1.139 323.15 0 0 0.05776 -0.0296807 -0.0296807 0 0 0 -358.113 -4.88924e-06 -4.88925e-06 0 0 0 57.606 6.91473 31.7724 18.9188 -1 1 2 140 1.14 323.15 0 0 0.0576 -0.0296248 -0.0296248 0 0 0 -368.919 -4.88357e-06 -4.88357e-06 0 0 0 57.6641 6.97289 31.7724 18.9188 -1 1 2 141 1.141 323.15 0 0 0.05744 -0.029569 -0.029569 0 0 0 -379.725 -4.87789e-06 -4.87789e-06 0 0 0 57.724 7.03278 31.7724 18.9188 -1 1 2 142 1.142 323.15 0 0 0.05728 -0.0295131 -0.0295131 0 0 0 -390.531 -4.87221e-06 -4.87221e-06 0 0 0 57.7856 7.0944 31.7724 18.9188 -1 1 2 143 1.143 323.15 0 0 0.05712 -0.0294573 -0.0294573 0 0 0 -401.337 -4.86653e-06 -4.86653e-06 0 0 0 57.849 7.15775 31.7724 18.9188 -1 1 2 144 1.144 323.15 0 0 0.05696 -0.0294015 -0.0294015 0 0 0 -412.143 -4.86085e-06 -4.86086e-06 0 0 0 57.9141 7.22283 31.7724 18.9188 -1 1 2 145 1.145 323.15 0 0 0.0568 -0.0293456 -0.0293456 0 0 0 -422.949 -4.85517e-06 -4.85518e-06 0 0 0 57.9809 7.28964 31.7724 18.9188 -1 1 2 146 1.146 323.15 0 0 0.05664 -0.0292898 -0.0292898 0 0 0 -433.756 -4.8495e-06 -4.8495e-06 0 0 0 58.0494 7.35817 31.7724 18.9188 -1 1 2 147 1.147 323.15 0 0 0.05648 -0.0292339 -0.0292339 0 0 0 -444.562 -4.84382e-06 -4.84382e-06 0 0 0 58.1197 7.42844 31.7724 18.9188 -1 1 2 148 1.148 323.15 0 0 0.05632 -0.0291781 -0.0291781 0 0 0 -455.368 -4.83814e-06 -4.83814e-06 0 0 0 58.1917 7.50043 31.7724 18.9188 -1 1 2 149 1.149 323.15 0 0 0.05616 -0.0291223 -0.0291223 0 0 0 -466.174 -4.83246e-06 -4.83246e-06 0 0 0 58.2654 7.57415 31.7724 18.9188 -1 1 2 150 1.15 323.15 0 0 0.056 -0.0290664 -0.0290664 0 0 0 -476.98 -4.82678e-06 -4.82679e-06 0 0 0 58.3408 7.64961 31.7724 18.9188 -1 1 2 151 1.151 323.15 0 0 0.05584 -0.0290106 -0.0290106 0 0 0 -487.786 -4.82111e-06 -4.82111e-06 0 0 0 58.418 7.72679 31.7724 18.9188 -1 1 2 152 1.152 323.15 0 0 0.05568 -0.0289547 -0.0289547 0 0 0 -498.592 -4.81543e-06 -4.81543e-06 0 0 0 58.4969 7.8057 31.7724 18.9188 -1 1 2 153 1.153 323.15 0 0 0.05552 -0.0288989 -0.0288989 0 0 0 -509.398 -4.80975e-06 -4.80975e-06 0 0 0 58.5776 7.88634 31.7724 18.9188 -1 1 2 154 1.154 323.15 0 0 0.05536 -0.0288431 -0.0288431 0 0 0 -520.204 -4.80407e-06 -4.80407e-06 0 0 0 58.6599 7.96871 31.7724 18.9188 -1 1 2 155 1.155 323.15 0 0 0.0552 -0.0287872 -0.0287872 0 0 0 -531.01 -4.79839e-06 -4.79839e-06 0 0 0 58.744 8.0528 31.7724 18.9188 -1 1 2 156 1.156 323.15 0 0 0.05504 -0.0287314 -0.0287314 0 0 0 -541.816 -4.79271e-06 -4.79272e-06 0 0 0 58.8299 8.13863 31.7724 18.9188 -1 1 2 157 1.157 323.15 0 0 0.05488 -0.0286755 -0.0286755 0 0 0 -552.622 -4.78704e-06 -4.78704e-06 0 0 0 58.9174 8.22618 31.7724 18.9188 -1 1 2 158 1.158 323.15 0 0 0.05472 -0.0286197 -0.0286197 0 0 0 -563.428 -4.78136e-06 -4.78136e-06 0 0 0 59.0067 8.31547 31.7724 18.9188 -1 1 2 159 1.159 323.15 0 0 0.05456 -0.0285639 -0.0285639 0 0 0 -574.235 -4.77568e-06 -4.77568e-06 0 0 0 59.0977 8.40648 31.7724 18.9188 -1 1 2 160 1.16 323.15 0 0 0.0544 -0.028508 -0.028508 0 0 0 -585.041 -4.77e-06 -4.77e-06 0 0 0 59.1905 8.49922 31.7724 18.9188 -1 1 2 161 1.161 323.15 0 0 0.05424 -0.0284522 -0.0284522 0 0 0 -595.847 -4.76432e-06 -4.76433e-06 0 0 0 59.2849 8.59369 31.7724 18.9188 -1 1 2 162 1.162 323.15 0 0 0.05408 -0.0283963 -0.0283963 0 0 0 -606.653 -4.75864e-06 -4.75865e-06 0 0 0 59.3811 8.68989 31.7724 18.9188 -1 1 2 163 1.163 323.15 0 0 0.05392 -0.0283405 -0.0283405 0 0 0 -617.459 -4.75297e-06 -4.75297e-06 0 0 0 59.4791 8.78782 31.7724 18.9188 -1 1 2 164 1.164 323.15 0 0 0.05376 -0.0282847 -0.0282847 0 0 0 -628.265 -4.74729e-06 -4.74729e-06 0 0 0 59.5787 8.88748 31.7724 18.9188 -1 1 2 165 1.165 323.15 0 0 0.0536 -0.0282288 -0.0282288 0 0 0 -639.071 -4.74161e-06 -4.74161e-06 0 0 0 59.6801 8.98887 31.7724 18.9188 -1 1 2 166 1.166 323.15 0 0 0.05344 -0.028173 -0.028173 0 0 0 -649.877 -4.73593e-06 -4.73593e-06 0 0 0 59.7832 9.09198 31.7724 18.9188 -1 1 2 167 1.167 323.15 0 0 0.05328 -0.0281171 -0.0281171 0 0 0 -660.683 -4.73025e-06 -4.73026e-06 0 0 0 59.8881 9.19683 31.7724 18.9188 -1 1 2 168 1.168 323.15 0 0 0.05312 -0.0280613 -0.0280613 0 0 0 -671.489 -4.72458e-06 -4.72458e-06 0 0 0 59.9946 9.3034 31.7724 18.9188 -1 1 2 169 1.169 323.15 0 0 0.05296 -0.0280055 -0.0280055 0 0 0 -682.295 -4.7189e-06 -4.7189e-06 0 0 0 60.1029 9.41171 31.7724 18.9188 -1 1 2 170 1.17 323.15 0 0 0.0528 -0.0279496 -0.0279496 0 0 0 -693.101 -4.71322e-06 -4.71322e-06 0 0 0 60.213 9.52174 31.7724 18.9188 -1 1 2 171 1.171 323.15 0 0 0.05264 -0.0278938 -0.0278938 0 0 0 -703.908 -4.70754e-06 -4.70754e-06 0 0 0 60.3247 9.6335 31.7724 18.9188 -1 1 2 172 1.172 323.15 0 0 0.05248 -0.0278379 -0.0278379 0 0 0 -714.714 -4.70186e-06 -4.70187e-06 0 0 0 60.4382 9.74699 31.7724 18.9188 -1 1 2 173 1.173 323.15 0 0 0.05232 -0.0277821 -0.0277821 0 0 0 -725.52 -4.69618e-06 -4.69619e-06 0 0 0 60.5534 9.86221 31.7724 18.9188 -1 1 2 174 1.174 323.15 0 0 0.05216 -0.0277263 -0.0277263 0 0 0 -736.326 -4.69051e-06 -4.69051e-06 0 0 0 60.6704 9.97915 31.7724 18.9188 -1 1 2 175 1.175 323.15 0 0 0.052 -0.0276704 -0.0276704 0 0 0 -747.132 -4.68483e-06 -4.68483e-06 0 0 0 60.7891 10.0978 31.7724 18.9188 -1 1 2 176 1.176 323.15 0 0 0.05184 -0.0276146 -0.0276146 0 0 0 -757.938 -4.67915e-06 -4.67915e-06 0 0 0 60.9095 10.2182 31.7724 18.9188 -1 1 2 177 1.177 323.15 0 0 0.05168 -0.0275522 -0.0275522 0 0 0 -765.822 -4.75973e-06 -4.75973e-06 0 0 0 61.0314 10.299 31.8008 18.9316 -1 1 2 178 1.178 323.15 0 0 0.05152 -0.0274742 -0.0274742 0 0 0 -766.719 -4.75405e-06 -4.75405e-06 0 0 0 61.154 10.2815 31.8969 18.9756 -1 1 2 179 1.179 323.15 0 0 0.05136 -0.0273962 -0.0273962 0 0 0 -767.614 -4.74837e-06 -4.74837e-06 0 0 0 61.2767 10.264 31.9931 19.0197 -1 1 2 180 1.18 323.15 0 0 0.0512 -0.0273182 -0.0273182 0 0 0 -768.51 -4.74269e-06 -4.7427e-06 0 0 0 61.3996 10.2466 32.0893 19.0637 -1 1 2 181 1.181 323.15 0 0 0.05104 -0.0272402 -0.0272402 0 0 0 -769.404 -4.73702e-06 -4.73702e-06 0 0 0 61.5226 10.2293 32.1857 19.1077 -1 1 2 182 1.182 323.15 0 0 0.05088 -0.0271622 -0.0271622 0 0 0 -770.298 -4.73134e-06 -4.73134e-06 0 0 0 61.6458 10.212 32.2821 19.1517 -1 1 2 183 1.183 323.15 0 0 0.05072 -0.0270842 -0.0270842 0 0 0 -771.191 -4.72566e-06 -4.72566e-06 0 0 0 61.7691 10.1948 32.3786 19.1958 -1 1 2 184 1.184 323.15 0 0 0.05056 -0.0270062 -0.0270062 0 0 0 -772.083 -4.71998e-06 -4.71998e-06 0 0 0 61.8926 10.1776 32.4751 19.2398 -1 1 2 185 1.185 323.15 0 0 0.0504 -0.0269282 -0.0269282 0 0 0 -772.975 -4.7143e-06 -4.7143e-06 0 0 0 62.0162 10.1606 32.5718 19.2838 -1 1 2 186 1.186 323.15 0 0 0.05024 -0.0268502 -0.0268502 0 0 0 -773.866 -4.70862e-06 -4.70862e-06 0 0 0 62.1399 10.1436 32.6685 19.3279 -1 1 2 187 1.187 323.15 0 0 0.05008 -0.0267722 -0.0267722 0 0 0 -774.756 -4.70294e-06 -4.70295e-06 0 0 0 62.2638 10.1266 32.7653 19.3719 -1 1 2 188 1.188 323.15 0 0 0.04992 -0.0266942 -0.0266942 0 0 0 -775.646 -4.69727e-06 -4.69727e-06 0 0 0 62.3879 10.1098 32.8621 19.416 -1 1 2 189 1.189 323.15 0 0 0.04976 -0.0266162 -0.0266162 0 0 0 -776.535 -4.69159e-06 -4.69159e-06 0 0 0 62.512 10.093 32.959 19.46 -1 1 2 190 1.19 323.15 0 0 0.0496 -0.0265381 -0.0265381 0 0 0 -777.424 -4.68591e-06 -4.68591e-06 0 0 0 62.6364 10.0762 33.056 19.5041 -1 1 2 191 1.191 323.15 0 0 0.04944 -0.0264601 -0.0264601 0 0 0 -778.311 -4.68023e-06 -4.68023e-06 0 0 0 62.7608 10.0596 33.1531 19.5481 -1 1 2 192 1.192 323.15 0 0 0.04928 -0.0263821 -0.0263821 0 0 0 -779.199 -4.67455e-06 -4.67455e-06 0 0 0 62.8854 10.043 33.2502 19.5922 -1 1 2 193 1.193 323.15 0 0 0.04912 -0.0263041 -0.0263041 0 0 0 -780.085 -4.66887e-06 -4.66887e-06 0 0 0 63.0102 10.0264 33.3475 19.6363 -1 1 2 194 1.194 323.15 0 0 0.04896 -0.0262261 -0.0262261 0 0 0 -780.971 -4.66319e-06 -4.6632e-06 0 0 0 63.135 10.01 33.4447 19.6803 -1 1 2 195 1.195 323.15 0 0 0.0488 -0.0261481 -0.0261481 0 0 0 -781.856 -4.65752e-06 -4.65752e-06 0 0 0 63.2601 9.99358 33.5421 19.7244 -1 1 2 196 1.196 323.15 0 0 0.04864 -0.02607 -0.02607 0 0 0 -782.741 -4.65184e-06 -4.65184e-06 0 0 0 63.3852 9.97725 33.6395 19.7685 -1 1 2 197 1.197 323.15 0 0 0.04848 -0.025992 -0.025992 0 0 0 -783.625 -4.64616e-06 -4.64616e-06 0 0 0 63.5106 9.96099 33.737 19.8125 -1 1 2 198 1.198 323.15 0 0 0.04832 -0.025914 -0.025914 0 0 0 -784.508 -4.64048e-06 -4.64048e-06 0 0 0 63.636 9.9448 33.8346 19.8566 -1 1 2 199 1.199 323.15 0 0 0.04816 -0.025836 -0.025836 0 0 0 -785.391 -4.6348e-06 -4.6348e-06 0 0 0 63.7616 9.92867 33.9322 19.9007 -1 1 2 200 1.2 323.15 0 0 0.048 -0.0257579 -0.0257579 0 0 0 -786.273 -4.62912e-06 -4.62913e-06 0 0 0 63.8873 9.91261 34.0299 19.9448 -1 1 2 201 1.201 323.15 0 0 0.04784 -0.0256799 -0.0256799 0 0 0 -787.154 -4.62345e-06 -4.62345e-06 0 0 0 64.0132 9.89662 34.1277 19.9889 -1 1 2 202 1.202 323.15 0 0 0.04768 -0.0256019 -0.0256019 0 0 0 -788.035 -4.61777e-06 -4.61777e-06 0 0 0 64.1392 9.88069 34.2256 20.0329 -1 1 2 203 1.203 323.15 0 0 0.04752 -0.0255238 -0.0255238 0 0 0 -788.915 -4.61209e-06 -4.61209e-06 0 0 0 64.2654 9.86483 34.3235 20.077 -1 1 2 204 1.204 323.15 0 0 0.04736 -0.0254458 -0.0254458 0 0 0 -789.795 -4.60641e-06 -4.60641e-06 0 0 0 64.3917 9.84904 34.4215 20.1211 -1 1 2 205 1.205 323.15 0 0 0.0472 -0.0253678 -0.0253678 0 0 0 -790.674 -4.60073e-06 -4.60073e-06 0 0 0 64.5181 9.83332 34.5196 20.1652 -1 1 2 206 1.206 323.15 0 0 0.04704 -0.0252897 -0.0252897 0 0 0 -791.552 -4.59505e-06 -4.59505e-06 0 0 0 64.6447 9.81766 34.6177 20.2093 -1 1 2 207 1.207 323.15 0 0 0.04688 -0.0252117 -0.0252117 0 0 0 -792.43 -4.58937e-06 -4.58938e-06 0 0 0 64.7714 9.80207 34.7159 20.2534 -1 1 2 208 1.208 323.15 0 0 0.04672 -0.0251337 -0.0251337 0 0 0 -793.307 -4.5837e-06 -4.5837e-06 0 0 0 64.8983 9.78655 34.8142 20.2975 -1 1 2 209 1.209 323.15 0 0 0.04656 -0.0250556 -0.0250556 0 0 0 -794.184 -4.57802e-06 -4.57802e-06 0 0 0 65.0253 9.7711 34.9125 20.3416 -1 1 2 210 1.21 323.15 0 0 0.0464 -0.0249776 -0.0249776 0 0 0 -795.059 -4.57234e-06 -4.57234e-06 0 0 0 65.1524 9.75571 35.0109 20.3857 -1 1 2 211 1.211 323.15 0 0 0.04624 -0.0248995 -0.0248995 0 0 0 -795.935 -4.56666e-06 -4.56666e-06 0 0 0 65.2797 9.74039 35.1094 20.4299 -1 1 2 212 1.212 323.15 0 0 0.04608 -0.0248215 -0.0248215 0 0 0 -796.809 -4.56098e-06 -4.56098e-06 0 0 0 65.4071 9.72514 35.208 20.474 -1 1 2 213 1.213 323.15 0 0 0.04592 -0.0247434 -0.0247434 0 0 0 -797.684 -4.5553e-06 -4.55531e-06 0 0 0 65.5347 9.70996 35.3066 20.5181 -1 1 2 214 1.214 323.15 0 0 0.04576 -0.0246654 -0.0246654 0 0 0 -798.557 -4.54963e-06 -4.54963e-06 0 0 0 65.6624 9.69484 35.4053 20.5622 -1 1 2 215 1.215 323.15 0 0 0.0456 -0.0245873 -0.0245873 0 0 0 -799.43 -4.54395e-06 -4.54395e-06 0 0 0 65.7902 9.67979 35.5041 20.6063 -1 1 2 216 1.216 323.15 0 0 0.04544 -0.0245093 -0.0245093 0 0 0 -800.302 -4.53827e-06 -4.53827e-06 0 0 0 65.9182 9.66481 35.6029 20.6505 -1 1 2 217 1.217 323.15 0 0 0.04528 -0.0244312 -0.0244312 0 0 0 -801.174 -4.53259e-06 -4.53259e-06 0 0 0 66.0463 9.6499 35.7018 20.6946 -1 1 2 218 1.218 323.15 0 0 0.04512 -0.0243532 -0.0243532 0 0 0 -802.045 -4.52691e-06 -4.52691e-06 0 0 0 66.1746 9.63505 35.8008 20.7387 -1 1 2 219 1.219 323.15 0 0 0.04496 -0.0242751 -0.0242751 0 0 0 -802.916 -4.52123e-06 -4.52123e-06 0 0 0 66.303 9.62028 35.8998 20.7828 -1 1 2 220 1.22 323.15 0 0 0.0448 -0.0241971 -0.0241971 0 0 0 -803.786 -4.51555e-06 -4.51556e-06 0 0 0 66.4315 9.60557 35.9989 20.827 -1 1 2 221 1.221 323.15 0 0 0.04464 -0.024119 -0.024119 0 0 0 -804.655 -4.50988e-06 -4.50988e-06 0 0 0 66.5602 9.59092 36.0981 20.8711 -1 1 2 222 1.222 323.15 0 0 0.04448 -0.024041 -0.024041 0 0 0 -805.524 -4.5042e-06 -4.5042e-06 0 0 0 66.689 9.57635 36.1974 20.9153 -1 1 2 223 1.223 323.15 0 0 0.04432 -0.0239629 -0.0239629 0 0 0 -806.392 -4.49852e-06 -4.49852e-06 0 0 0 66.8179 9.56184 36.2967 20.9594 -1 1 2 224 1.224 323.15 0 0 0.04416 -0.0238849 -0.0238849 0 0 0 -807.26 -4.49284e-06 -4.49284e-06 0 0 0 66.947 9.5474 36.3961 21.0036 -1 1 2 225 1.225 323.15 0 0 0.044 -0.0238068 -0.0238068 0 0 0 -808.127 -4.48716e-06 -4.48716e-06 0 0 0 67.0763 9.53303 36.4955 21.0477 -1 1 2 226 1.226 323.15 0 0 0.04384 -0.0237287 -0.0237287 0 0 0 -808.993 -4.48148e-06 -4.48148e-06 0 0 0 67.2056 9.51873 36.595 21.0919 -1 1 2 227 1.227 323.15 0 0 0.04368 -0.0236507 -0.0236507 0 0 0 -809.859 -4.4758e-06 -4.47581e-06 0 0 0 67.3351 9.50449 36.6946 21.136 -1 1 2 228 1.228 323.15 0 0 0.04352 -0.0235726 -0.0235726 0 0 0 -810.724 -4.47013e-06 -4.47013e-06 0 0 0 67.4648 9.49032 36.7943 21.1802 -1 1 2 229 1.229 323.15 0 0 0.04336 -0.0234945 -0.0234945 0 0 0 -811.589 -4.46445e-06 -4.46445e-06 0 0 0 67.5946 9.47622 36.894 21.2243 -1 1 2 230 1.23 323.15 0 0 0.0432 -0.0234165 -0.0234165 0 0 0 -812.453 -4.45877e-06 -4.45877e-06 0 0 0 67.7245 9.46219 36.9938 21.2685 -1 1 2 231 1.231 323.15 0 0 0.04304 -0.0233384 -0.0233384 0 0 0 -813.317 -4.45309e-06 -4.45309e-06 0 0 0 67.8545 9.44823 37.0937 21.3126 -1 1 2 232 1.232 323.15 0 0 0.04288 -0.0232603 -0.0232603 0 0 0 -814.18 -4.44741e-06 -4.44741e-06 0 0 0 67.9847 9.43433 37.1936 21.3568 -1 1 2 233 1.233 323.15 0 0 0.04272 -0.0231823 -0.0231823 0 0 0 -815.042 -4.44173e-06 -4.44173e-06 0 0 0 68.1151 9.4205 37.2936 21.401 -1 1 2 234 1.234 323.15 0 0 0.04256 -0.0231042 -0.0231042 0 0 0 -815.904 -4.43605e-06 -4.43606e-06 0 0 0 68.2456 9.40674 37.3937 21.4452 -1 1 2 235 1.235 323.15 0 0 0.0424 -0.0230261 -0.0230261 0 0 0 -816.766 -4.43037e-06 -4.43038e-06 0 0 0 68.3762 9.39305 37.4938 21.4893 -1 1 2 236 1.236 323.15 0 0 0.04224 -0.022948 -0.022948 0 0 0 -817.627 -4.4247e-06 -4.4247e-06 0 0 0 68.5069 9.37942 37.594 21.5335 -1 1 2 237 1.237 323.15 0 0 0.04208 -0.02287 -0.02287 0 0 0 -818.487 -4.41902e-06 -4.41902e-06 0 0 0 68.6378 9.36587 37.6943 21.5777 -1 1 2 238 1.238 323.15 0 0 0.04192 -0.0227919 -0.0227919 0 0 0 -819.347 -4.41334e-06 -4.41334e-06 0 0 0 68.7688 9.35238 37.7946 21.6219 -1 1 2 239 1.239 323.15 0 0 0.04176 -0.0227138 -0.0227138 0 0 0 -820.206 -4.40766e-06 -4.40766e-06 0 0 0 68.9 9.33896 37.895 21.666 -1 1 2 240 1.24 323.15 0 0 0.0416 -0.0226357 -0.0226357 0 0 0 -821.064 -4.40198e-06 -4.40198e-06 0 0 0 69.0313 9.32561 37.9955 21.7102 -1 1 2 241 1.241 323.15 0 0 0.04144 -0.0225576 -0.0225576 0 0 0 -821.923 -4.3963e-06 -4.39631e-06 0 0 0 69.1627 9.31232 38.096 21.7544 -1 1 2 242 1.242 323.15 0 0 0.04128 -0.0224796 -0.0224796 0 0 0 -822.78 -4.39062e-06 -4.39063e-06 0 0 0 69.2943 9.2991 38.1966 21.7986 -1 1 2 243 1.243 323.15 0 0 0.04112 -0.0224015 -0.0224015 0 0 0 -823.637 -4.38495e-06 -4.38495e-06 0 0 0 69.426 9.28596 38.2973 21.8428 -1 1 2 244 1.244 323.15 0 0 0.04096 -0.0223234 -0.0223234 0 0 0 -824.494 -4.37927e-06 -4.37927e-06 0 0 0 69.5579 9.27288 38.398 21.887 -1 1 2 245 1.245 323.15 0 0 0.0408 -0.0222453 -0.0222453 0 0 0 -825.35 -4.37359e-06 -4.37359e-06 0 0 0 69.6899 9.25986 38.4988 21.9312 -1 1 2 246 1.246 323.15 0 0 0.04064 -0.0221672 -0.0221672 0 0 0 -826.205 -4.36791e-06 -4.36791e-06 0 0 0 69.822 9.24692 38.5997 21.9754 -1 1 2 247 1.247 323.15 0 0 0.04048 -0.0220891 -0.0220891 0 0 0 -827.06 -4.36223e-06 -4.36223e-06 0 0 0 69.9543 9.23404 38.7006 22.0196 -1 1 2 248 1.248 323.15 0 0 0.04032 -0.022011 -0.022011 0 0 0 -827.914 -4.35655e-06 -4.35656e-06 0 0 0 70.0867 9.22124 38.8016 22.0638 -1 1 2 249 1.249 323.15 0 0 0.04016 -0.0219329 -0.0219329 0 0 0 -828.768 -4.35087e-06 -4.35088e-06 0 0 0 70.2192 9.2085 38.9027 22.108 -1 1 2 250 1.25 323.15 0 0 0.04 -0.0218548 -0.0218548 0 0 0 -829.621 -4.3452e-06 -4.3452e-06 0 0 0 70.3519 9.19582 39.0038 22.1522 -1 1 2 251 1.251 323.15 0 0 0.03984 -0.0217768 -0.0217768 0 0 0 -830.474 -4.33952e-06 -4.33952e-06 0 0 0 70.4847 9.18322 39.105 22.1964 -1 1 2 252 1.252 323.15 0 0 0.03968 -0.0216987 -0.0216987 0 0 0 -831.326 -4.33384e-06 -4.33384e-06 0 0 0 70.6176 9.17069 39.2063 22.2407 -1 1 2 253 1.253 323.15 0 0 0.03952 -0.0216206 -0.0216206 0 0 0 -832.178 -4.32816e-06 -4.32816e-06 0 0 0 70.7507 9.15822 39.3076 22.2849 -1 1 2 254 1.254 323.15 0 0 0.03936 -0.0215425 -0.0215425 0 0 0 -833.029 -4.32248e-06 -4.32248e-06 0 0 0 70.8839 9.14582 39.409 22.3291 -1 1 2 255 1.255 323.15 0 0 0.0392 -0.0214644 -0.0214644 0 0 0 -833.879 -4.3168e-06 -4.31681e-06 0 0 0 71.0173 9.13349 39.5105 22.3733 -1 1 2 256 1.256 323.15 0 0 0.03904 -0.0213863 -0.0213863 0 0 0 -834.73 -4.31113e-06 -4.31113e-06 0 0 0 71.1508 9.12123 39.612 22.4175 -1 1 2 257 1.257 323.15 0 0 0.03888 -0.0213082 -0.0213082 0 0 0 -835.579 -4.30545e-06 -4.30545e-06 0 0 0 71.2844 9.10904 39.7136 22.4618 -1 1 2 258 1.258 323.15 0 0 0.03872 -0.0212301 -0.0212301 0 0 0 -836.428 -4.29977e-06 -4.29977e-06 0 0 0 71.4181 9.09691 39.8152 22.506 -1 1 2 259 1.259 323.15 0 0 0.03856 -0.021152 -0.021152 0 0 0 -837.277 -4.29409e-06 -4.29409e-06 0 0 0 71.552 9.08485 39.917 22.5502 -1 1 2 260 1.26 323.15 0 0 0.0384 -0.0210739 -0.0210739 0 0 0 -838.125 -4.28841e-06 -4.28841e-06 0 0 0 71.6861 9.07287 40.0187 22.5945 -1 1 2 261 1.261 323.15 0 0 0.03824 -0.0209958 -0.0209958 0 0 0 -838.972 -4.28273e-06 -4.28274e-06 0 0 0 71.8202 9.06094 40.1206 22.6387 -1 1 2 262 1.262 323.15 0 0 0.03808 -0.0209177 -0.0209177 0 0 0 -839.819 -4.27705e-06 -4.27706e-06 0 0 0 71.9545 9.04909 40.2225 22.6829 -1 1 2 263 1.263 323.15 0 0 0.03792 -0.0208395 -0.0208395 0 0 0 -840.666 -4.27138e-06 -4.27138e-06 0 0 0 72.089 9.03731 40.3245 22.7272 -1 1 2 264 1.264 323.15 0 0 0.03776 -0.0207614 -0.0207614 0 0 0 -841.512 -4.2657e-06 -4.2657e-06 0 0 0 72.2235 9.02559 40.4266 22.7714 -1 1 2 265 1.265 323.15 0 0 0.0376 -0.0206833 -0.0206833 0 0 0 -842.357 -4.26002e-06 -4.26002e-06 0 0 0 72.3583 9.01395 40.5287 22.8156 -1 1 2 266 1.266 323.15 0 0 0.03744 -0.0206052 -0.0206052 0 0 0 -843.202 -4.25434e-06 -4.25434e-06 0 0 0 72.4931 9.00237 40.6308 22.8599 -1 1 2 267 1.267 323.15 0 0 0.03728 -0.0205271 -0.0205271 0 0 0 -844.047 -4.24866e-06 -4.24867e-06 0 0 0 72.6281 8.99086 40.7331 22.9041 -1 1 2 268 1.268 323.15 0 0 0.03712 -0.020449 -0.020449 0 0 0 -844.891 -4.24298e-06 -4.24299e-06 0 0 0 72.7632 8.97942 40.8354 22.9484 -1 1 2 269 1.269 323.15 0 0 0.03696 -0.0203709 -0.0203709 0 0 0 -845.734 -4.2373e-06 -4.23731e-06 0 0 0 72.8984 8.96805 40.9378 22.9926 -1 1 2 270 1.27 323.15 0 0 0.0368 -0.0202928 -0.0202928 0 0 0 -846.577 -4.23163e-06 -4.23163e-06 0 0 0 73.0338 8.95674 41.0402 23.0369 -1 1 2 271 1.271 323.15 0 0 0.03664 -0.0202146 -0.0202146 0 0 0 -847.42 -4.22595e-06 -4.22595e-06 0 0 0 73.1694 8.9455 41.1427 23.0812 -1 1 2 272 1.272 323.15 0 0 0.03648 -0.0201365 -0.0201365 0 0 0 -848.262 -4.22027e-06 -4.22027e-06 0 0 0 73.305 8.93434 41.2452 23.1254 -1 1 2 273 1.273 323.15 0 0 0.03632 -0.0200584 -0.0200584 0 0 0 -849.103 -4.21459e-06 -4.21459e-06 0 0 0 73.4408 8.92324 41.3479 23.1697 -1 1 2 274 1.274 323.15 0 0 0.03616 -0.0199803 -0.0199803 0 0 0 -849.944 -4.20891e-06 -4.20892e-06 0 0 0 73.5767 8.91221 41.4506 23.2139 -1 1 2 275 1.275 323.15 0 0 0.036 -0.0199022 -0.0199022 0 0 0 -850.785 -4.20323e-06 -4.20324e-06 0 0 0 73.7128 8.90125 41.5533 23.2582 -1 1 2 276 1.276 323.15 0 0 0.03584 -0.019824 -0.019824 0 0 0 -851.625 -4.19756e-06 -4.19756e-06 0 0 0 73.849 8.89035 41.6561 23.3025 -1 1 2 277 1.277 323.15 0 0 0.03568 -0.0197459 -0.0197459 0 0 0 -852.465 -4.19188e-06 -4.19188e-06 0 0 0 73.9853 8.87953 41.759 23.3468 -1 1 2 278 1.278 323.15 0 0 0.03552 -0.0196678 -0.0196678 0 0 0 -853.304 -4.1862e-06 -4.1862e-06 0 0 0 74.1218 8.86877 41.862 23.391 -1 1 2 279 1.279 323.15 0 0 0.03536 -0.0195897 -0.0195897 0 0 0 -854.142 -4.18052e-06 -4.18052e-06 0 0 0 74.2584 8.85809 41.965 23.4353 -1 1 2 280 1.28 323.15 0 0 0.0352 -0.0195115 -0.0195115 0 0 0 -854.98 -4.17484e-06 -4.17484e-06 0 0 0 74.3951 8.84747 42.068 23.4796 -1 1 2 281 1.281 323.15 0 0 0.03504 -0.0194334 -0.0194334 0 0 0 -855.818 -4.16916e-06 -4.16917e-06 0 0 0 74.532 8.83692 42.1712 23.5239 -1 1 2 282 1.282 323.15 0 0 0.03488 -0.0193553 -0.0193553 0 0 0 -856.655 -4.16348e-06 -4.16349e-06 0 0 0 74.6689 8.82643 42.2744 23.5681 -1 1 2 283 1.283 323.15 0 0 0.03472 -0.0192772 -0.0192772 0 0 0 -857.492 -4.1578e-06 -4.15781e-06 0 0 0 74.8061 8.81602 42.3776 23.6124 -1 1 2 284 1.284 323.15 0 0 0.03456 -0.019199 -0.019199 0 0 0 -858.328 -4.15213e-06 -4.15213e-06 0 0 0 74.9433 8.80568 42.481 23.6567 -1 1 2 285 1.285 323.15 0 0 0.0344 -0.0191209 -0.0191209 0 0 0 -859.164 -4.14645e-06 -4.14645e-06 0 0 0 75.0807 8.7954 42.5843 23.701 -1 1 2 286 1.286 323.15 0 0 0.03424 -0.0190428 -0.0190428 0 0 0 -859.999 -4.14077e-06 -4.14077e-06 0 0 0 75.2183 8.7852 42.6878 23.7453 -1 1 2 287 1.287 323.15 0 0 0.03408 -0.0189646 -0.0189646 0 0 0 -860.834 -4.13509e-06 -4.13509e-06 0 0 0 75.3559 8.77506 42.7913 23.7896 -1 1 2 288 1.288 323.15 0 0 0.03392 -0.0188865 -0.0188865 0 0 0 -861.668 -4.12941e-06 -4.12942e-06 0 0 0 75.4937 8.76499 42.8949 23.8339 -1 1 2 289 1.289 323.15 0 0 0.03376 -0.0188084 -0.0188084 0 0 0 -862.502 -4.12373e-06 -4.12374e-06 0 0 0 75.6317 8.75499 42.9985 23.8782 -1 1 2 290 1.29 323.15 0 0 0.0336 -0.0187302 -0.0187302 0 0 0 -863.335 -4.11806e-06 -4.11806e-06 0 0 0 75.7697 8.74506 43.1022 23.9225 -1 1 2 291 1.291 323.15 0 0 0.03344 -0.0186521 -0.0186521 0 0 0 -864.168 -4.11238e-06 -4.11238e-06 0 0 0 75.9079 8.73519 43.206 23.9668 -1 1 2 292 1.292 323.15 0 0 0.03328 -0.0185739 -0.0185739 0 0 0 -865.001 -4.1067e-06 -4.1067e-06 0 0 0 76.0463 8.7254 43.3098 24.0111 -1 1 2 293 1.293 323.15 0 0 0.03312 -0.0184958 -0.0184958 0 0 0 -865.833 -4.10102e-06 -4.10102e-06 0 0 0 76.1847 8.71567 43.4137 24.0554 -1 1 2 294 1.294 323.15 0 0 0.03296 -0.0184177 -0.0184177 0 0 0 -866.664 -4.09534e-06 -4.09535e-06 0 0 0 76.3233 8.70602 43.5176 24.0997 -1 1 2 295 1.295 323.15 0 0 0.0328 -0.0183395 -0.0183395 0 0 0 -867.495 -4.08966e-06 -4.08967e-06 0 0 0 76.4621 8.69643 43.6217 24.144 -1 1 2 296 1.296 323.15 0 0 0.03264 -0.0182614 -0.0182614 0 0 0 -868.326 -4.08399e-06 -4.08399e-06 0 0 0 76.6009 8.68691 43.7257 24.1883 -1 1 2 297 1.297 323.15 0 0 0.03248 -0.0181832 -0.0181832 0 0 0 -869.156 -4.07831e-06 -4.07831e-06 0 0 0 76.7399 8.67746 43.8299 24.2326 -1 1 2 298 1.298 323.15 0 0 0.03232 -0.0181051 -0.0181051 0 0 0 -869.985 -4.07263e-06 -4.07263e-06 0 0 0 76.8791 8.66808 43.9341 24.2769 -1 1 2 299 1.299 323.15 0 0 0.03216 -0.0180269 -0.0180269 0 0 0 -870.815 -4.06695e-06 -4.06695e-06 0 0 0 77.0183 8.65876 44.0383 24.3212 -1 1 2 300 1.3 323.15 0 0 0.032 -0.0179488 -0.0179488 0 0 0 -871.643 -4.06127e-06 -4.06127e-06 0 0 0 77.1577 8.64952 44.1427 24.3656 -1 1 2 301 1.301 323.15 0 0 0.03184 -0.0178707 -0.0178707 0 0 0 -872.472 -4.05559e-06 -4.0556e-06 0 0 0 77.2973 8.64035 44.247 24.4099 -1 1 2 302 1.302 323.15 0 0 0.03168 -0.0177925 -0.0177925 0 0 0 -873.3 -4.04991e-06 -4.04992e-06 0 0 0 77.4369 8.63124 44.3515 24.4542 -1 1 2 303 1.303 323.15 0 0 0.03152 -0.0177144 -0.0177144 0 0 0 -874.127 -4.04424e-06 -4.04424e-06 0 0 0 77.5767 8.6222 44.456 24.4985 -1 1 2 304 1.304 323.15 0 0 0.03136 -0.0176362 -0.0176362 0 0 0 -874.954 -4.03856e-06 -4.03856e-06 0 0 0 77.7166 8.61324 44.5606 24.5429 -1 1 2 305 1.305 323.15 0 0 0.0312 -0.0175581 -0.0175581 0 0 0 -875.78 -4.03288e-06 -4.03288e-06 0 0 0 77.8567 8.60434 44.6652 24.5872 -1 1 2 306 1.306 323.15 0 0 0.03104 -0.0174799 -0.0174799 0 0 0 -876.607 -4.0272e-06 -4.0272e-06 0 0 0 77.9969 8.59551 44.7699 24.6315 -1 1 2 307 1.307 323.15 0 0 0.03088 -0.0174017 -0.0174017 0 0 0 -877.432 -4.02152e-06 -4.02153e-06 0 0 0 78.1372 8.58675 44.8746 24.6758 -1 1 2 308 1.308 323.15 0 0 0.03072 -0.0173236 -0.0173236 0 0 0 -878.257 -4.01584e-06 -4.01585e-06 0 0 0 78.2777 8.57805 44.9794 24.7202 -1 1 2 309 1.309 323.15 0 0 0.03056 -0.0172454 -0.0172454 0 0 0 -879.082 -4.01017e-06 -4.01017e-06 0 0 0 78.4183 8.56943 45.0843 24.7645 -1 1 2 310 1.31 323.15 0 0 0.0304 -0.0171673 -0.0171673 0 0 0 -879.906 -4.00449e-06 -4.00449e-06 0 0 0 78.559 8.56088 45.1892 24.8089 -1 1 2 311 1.311 323.15 0 0 0.03024 -0.0170891 -0.0170891 0 0 0 -880.73 -3.99881e-06 -3.99881e-06 0 0 0 78.6998 8.55239 45.2942 24.8532 -1 1 2 312 1.312 323.15 0 0 0.03008 -0.017011 -0.017011 0 0 0 -881.554 -3.99313e-06 -3.99313e-06 0 0 0 78.8408 8.54397 45.3993 24.8975 -1 1 2 313 1.313 323.15 0 0 0.02992 -0.0169328 -0.0169328 0 0 0 -882.377 -3.98745e-06 -3.98745e-06 0 0 0 78.9819 8.53563 45.5044 24.9419 -1 1 2 314 1.314 323.15 0 0 0.02976 -0.0168546 -0.0168546 0 0 0 -883.199 -3.98177e-06 -3.98178e-06 0 0 0 79.1232 8.52735 45.6096 24.9862 -1 1 2 315 1.315 323.15 0 0 0.0296 -0.0167765 -0.0167765 0 0 0 -884.021 -3.97609e-06 -3.9761e-06 0 0 0 79.2646 8.51914 45.7148 25.0306 -1 1 2 316 1.316 323.15 0 0 0.02944 -0.0166983 -0.0166983 0 0 0 -884.843 -3.97041e-06 -3.97042e-06 0 0 0 79.4061 8.511 45.8201 25.0749 -1 1 2 317 1.317 323.15 0 0 0.02928 -0.0166201 -0.0166201 0 0 0 -885.664 -3.96474e-06 -3.96474e-06 0 0 0 79.5477 8.50293 45.9255 25.1193 -1 1 2 318 1.318 323.15 0 0 0.02912 -0.016542 -0.016542 0 0 0 -886.485 -3.95906e-06 -3.95906e-06 0 0 0 79.6895 8.49493 46.0309 25.1636 -1 1 2 319 1.319 323.15 0 0 0.02896 -0.0164638 -0.0164638 0 0 0 -887.305 -3.95338e-06 -3.95338e-06 0 0 0 79.8314 8.487 46.1364 25.208 -1 1 2 320 1.32 323.15 0 0 0.0288 -0.0163857 -0.0163857 0 0 0 -888.125 -3.9477e-06 -3.9477e-06 0 0 0 79.9734 8.47913 46.2419 25.2524 -1 1 2 321 1.321 323.15 0 0 0.02864 -0.0163075 -0.0163075 0 0 0 -888.945 -3.94202e-06 -3.94203e-06 0 0 0 80.1156 8.47134 46.3475 25.2967 -1 1 2 322 1.322 323.15 0 0 0.02848 -0.0162293 -0.0162293 0 0 0 -889.764 -3.93634e-06 -3.93635e-06 0 0 0 80.2579 8.46361 46.4532 25.3411 -1 1 2 323 1.323 323.15 0 0 0.02832 -0.0161511 -0.0161511 0 0 0 -890.583 -3.93066e-06 -3.93067e-06 0 0 0 80.4003 8.45596 46.5589 25.3854 -1 1 2 324 1.324 323.15 0 0 0.02816 -0.016073 -0.016073 0 0 0 -891.401 -3.92499e-06 -3.92499e-06 0 0 0 80.5429 8.44837 46.6647 25.4298 -1 1 2 325 1.325 323.15 0 0 0.028 -0.0159948 -0.0159948 0 0 0 -892.219 -3.91931e-06 -3.91931e-06 0 0 0 80.6855 8.44085 46.7705 25.4742 -1 1 2 326 1.326 323.15 0 0 0.02784 -0.0159166 -0.0159166 0 0 0 -893.036 -3.91363e-06 -3.91363e-06 0 0 0 80.8284 8.4334 46.8764 25.5185 -1 1 2 327 1.327 323.15 0 0 0.02768 -0.0158385 -0.0158385 0 0 0 -893.853 -3.90795e-06 -3.90795e-06 0 0 0 80.9713 8.42602 46.9824 25.5629 -1 1 2 328 1.328 323.15 0 0 0.02752 -0.0157603 -0.0157603 0 0 0 -894.67 -3.90227e-06 -3.90227e-06 0 0 0 81.1144 8.41871 47.0884 25.6073 -1 1 2 329 1.329 323.15 0 0 0.02736 -0.0156821 -0.0156821 0 0 0 -895.486 -3.89659e-06 -3.8966e-06 0 0 0 81.2576 8.41147 47.1945 25.6517 -1 1 2 330 1.33 323.15 0 0 0.0272 -0.0156039 -0.0156039 0 0 0 -896.301 -3.89091e-06 -3.89092e-06 0 0 0 81.401 8.4043 47.3006 25.696 -1 1 2 331 1.331 323.15 0 0 0.02704 -0.0155258 -0.0155258 0 0 0 -897.117 -3.88523e-06 -3.88524e-06 0 0 0 81.5444 8.3972 47.4068 25.7404 -1 1 2 332 1.332 323.15 0 0 0.02688 -0.0154476 -0.0154476 0 0 0 -897.932 -3.87956e-06 -3.87956e-06 0 0 0 81.688 8.39016 47.5131 25.7848 -1 1 2 333 1.333 323.15 0 0 0.02672 -0.0153694 -0.0153694 0 0 0 -898.746 -3.87388e-06 -3.87388e-06 0 0 0 81.8318 8.3832 47.6194 25.8292 -1 1 2 334 1.334 323.15 0 0 0.02656 -0.0152912 -0.0152912 0 0 0 -899.56 -3.8682e-06 -3.8682e-06 0 0 0 81.9756 8.3763 47.7258 25.8736 -1 1 2 335 1.335 323.15 0 0 0.0264 -0.015213 -0.015213 0 0 0 -900.374 -3.86252e-06 -3.86252e-06 0 0 0 82.1196 8.36948 47.8322 25.9179 -1 1 2 336 1.336 323.15 0 0 0.02624 -0.0151349 -0.0151349 0 0 0 -901.187 -3.85684e-06 -3.85685e-06 0 0 0 82.2638 8.36272 47.9387 25.9623 -1 1 2 337 1.337 323.15 0 0 0.02608 -0.0150567 -0.0150567 0 0 0 -902 -3.85116e-06 -3.85117e-06 0 0 0 82.408 8.35604 48.0453 26.0067 -1 1 2 338 1.338 323.15 0 0 0.02592 -0.0149785 -0.0149785 0 0 0 -902.812 -3.84549e-06 -3.84549e-06 0 0 0 82.5524 8.34942 48.1519 26.0511 -1 1 2 339 1.339 323.15 0 0 0.02576 -0.0149003 -0.0149003 0 0 0 -903.624 -3.83981e-06 -3.83981e-06 0 0 0 82.6969 8.34287 48.2585 26.0955 -1 1 2 340 1.34 323.15 0 0 0.0256 -0.0148221 -0.0148221 0 0 0 -904.436 -3.83413e-06 -3.83413e-06 0 0 0 82.8416 8.33639 48.3653 26.1399 -1 1 2 341 1.341 323.15 0 0 0.02544 -0.0147439 -0.0147439 0 0 0 -905.247 -3.82845e-06 -3.82845e-06 0 0 0 82.9863 8.32998 48.4721 26.1843 -1 1 2 342 1.342 323.15 0 0 0.02528 -0.0146657 -0.0146657 0 0 0 -906.058 -3.82277e-06 -3.82278e-06 0 0 0 83.1312 8.32364 48.5789 26.2287 -1 1 2 343 1.343 323.15 0 0 0.02512 -0.0145876 -0.0145876 0 0 0 -906.868 -3.81709e-06 -3.8171e-06 0 0 0 83.2763 8.31737 48.6858 26.2731 -1 1 2 344 1.344 323.15 0 0 0.02496 -0.0145094 -0.0145094 0 0 0 -907.679 -3.81141e-06 -3.81142e-06 0 0 0 83.4214 8.31117 48.7928 26.3175 -1 1 2 345 1.345 323.15 0 0 0.0248 -0.0144312 -0.0144312 0 0 0 -908.488 -3.80574e-06 -3.80574e-06 0 0 0 83.5667 8.30504 48.8998 26.3619 -1 1 2 346 1.346 323.15 0 0 0.02464 -0.014353 -0.014353 0 0 0 -909.297 -3.80006e-06 -3.80006e-06 0 0 0 83.7121 8.29897 49.0069 26.4063 -1 1 2 347 1.347 323.15 0 0 0.02448 -0.0142748 -0.0142748 0 0 0 -910.106 -3.79438e-06 -3.79438e-06 0 0 0 83.8577 8.29298 49.114 26.4507 -1 1 2 348 1.348 323.15 0 0 0.02432 -0.0141966 -0.0141966 0 0 0 -910.915 -3.7887e-06 -3.7887e-06 0 0 0 84.0034 8.28706 49.2212 26.4951 -1 1 2 349 1.349 323.15 0 0 0.02416 -0.0141184 -0.0141184 0 0 0 -911.723 -3.78302e-06 -3.78303e-06 0 0 0 84.1492 8.2812 49.3285 26.5395 -1 1 2 350 1.35 323.15 0 0 0.024 -0.0140402 -0.0140402 0 0 0 -912.53 -3.77734e-06 -3.77735e-06 0 0 0 84.2951 8.27542 49.4358 26.5839 -1 1 2 351 1.351 323.15 0 0 0.02384 -0.013962 -0.013962 0 0 0 -913.338 -3.77166e-06 -3.77167e-06 0 0 0 84.4412 8.2697 49.5431 26.6284 -1 1 2 352 1.352 323.15 0 0 0.02368 -0.0138838 -0.0138838 0 0 0 -914.144 -3.76599e-06 -3.76599e-06 0 0 0 84.5874 8.26405 49.6506 26.6728 -1 1 2 353 1.353 323.15 0 0 0.02352 -0.0138056 -0.0138056 0 0 0 -914.951 -3.76031e-06 -3.76031e-06 0 0 0 84.7337 8.25848 49.7581 26.7172 -1 1 2 354 1.354 323.15 0 0 0.02336 -0.0137274 -0.0137274 0 0 0 -915.757 -3.75463e-06 -3.75463e-06 0 0 0 84.8802 8.25297 49.8656 26.7616 -1 1 2 355 1.355 323.15 0 0 0.0232 -0.0136492 -0.0136492 0 0 0 -916.563 -3.74895e-06 -3.74895e-06 0 0 0 85.0268 8.24753 49.9732 26.806 -1 1 2 356 1.356 323.15 0 0 0.02304 -0.013571 -0.013571 0 0 0 -917.368 -3.74327e-06 -3.74328e-06 0 0 0 85.1735 8.24216 50.0809 26.8505 -1 1 2 357 1.357 323.15 0 0 0.02288 -0.0134928 -0.0134928 0 0 0 -918.173 -3.73759e-06 -3.7376e-06 0 0 0 85.3203 8.23686 50.1886 26.8949 -1 1 2 358 1.358 323.15 0 0 0.02272 -0.0134146 -0.0134146 0 0 0 -918.977 -3.73191e-06 -3.73192e-06 0 0 0 85.4673 8.23164 50.2964 26.9393 -1 1 2 359 1.359 323.15 0 0 0.02256 -0.0133364 -0.0133364 0 0 0 -919.781 -3.72624e-06 -3.72624e-06 0 0 0 85.6144 8.22648 50.4042 26.9837 -1 1 2 360 1.36 323.15 0 0 0.0224 -0.0132582 -0.0132582 0 0 0 -920.585 -3.72056e-06 -3.72056e-06 0 0 0 85.7616 8.22139 50.5121 27.0282 -1 1 2 361 1.361 323.15 0 0 0.02224 -0.01318 -0.01318 0 0 0 -921.389 -3.71488e-06 -3.71488e-06 0 0 0 85.909 8.21636 50.62 27.0726 -1 1 2 362 1.362 323.15 0 0 0.02208 -0.0131018 -0.0131018 0 0 0 -922.192 -3.7092e-06 -3.7092e-06 0 0 0 86.0565 8.21141 50.728 27.117 -1 1 2 363 1.363 323.15 0 0 0.02192 -0.0130236 -0.0130236 0 0 0 -922.994 -3.70352e-06 -3.70353e-06 0 0 0 86.2041 8.20653 50.8361 27.1615 -1 1 2 364 1.364 323.15 0 0 0.02176 -0.0129454 -0.0129454 0 0 0 -923.796 -3.69784e-06 -3.69785e-06 0 0 0 86.3518 8.20172 50.9442 27.2059 -1 1 2 365 1.365 323.15 0 0 0.0216 -0.0128672 -0.0128672 0 0 0 -924.598 -3.69217e-06 -3.69217e-06 0 0 0 86.4997 8.19698 51.0524 27.2503 -1 1 2 366 1.366 323.15 0 0 0.02144 -0.012789 -0.012789 0 0 0 -925.4 -3.68649e-06 -3.68649e-06 0 0 0 86.6477 8.1923 51.1606 27.2948 -1 1 2 367 1.367 323.15 0 0 0.02128 -0.0127108 -0.0127108 0 0 0 -926.201 -3.68081e-06 -3.68081e-06 0 0 0 86.7958 8.1877 51.2689 27.3392 -1 1 2 368 1.368 323.15 0 0 0.02112 -0.0126326 -0.0126326 0 0 0 -927.002 -3.67513e-06 -3.67513e-06 0 0 0 86.9441 8.18317 51.3773 27.3837 -1 1 2 369 1.369 323.15 0 0 0.02096 -0.0125544 -0.0125544 0 0 0 -927.802 -3.66945e-06 -3.66945e-06 0 0 0 87.0925 8.1787 51.4857 27.4281 -1 1 2 370 1.37 323.15 0 0 0.0208 -0.0124761 -0.0124761 0 0 0 -928.602 -3.66377e-06 -3.66377e-06 0 0 0 87.241 8.17431 51.5941 27.4726 -1 1 2 371 1.371 323.15 0 0 0.02064 -0.0123979 -0.0123979 0 0 0 -929.401 -3.65809e-06 -3.6581e-06 0 0 0 87.3896 8.16998 51.7026 27.517 -1 1 2 372 1.372 323.15 0 0 0.02048 -0.0123197 -0.0123197 0 0 0 -930.201 -3.65241e-06 -3.65242e-06 0 0 0 87.5384 8.16573 51.8112 27.5615 -1 1 2 373 1.373 323.15 0 0 0.02032 -0.0122415 -0.0122415 0 0 0 -931 -3.64674e-06 -3.64674e-06 0 0 0 87.6873 8.16154 51.9198 27.6059 -1 1 2 374 1.374 323.15 0 0 0.02016 -0.0121633 -0.0121633 0 0 0 -931.798 -3.64106e-06 -3.64106e-06 0 0 0 87.8363 8.15743 52.0285 27.6504 -1 1 2 375 1.375 323.15 0 0 0.02 -0.0120851 -0.0120851 0 0 0 -932.596 -3.63538e-06 -3.63538e-06 0 0 0 87.9855 8.15338 52.1373 27.6948 -1 1 2 376 1.376 323.15 0 0 0.01984 -0.0120069 -0.0120069 0 0 0 -933.394 -3.6297e-06 -3.6297e-06 0 0 0 88.1347 8.1494 52.2461 27.7393 -1 1 2 377 1.377 323.15 0 0 0.01968 -0.0119286 -0.0119286 0 0 0 -934.191 -3.62402e-06 -3.62402e-06 0 0 0 88.2841 8.1455 52.3549 27.7837 -1 1 2 378 1.378 323.15 0 0 0.01952 -0.0118504 -0.0118504 0 0 0 -934.988 -3.61834e-06 -3.61835e-06 0 0 0 88.4337 8.14166 52.4638 27.8282 -1 1 2 379 1.379 323.15 0 0 0.01936 -0.0117722 -0.0117722 0 0 0 -935.785 -3.61266e-06 -3.61267e-06 0 0 0 88.5833 8.13789 52.5728 27.8726 -1 1 2 380 1.38 323.15 0 0 0.0192 -0.011694 -0.011694 0 0 0 -936.581 -3.60698e-06 -3.60699e-06 0 0 0 88.7331 8.13419 52.6818 27.9171 -1 1 2 381 1.381 323.15 0 0 0.01904 -0.0116158 -0.0116158 0 0 0 -937.377 -3.60131e-06 -3.60131e-06 0 0 0 88.8831 8.13057 52.7909 27.9616 -1 1 2 382 1.382 323.15 0 0 0.01888 -0.0115375 -0.0115375 0 0 0 -938.173 -3.59563e-06 -3.59563e-06 0 0 0 89.0331 8.12701 52.9 28.006 -1 1 2 383 1.383 323.15 0 0 0.01872 -0.0114593 -0.0114593 0 0 0 -938.968 -3.58995e-06 -3.58995e-06 0 0 0 89.1833 8.12352 53.0092 28.0505 -1 1 2 384 1.384 323.15 0 0 0.01856 -0.0113811 -0.0113811 0 0 0 -939.763 -3.58427e-06 -3.58427e-06 0 0 0 89.3336 8.1201 53.1185 28.095 -1 1 2 385 1.385 323.15 0 0 0.0184 -0.0113029 -0.0113029 0 0 0 -940.557 -3.57859e-06 -3.5786e-06 0 0 0 89.484 8.11675 53.2278 28.1395 -1 1 2 386 1.386 323.15 0 0 0.01824 -0.0112247 -0.0112247 0 0 0 -941.351 -3.57291e-06 -3.57292e-06 0 0 0 89.6345 8.11347 53.3371 28.1839 -1 1 2 387 1.387 323.15 0 0 0.01808 -0.0111464 -0.0111464 0 0 0 -942.145 -3.56723e-06 -3.56724e-06 0 0 0 89.7852 8.11026 53.4466 28.2284 -1 1 2 388 1.388 323.15 0 0 0.01792 -0.0110682 -0.0110682 0 0 0 -942.939 -3.56156e-06 -3.56156e-06 0 0 0 89.936 8.10712 53.556 28.2729 -1 1 2 389 1.389 323.15 0 0 0.01776 -0.01099 -0.01099 0 0 0 -943.732 -3.55588e-06 -3.55588e-06 0 0 0 90.087 8.10405 53.6656 28.3174 -1 1 2 390 1.39 323.15 0 0 0.0176 -0.0109117 -0.0109117 0 0 0 -944.524 -3.5502e-06 -3.5502e-06 0 0 0 90.238 8.10105 53.7751 28.3618 -1 1 2 391 1.391 323.15 0 0 0.01744 -0.0108335 -0.0108335 0 0 0 -945.317 -3.54452e-06 -3.54452e-06 0 0 0 90.3892 8.09812 53.8848 28.4063 -1 1 2 392 1.392 323.15 0 0 0.01728 -0.0107553 -0.0107553 0 0 0 -946.109 -3.53884e-06 -3.53885e-06 0 0 0 90.5405 8.09526 53.9945 28.4508 -1 1 2 393 1.393 323.15 0 0 0.01712 -0.0106771 -0.0106771 0 0 0 -946.9 -3.53316e-06 -3.53317e-06 0 0 0 90.692 8.09247 54.1042 28.4953 -1 1 2 394 1.394 323.15 0 0 0.01696 -0.0105988 -0.0105988 0 0 0 -947.692 -3.52748e-06 -3.52749e-06 0 0 0 90.8435 8.08975 54.214 28.5398 -1 1 2 395 1.395 323.15 0 0 0.0168 -0.0105206 -0.0105206 0 0 0 -948.483 -3.52181e-06 -3.52181e-06 0 0 0 90.9952 8.0871 54.3239 28.5842 -1 1 2 396 1.396 323.15 0 0 0.01664 -0.0104424 -0.0104424 0 0 0 -949.273 -3.51613e-06 -3.51613e-06 0 0 0 91.147 8.08452 54.4338 28.6287 -1 1 2 397 1.397 323.15 0 0 0.01648 -0.0103641 -0.0103641 0 0 0 -950.063 -3.51045e-06 -3.51045e-06 0 0 0 91.299 8.082 54.5438 28.6732 -1 1 2 398 1.398 323.15 0 0 0.01632 -0.0102859 -0.0102859 0 0 0 -950.853 -3.50477e-06 -3.50478e-06 0 0 0 91.4511 8.07956 54.6538 28.7177 -1 1 2 399 1.399 323.15 0 0 0.01616 -0.0102077 -0.0102077 0 0 0 -951.643 -3.49909e-06 -3.4991e-06 0 0 0 91.6033 8.07719 54.7639 28.7622 -1 1 2 400 1.4 323.15 0 0 0.016 -0.0101294 -0.0101294 0 0 0 -952.432 -3.49341e-06 -3.49342e-06 0 0 0 91.7556 8.07489 54.874 28.8067 -1 1 2 401 1.401 323.15 0 0 0.01584 -0.0100512 -0.0100512 0 0 0 -953.221 -3.48774e-06 -3.48774e-06 0 0 0 91.908 8.07266 54.9842 28.8512 -1 1 2 402 1.402 323.15 0 0 0.01568 -0.00997295 -0.00997295 0 0 0 -954.01 -3.48206e-06 -3.48206e-06 0 0 0 92.0606 8.0705 55.0944 28.8957 -1 1 2 403 1.403 323.15 0 0 0.01552 -0.00989472 -0.00989472 0 0 0 -954.798 -3.47638e-06 -3.47638e-06 0 0 0 92.2133 8.0684 55.2047 28.9402 -1 1 2 404 1.404 323.15 0 0 0.01536 -0.00981648 -0.00981648 0 0 0 -955.586 -3.4707e-06 -3.4707e-06 0 0 0 92.3662 8.06638 55.3151 28.9847 -1 1 2 405 1.405 323.15 0 0 0.0152 -0.00973824 -0.00973824 0 0 0 -956.373 -3.46502e-06 -3.46503e-06 0 0 0 92.5191 8.06443 55.4255 29.0292 -1 1 2 406 1.406 323.15 0 0 0.01504 -0.00966 -0.00966 0 0 0 -957.16 -3.45934e-06 -3.45935e-06 0 0 0 92.6722 8.06255 55.536 29.0737 -1 1 2 407 1.407 323.15 0 0 0.01488 -0.00958176 -0.00958176 0 0 0 -957.947 -3.45366e-06 -3.45367e-06 0 0 0 92.8254 8.06073 55.6465 29.1182 -1 1 2 408 1.408 323.15 0 0 0.01472 -0.00950352 -0.00950352 0 0 0 -958.733 -3.44798e-06 -3.44799e-06 0 0 0 92.9787 8.05899 55.757 29.1627 -1 1 2 409 1.409 323.15 0 0 0.01456 -0.00942527 -0.00942527 0 0 0 -959.52 -3.44231e-06 -3.44231e-06 0 0 0 93.1322 8.05732 55.8677 29.2072 -1 1 2 410 1.41 323.15 0 0 0.0144 -0.00934703 -0.00934703 0 0 0 -960.305 -3.43663e-06 -3.43663e-06 0 0 0 93.2858 8.05572 55.9783 29.2517 -1 1 2 411 1.411 323.15 0 0 0.01424 -0.00926879 -0.00926879 0 0 0 -961.091 -3.43095e-06 -3.43095e-06 0 0 0 93.4395 8.05418 56.0891 29.2962 -1 1 2 412 1.412 323.15 0 0 0.01408 -0.00919054 -0.00919054 0 0 0 -961.876 -3.42527e-06 -3.42527e-06 0 0 0 93.5933 8.05272 56.1999 29.3408 -1 1 2 413 1.413 323.15 0 0 0.01392 -0.0091123 -0.0091123 0 0 0 -962.661 -3.41959e-06 -3.4196e-06 0 0 0 93.7473 8.05133 56.3107 29.3853 -1 1 2 414 1.414 323.15 0 0 0.01376 -0.00903405 -0.00903405 0 0 0 -963.445 -3.41391e-06 -3.41392e-06 0 0 0 93.9014 8.05001 56.4216 29.4298 -1 1 2 415 1.415 323.15 0 0 0.0136 -0.0089558 -0.0089558 0 0 0 -964.229 -3.40823e-06 -3.40824e-06 0 0 0 94.0556 8.04875 56.5325 29.4743 -1 1 2 416 1.416 323.15 0 0 0.01344 -0.00887756 -0.00887756 0 0 0 -965.013 -3.40256e-06 -3.40256e-06 0 0 0 94.2099 8.04757 56.6436 29.5188 -1 1 2 417 1.417 323.15 0 0 0.01328 -0.00879931 -0.00879931 0 0 0 -965.797 -3.39688e-06 -3.39688e-06 0 0 0 94.3644 8.04646 56.7546 29.5633 -1 1 2 418 1.418 323.15 0 0 0.01312 -0.00872106 -0.00872106 0 0 0 -966.58 -3.3912e-06 -3.3912e-06 0 0 0 94.519 8.04542 56.8657 29.6079 -1 1 2 419 1.419 323.15 0 0 0.01296 -0.00864281 -0.00864281 0 0 0 -967.363 -3.38552e-06 -3.38552e-06 0 0 0 94.6737 8.04444 56.9769 29.6524 -1 1 2 420 1.42 323.15 0 0 0.0128 -0.00856456 -0.00856456 0 0 0 -968.145 -3.37984e-06 -3.37985e-06 0 0 0 94.8286 8.04354 57.0881 29.6969 -1 1 2 421 1.421 323.15 0 0 0.01264 -0.00848631 -0.00848631 0 0 0 -968.927 -3.37416e-06 -3.37417e-06 0 0 0 94.9835 8.04271 57.1994 29.7414 -1 1 2 422 1.422 323.15 0 0 0.01248 -0.00840805 -0.00840805 0 0 0 -969.709 -3.36849e-06 -3.36849e-06 0 0 0 95.1386 8.04195 57.3107 29.786 -1 1 2 423 1.423 323.15 0 0 0.01232 -0.0083298 -0.0083298 0 0 0 -970.491 -3.36281e-06 -3.36281e-06 0 0 0 95.2938 8.04125 57.4221 29.8305 -1 1 2 424 1.424 323.15 0 0 0.01216 -0.00825155 -0.00825155 0 0 0 -971.272 -3.35713e-06 -3.35713e-06 0 0 0 95.4492 8.04063 57.5335 29.875 -1 1 2 425 1.425 323.15 0 0 0.012 -0.00817329 -0.00817329 0 0 0 -972.053 -3.35145e-06 -3.35145e-06 0 0 0 95.6046 8.04008 57.645 29.9196 -1 1 2 426 1.426 323.15 0 0 0.01184 -0.00809504 -0.00809504 0 0 0 -972.833 -3.34577e-06 -3.34578e-06 0 0 0 95.7602 8.0396 57.7565 29.9641 -1 1 2 427 1.427 323.15 0 0 0.01168 -0.00801678 -0.00801678 0 0 0 -973.613 -3.34009e-06 -3.3401e-06 0 0 0 95.9159 8.03918 57.8681 30.0086 -1 1 2 428 1.428 323.15 0 0 0.01152 -0.00793853 -0.00793853 0 0 0 -974.393 -3.33441e-06 -3.33442e-06 0 0 0 96.0718 8.03884 57.9798 30.0532 -1 1 2 429 1.429 323.15 0 0 0.01136 -0.00786027 -0.00786027 0 0 0 -975.173 -3.32874e-06 -3.32874e-06 0 0 0 96.2277 8.03857 58.0915 30.0977 -1 1 2 430 1.43 323.15 0 0 0.0112 -0.00778201 -0.00778201 0 0 0 -975.952 -3.32306e-06 -3.32306e-06 0 0 0 96.3838 8.03837 58.2032 30.1422 -1 1 2 431 1.431 323.15 0 0 0.01104 -0.00770375 -0.00770375 0 0 0 -976.731 -3.31738e-06 -3.31738e-06 0 0 0 96.54 8.03824 58.315 30.1868 -1 1 2 432 1.432 323.15 0 0 0.01088 -0.00762549 -0.00762549 0 0 0 -977.509 -3.3117e-06 -3.3117e-06 0 0 0 96.6964 8.03818 58.4269 30.2313 -1 1 2 433 1.433 323.15 0 0 0.01072 -0.00754723 -0.00754723 0 0 0 -978.288 -3.30602e-06 -3.30603e-06 0 0 0 96.8529 8.03818 58.5388 30.2759 -1 1 2 434 1.434 323.15 0 0 0.01056 -0.00746897 -0.00746897 0 0 0 -979.066 -3.30034e-06 -3.30035e-06 0 0 0 97.0094 8.03826 58.6508 30.3204 -1 1 2 435 1.435 323.15 0 0 0.0104 -0.00739071 -0.00739071 0 0 0 -979.843 -3.29466e-06 -3.29467e-06 0 0 0 97.1662 8.03841 58.7628 30.3649 -1 1 2 436 1.436 323.15 0 0 0.01024 -0.00731245 -0.00731245 0 0 0 -980.621 -3.28899e-06 -3.28899e-06 0 0 0 97.323 8.03863 58.8749 30.4095 -1 1 2 437 1.437 323.15 0 0 0.01008 -0.00723419 -0.00723419 0 0 0 -981.398 -3.28331e-06 -3.28331e-06 0 0 0 97.48 8.03892 58.987 30.454 -1 1 2 438 1.438 323.15 0 0 0.00992 -0.00715592 -0.00715592 0 0 0 -982.174 -3.27763e-06 -3.27763e-06 0 0 0 97.637 8.03928 59.0992 30.4986 -1 1 2 439 1.439 323.15 0 0 0.00976 -0.00707766 -0.00707766 0 0 0 -982.951 -3.27195e-06 -3.27195e-06 0 0 0 97.7942 8.03971 59.2114 30.5431 -1 1 2 440 1.44 323.15 0 0 0.0096 -0.00699939 -0.00699939 0 0 0 -983.727 -3.26627e-06 -3.26628e-06 0 0 0 97.9516 8.04021 59.3237 30.5877 -1 1 2 441 1.441 323.15 0 0 0.00944 -0.00692113 -0.00692113 0 0 0 -984.502 -3.26059e-06 -3.2606e-06 0 0 0 98.109 8.04078 59.436 30.6322 -1 1 2 442 1.442 323.15 0 0 0.00928 -0.00684286 -0.00684286 0 0 0 -985.278 -3.25491e-06 -3.25492e-06 0 0 0 98.2666 8.04142 59.5484 30.6768 -1 1 2 443 1.443 323.15 0 0 0.00912 -0.0067646 -0.0067646 0 0 0 -986.053 -3.24924e-06 -3.24924e-06 0 0 0 98.4243 8.04213 59.6608 30.7214 -1 1 2 444 1.444 323.15 0 0 0.00896 -0.00668633 -0.00668633 0 0 0 -986.828 -3.24356e-06 -3.24356e-06 0 0 0 98.5822 8.04291 59.7733 30.7659 -1 1 2 445 1.445 323.15 0 0 0.0088 -0.00660806 -0.00660806 0 0 0 -987.602 -3.23788e-06 -3.23788e-06 0 0 0 98.7401 8.04376 59.8859 30.8105 -1 1 2 446 1.446 323.15 0 0 0.00864 -0.00652979 -0.00652979 0 0 0 -988.377 -3.2322e-06 -3.2322e-06 0 0 0 98.8982 8.04468 59.9985 30.855 -1 1 2 447 1.447 323.15 0 0 0.00848 -0.00645152 -0.00645152 0 0 0 -989.15 -3.22652e-06 -3.22653e-06 0 0 0 99.0564 8.04567 60.1111 30.8996 -1 1 2 448 1.448 323.15 0 0 0.00832 -0.00637325 -0.00637325 0 0 0 -989.924 -3.22084e-06 -3.22085e-06 0 0 0 99.2147 8.04674 60.2238 30.9442 -1 1 2 449 1.449 323.15 0 0 0.00816 -0.00629498 -0.00629498 0 0 0 -990.697 -3.21516e-06 -3.21517e-06 0 0 0 99.3732 8.04787 60.3366 30.9887 -1 1 2 450 1.45 323.15 0 0 0.008 -0.00621671 -0.00621671 0 0 0 -991.47 -3.20949e-06 -3.20949e-06 0 0 0 99.5317 8.04907 60.4494 31.0333 -1 1 2 451 1.451 323.15 0 0 0.00784 -0.00613844 -0.00613844 0 0 0 -992.243 -3.20381e-06 -3.20381e-06 0 0 0 99.6904 8.05034 60.5622 31.0779 -1 1 2 452 1.452 323.15 0 0 0.00768 -0.00606016 -0.00606016 0 0 0 -993.015 -3.19813e-06 -3.19813e-06 0 0 0 99.8493 8.05168 60.6751 31.1224 -1 1 2 453 1.453 323.15 0 0 0.00752 -0.00598189 -0.00598189 0 0 0 -993.787 -3.19245e-06 -3.19245e-06 0 0 0 100.008 8.0531 60.7881 31.167 -1 1 2 454 1.454 323.15 0 0 0.00736 -0.00590361 -0.00590361 0 0 0 -994.559 -3.18677e-06 -3.18678e-06 0 0 0 100.167 8.05458 60.9011 31.2116 -1 1 2 455 1.455 323.15 0 0 0.0072 -0.00582534 -0.00582534 0 0 0 -995.331 -3.18109e-06 -3.1811e-06 0 0 0 100.326 8.05613 61.0142 31.2562 -1 1 2 456 1.456 323.15 0 0 0.00704 -0.00574706 -0.00574706 0 0 0 -996.102 -3.17541e-06 -3.17542e-06 0 0 0 100.486 8.05776 61.1273 31.3007 -1 1 2 457 1.457 323.15 0 0 0.00688 -0.00566879 -0.00566879 0 0 0 -996.873 -3.16974e-06 -3.16974e-06 0 0 0 100.645 8.05945 61.2405 31.3453 -1 1 2 458 1.458 323.15 0 0 0.00672 -0.00559051 -0.00559051 0 0 0 -997.643 -3.16406e-06 -3.16406e-06 0 0 0 100.805 8.06122 61.3537 31.3899 -1 1 2 459 1.459 323.15 0 0 0.00656 -0.00551223 -0.00551223 0 0 0 -998.413 -3.15838e-06 -3.15838e-06 0 0 0 100.964 8.06305 61.467 31.4345 -1 1 2 460 1.46 323.15 0 0 0.0064 -0.00543395 -0.00543395 0 0 0 -999.183 -3.1527e-06 -3.15271e-06 0 0 0 101.124 8.06496 61.5803 31.479 -1 1 2 461 1.461 323.15 0 0 0.00624 -0.00535567 -0.00535567 0 0 0 -999.953 -3.14702e-06 -3.14703e-06 0 0 0 101.284 8.06693 61.6937 31.5236 -1 1 2 462 1.462 323.15 0 0 0.00608 -0.00527739 -0.00527739 0 0 0 -1000.72 -3.14134e-06 -3.14135e-06 0 0 0 101.444 8.06898 61.8071 31.5682 -1 1 2 463 1.463 323.15 0 0 0.00592 -0.00519911 -0.00519911 0 0 0 -1001.49 -3.13566e-06 -3.13567e-06 0 0 0 101.604 8.07109 61.9206 31.6128 -1 1 2 464 1.464 323.15 0 0 0.00576 -0.00512083 -0.00512083 0 0 0 -1002.26 -3.12999e-06 -3.12999e-06 0 0 0 101.765 8.07328 62.0341 31.6574 -1 1 2 465 1.465 323.15 0 0 0.0056 -0.00504255 -0.00504255 0 0 0 -1003.03 -3.12431e-06 -3.12431e-06 0 0 0 101.925 8.07553 62.1477 31.702 -1 1 2 466 1.466 323.15 0 0 0.00544 -0.00496427 -0.00496427 0 0 0 -1003.8 -3.11863e-06 -3.11863e-06 0 0 0 102.086 8.07786 62.2613 31.7465 -1 1 2 467 1.467 323.15 0 0 0.00528 -0.00488598 -0.00488598 0 0 0 -1004.56 -3.11295e-06 -3.11296e-06 0 0 0 102.246 8.08026 62.375 31.7911 -1 1 2 468 1.468 323.15 0 0 0.00512 -0.0048077 -0.0048077 0 0 0 -1005.33 -3.10727e-06 -3.10728e-06 0 0 0 102.407 8.08273 62.4887 31.8357 -1 1 2 469 1.469 323.15 0 0 0.00496 -0.00472942 -0.00472942 0 0 0 -1006.1 -3.10159e-06 -3.1016e-06 0 0 0 102.568 8.08527 62.6025 31.8803 -1 1 2 470 1.47 323.15 0 0 0.0048 -0.00465113 -0.00465113 0 0 0 -1006.87 -3.09591e-06 -3.09592e-06 0 0 0 102.729 8.08787 62.7163 31.9249 -1 1 2 471 1.471 323.15 0 0 0.00464 -0.00457284 -0.00457284 0 0 0 -1007.63 -3.09024e-06 -3.09024e-06 0 0 0 102.89 8.09055 62.8302 31.9695 -1 1 2 472 1.472 323.15 0 0 0.00448 -0.00449456 -0.00449456 0 0 0 -1008.4 -3.08456e-06 -3.08456e-06 0 0 0 103.052 8.0933 62.9442 32.0141 -1 1 2 473 1.473 323.15 0 0 0.00432 -0.00441627 -0.00441627 0 0 0 -1009.17 -3.07888e-06 -3.07888e-06 0 0 0 103.213 8.09612 63.0581 32.0587 -1 1 2 474 1.474 323.15 0 0 0.00416 -0.00433798 -0.00433798 0 0 0 -1009.93 -3.0732e-06 -3.07321e-06 0 0 0 103.374 8.09901 63.1722 32.1033 -1 1 2 475 1.475 323.15 0 0 0.004 -0.00425969 -0.00425969 0 0 0 -1010.7 -3.06752e-06 -3.06753e-06 0 0 0 103.536 8.10197 63.2863 32.1479 -1 1 2 476 1.476 323.15 0 0 0.00384 -0.00418141 -0.00418141 0 0 0 -1011.46 -3.06184e-06 -3.06185e-06 0 0 0 103.698 8.105 63.4004 32.1925 -1 1 2 477 1.477 323.15 0 0 0.00368 -0.00410312 -0.00410312 0 0 0 -1012.23 -3.05616e-06 -3.05617e-06 0 0 0 103.86 8.10811 63.5146 32.2371 -1 1 2 478 1.478 323.15 0 0 0.00352 -0.00402483 -0.00402483 0 0 0 -1012.99 -3.05049e-06 -3.05049e-06 0 0 0 104.022 8.11128 63.6288 32.2817 -1 1 2 479 1.479 323.15 0 0 0.00336 -0.00394653 -0.00394653 0 0 0 -1013.76 -3.04481e-06 -3.04481e-06 0 0 0 104.184 8.11452 63.7431 32.3263 -1 1 2 480 1.48 323.15 0 0 0.0032 -0.00386824 -0.00386824 0 0 0 -1014.52 -3.03913e-06 -3.03913e-06 0 0 0 104.346 8.11783 63.8575 32.3709 -1 1 2 481 1.481 323.15 0 0 0.00304 -0.00378995 -0.00378995 0 0 0 -1015.28 -3.03345e-06 -3.03346e-06 0 0 0 104.509 8.12122 63.9719 32.4155 -1 1 2 482 1.482 323.15 0 0 0.00288 -0.00371166 -0.00371166 0 0 0 -1016.05 -3.02777e-06 -3.02778e-06 0 0 0 104.671 8.12467 64.0863 32.4601 -1 1 2 483 1.483 323.15 0 0 0.00272 -0.00363336 -0.00363336 0 0 0 -1016.81 -3.02209e-06 -3.0221e-06 0 0 0 104.834 8.12819 64.2008 32.5047 -1 1 2 484 1.484 323.15 0 0 0.00256 -0.00355507 -0.00355507 0 0 0 -1017.57 -3.01641e-06 -3.01642e-06 0 0 0 104.996 8.13179 64.3154 32.5493 -1 1 2 485 1.485 323.15 0 0 0.0024 -0.00347678 -0.00347678 0 0 0 -1018.34 -3.01074e-06 -3.01074e-06 0 0 0 105.159 8.13545 64.43 32.594 -1 1 2 486 1.486 323.15 0 0 0.00224 -0.00339848 -0.00339848 0 0 0 -1019.1 -3.00506e-06 -3.00506e-06 0 0 0 105.322 8.13919 64.5446 32.6386 -1 1 2 487 1.487 323.15 0 0 0.00208 -0.00332018 -0.00332018 0 0 0 -1019.86 -2.99938e-06 -2.99938e-06 0 0 0 105.485 8.14299 64.6593 32.6832 -1 1 2 488 1.488 323.15 0 0 0.00192 -0.00324189 -0.00324189 0 0 0 -1020.62 -2.9937e-06 -2.99371e-06 0 0 0 105.649 8.14687 64.774 32.7278 -1 1 2 489 1.489 323.15 0 0 0.00176 -0.00316359 -0.00316359 0 0 0 -1021.38 -2.98802e-06 -2.98803e-06 0 0 0 105.812 8.15082 64.8888 32.7724 -1 1 2 490 1.49 323.15 0 0 0.0016 -0.00308529 -0.00308529 0 0 0 -1022.15 -2.98234e-06 -2.98235e-06 0 0 0 105.976 8.15484 65.0037 32.817 -1 1 2 491 1.491 323.15 0 0 0.00144 -0.00300699 -0.00300699 0 0 0 -1022.91 -2.97666e-06 -2.97667e-06 0 0 0 106.139 8.15892 65.1186 32.8617 -1 1 2 492 1.492 323.15 0 0 0.00128 -0.00292869 -0.00292869 0 0 0 -1023.67 -2.97099e-06 -2.97099e-06 0 0 0 106.303 8.16308 65.2335 32.9063 -1 1 2 493 1.493 323.15 0 0 0.00112 -0.00285039 -0.00285039 0 0 0 -1024.43 -2.96531e-06 -2.96531e-06 0 0 0 106.467 8.16731 65.3485 32.9509 -1 1 2 494 1.494 323.15 0 0 0.00096 -0.00277209 -0.00277209 0 0 0 -1025.19 -2.95963e-06 -2.95963e-06 0 0 0 106.631 8.17161 65.4636 32.9955 -1 1 2 495 1.495 323.15 0 0 0.0008 -0.00269379 -0.00269379 0 0 0 -1025.95 -2.95395e-06 -2.95396e-06 0 0 0 106.795 8.17598 65.5787 33.0401 -1 1 2 496 1.496 323.15 0 0 0.00064 -0.00261549 -0.00261549 0 0 0 -1026.71 -2.94827e-06 -2.94828e-06 0 0 0 106.959 8.18042 65.6938 33.0848 -1 1 2 497 1.497 323.15 0 0 0.00048 -0.00253719 -0.00253719 0 0 0 -1027.47 -2.94259e-06 -2.9426e-06 0 0 0 107.123 8.18493 65.809 33.1294 -1 1 2 498 1.498 323.15 0 0 0.00032 -0.00245889 -0.00245889 0 0 0 -1028.23 -2.93691e-06 -2.93692e-06 0 0 0 107.288 8.18952 65.9243 33.174 -1 1 2 499 1.499 323.15 0 0 0.00016 -0.00238058 -0.00238058 0 0 0 -1028.99 -2.93124e-06 -2.93124e-06 0 0 0 107.452 8.19417 66.0396 33.2187 -1 1 2 500 1.5 323.15 0 0 -8.22693e-16 -0.00230228 -0.00230228 0 0 0 -1029.74 -2.92556e-06 -2.92556e-06 0 0 0 107.617 8.19889 66.1549 33.2633 -1 1 2 501 1.501 323.15 0 0 -0.00016 -0.00222397 -0.00222397 0 0 0 -1030.5 -2.91988e-06 -2.91988e-06 0 0 0 107.782 8.20368 66.2703 33.3079 -1 1 2 502 1.502 323.15 0 0 -0.00032 -0.00214567 -0.00214567 0 0 0 -1031.26 -2.9142e-06 -2.91421e-06 0 0 0 107.947 8.20855 66.3857 33.3526 -1 1 2 503 1.503 323.15 0 0 -0.00048 -0.00206736 -0.00206736 0 0 0 -1032.02 -2.90852e-06 -2.90853e-06 0 0 0 108.112 8.21348 66.5012 33.3972 -1 1 2 504 1.504 323.15 0 0 -0.00064 -0.00198906 -0.00198906 0 0 0 -1032.78 -2.90284e-06 -2.90285e-06 0 0 0 108.277 8.21849 66.6168 33.4418 -1 1 2 505 1.505 323.15 0 0 -0.0008 -0.00191075 -0.00191075 0 0 0 -1033.53 -2.89716e-06 -2.89717e-06 0 0 0 108.442 8.22357 66.7324 33.4865 -1 1 2 506 1.506 323.15 0 0 -0.00096 -0.00183244 -0.00183244 0 0 0 -1034.29 -2.89149e-06 -2.89149e-06 0 0 0 108.608 8.22871 66.848 33.5311 -1 1 2 507 1.507 323.15 0 0 -0.00112 -0.00175413 -0.00175413 0 0 0 -1035.05 -2.88581e-06 -2.88581e-06 0 0 0 108.773 8.23393 66.9637 33.5757 -1 1 2 508 1.508 323.15 0 0 -0.00128 -0.00167582 -0.00167582 0 0 0 -1035.8 -2.88013e-06 -2.88013e-06 0 0 0 108.939 8.23922 67.0794 33.6204 -1 1 2 509 1.509 323.15 0 0 -0.00144 -0.00159751 -0.00159751 0 0 0 -1036.56 -2.87445e-06 -2.87446e-06 0 0 0 109.105 8.24457 67.1952 33.665 -1 1 2 510 1.51 323.15 0 0 -0.0016 -0.0015192 -0.0015192 0 0 0 -1037.31 -2.86877e-06 -2.86878e-06 0 0 0 109.271 8.25 67.3111 33.7097 -1 1 2 511 1.511 323.15 0 0 -0.00176 -0.00144089 -0.00144089 0 0 0 -1038.07 -2.86309e-06 -2.8631e-06 0 0 0 109.437 8.2555 67.427 33.7543 -1 1 2 512 1.512 323.15 0 0 -0.00192 -0.00136258 -0.00136258 0 0 0 -1038.83 -2.85741e-06 -2.85742e-06 0 0 0 109.603 8.26107 67.5429 33.799 -1 1 2 513 1.513 323.15 0 0 -0.00208 -0.00128427 -0.00128427 0 0 0 -1039.58 -2.85174e-06 -2.85174e-06 0 0 0 109.769 8.26671 67.6589 33.8436 -1 1 2 514 1.514 323.15 0 0 -0.00224 -0.00120596 -0.00120596 0 0 0 -1040.33 -2.84606e-06 -2.84606e-06 0 0 0 109.936 8.27243 67.7749 33.8882 -1 1 2 515 1.515 323.15 0 0 -0.0024 -0.00112765 -0.00112765 0 0 0 -1041.09 -2.84038e-06 -2.84038e-06 0 0 0 110.102 8.27821 67.891 33.9329 -1 1 2 516 1.516 323.15 0 0 -0.00256 -0.00104933 -0.00104933 0 0 0 -1041.84 -2.8347e-06 -2.83471e-06 0 0 0 110.269 8.28406 68.0071 33.9775 -1 1 2 517 1.517 323.15 0 0 -0.00272 -0.000971017 -0.000971017 0 0 0 -1042.6 -2.82902e-06 -2.82903e-06 0 0 0 110.435 8.28999 68.1233 34.0222 -1 1 2 518 1.518 323.15 0 0 -0.00288 -0.000892702 -0.000892702 0 0 0 -1043.35 -2.82334e-06 -2.82335e-06 0 0 0 110.602 8.29598 68.2395 34.0668 -1 1 2 519 1.519 323.15 0 0 -0.00304 -0.000814387 -0.000814387 0 0 0 -1044.1 -2.81766e-06 -2.81767e-06 0 0 0 110.769 8.30204 68.3558 34.1115 -1 1 2 520 1.52 323.15 0 0 -0.0032 -0.000736071 -0.000736071 0 0 0 -1044.86 -2.81199e-06 -2.81199e-06 0 0 0 110.936 8.30818 68.4721 34.1562 -1 1 2 521 1.521 323.15 0 0 -0.00336 -0.000657754 -0.000657754 0 0 0 -1045.61 -2.80631e-06 -2.80631e-06 0 0 0 111.104 8.31439 68.5885 34.2008 -1 1 2 522 1.522 323.15 0 0 -0.00352 -0.000579437 -0.000579437 0 0 0 -1046.36 -2.80063e-06 -2.80063e-06 0 0 0 111.271 8.32066 68.7049 34.2455 -1 1 2 523 1.523 323.15 0 0 -0.00368 -0.000501119 -0.000501119 0 0 0 -1047.12 -2.79495e-06 -2.79496e-06 0 0 0 111.439 8.32701 68.8214 34.2901 -1 1 2 524 1.524 323.15 0 0 -0.00384 -0.000422801 -0.000422801 0 0 0 -1047.87 -2.78927e-06 -2.78928e-06 0 0 0 111.606 8.33343 68.9379 34.3348 -1 1 2 525 1.525 323.15 0 0 -0.004 -0.000344482 -0.000344482 0 0 0 -1048.62 -2.78359e-06 -2.7836e-06 0 0 0 111.774 8.33992 69.0545 34.3794 -1 1 2 526 1.526 323.15 0 0 -0.00416 -0.000266163 -0.000266163 0 0 0 -1049.37 -2.77791e-06 -2.77792e-06 0 0 0 111.942 8.34648 69.1711 34.4241 -1 1 2 527 1.527 323.15 0 0 -0.00432 -0.000187843 -0.000187843 0 0 0 -1050.12 -2.77224e-06 -2.77224e-06 0 0 0 112.11 8.35311 69.2878 34.4688 -1 1 2 528 1.528 323.15 0 0 -0.00448 -0.000109522 -0.000109522 0 0 0 -1050.87 -2.76656e-06 -2.76656e-06 0 0 0 112.278 8.35981 69.4045 34.5134 -1 1 2 529 1.529 323.15 0 0 -0.00464 -3.12007e-05 -3.12007e-05 0 0 0 -1051.63 -2.76088e-06 -2.76088e-06 0 0 0 112.446 8.36658 69.5213 34.5581 -1 1 2 530 1.53 323.15 0 0 -0.0048 4.71211e-05 4.71211e-05 0 0 0 -1052.38 -2.7552e-06 -2.75521e-06 0 0 0 112.614 8.37342 69.6381 34.6028 -1 1 2 531 1.531 323.15 0 0 -0.00496 0.000125443 0.000125443 0 0 0 -1053.13 -2.74952e-06 -2.74953e-06 0 0 0 112.783 8.38034 69.7549 34.6474 -1 1 2 532 1.532 323.15 0 0 -0.00512 0.000203766 0.000203766 0 0 0 -1053.88 -2.74384e-06 -2.74385e-06 0 0 0 112.951 8.38732 69.8718 34.6921 -1 1 2 533 1.533 323.15 0 0 -0.00528 0.00028209 0.00028209 0 0 0 -1054.63 -2.73817e-06 -2.73817e-06 0 0 0 113.12 8.39438 69.9888 34.7368 -1 1 2 534 1.534 323.15 0 0 -0.00544 0.000360414 0.000360414 0 0 0 -1055.38 -2.73249e-06 -2.73249e-06 0 0 0 113.289 8.4015 70.1058 34.7814 -1 1 2 535 1.535 323.15 0 0 -0.0056 0.000438739 0.000438739 0 0 0 -1056.12 -2.72681e-06 -2.72681e-06 0 0 0 113.458 8.4087 70.2229 34.8261 -1 1 2 536 1.536 323.15 0 0 -0.00576 0.000517064 0.000517064 0 0 0 -1056.87 -2.72113e-06 -2.72113e-06 0 0 0 113.627 8.41597 70.34 34.8708 -1 1 2 537 1.537 323.15 0 0 -0.00592 0.00059539 0.00059539 0 0 0 -1057.62 -2.71545e-06 -2.71546e-06 0 0 0 113.796 8.42331 70.4571 34.9155 -1 1 2 538 1.538 323.15 0 0 -0.00608 0.000673716 0.000673716 0 0 0 -1058.37 -2.70977e-06 -2.70978e-06 0 0 0 113.965 8.43071 70.5743 34.9601 -1 1 2 539 1.539 323.15 0 0 -0.00624 0.000752043 0.000752043 0 0 0 -1059.12 -2.70409e-06 -2.7041e-06 0 0 0 114.135 8.43819 70.6915 35.0048 -1 1 2 540 1.54 323.15 0 0 -0.0064 0.00083037 0.00083037 0 0 0 -1059.87 -2.69842e-06 -2.69842e-06 0 0 0 114.304 8.44574 70.8088 35.0495 -1 1 2 541 1.541 323.15 0 0 -0.00656 0.000908698 0.000908698 0 0 0 -1060.62 -2.69274e-06 -2.69274e-06 0 0 0 114.474 8.45336 70.9262 35.0942 -1 1 2 542 1.542 323.15 0 0 -0.00672 0.000987027 0.000987027 0 0 0 -1061.36 -2.68706e-06 -2.68706e-06 0 0 0 114.643 8.46106 71.0436 35.1388 -1 1 2 543 1.543 323.15 0 0 -0.00688 0.00106536 0.00106536 0 0 0 -1062.11 -2.68138e-06 -2.68138e-06 0 0 0 114.813 8.46882 71.161 35.1835 -1 1 2 544 1.544 323.15 0 0 -0.00704 0.00114369 0.00114369 0 0 0 -1062.86 -2.6757e-06 -2.67571e-06 0 0 0 114.983 8.47665 71.2785 35.2282 -1 1 2 545 1.545 323.15 0 0 -0.0072 0.00122202 0.00122202 0 0 0 -1063.6 -2.67002e-06 -2.67003e-06 0 0 0 115.153 8.48456 71.396 35.2729 -1 1 2 546 1.546 323.15 0 0 -0.00736 0.00130035 0.00130035 0 0 0 -1064.35 -2.66434e-06 -2.66435e-06 0 0 0 115.324 8.49253 71.5136 35.3176 -1 1 2 547 1.547 323.15 0 0 -0.00752 0.00137868 0.00137868 0 0 0 -1065.1 -2.65866e-06 -2.65867e-06 0 0 0 115.494 8.50058 71.6312 35.3623 -1 1 2 548 1.548 323.15 0 0 -0.00768 0.00145701 0.00145701 0 0 0 -1065.84 -2.65299e-06 -2.65299e-06 0 0 0 115.665 8.5087 71.7489 35.4069 -1 1 2 549 1.549 323.15 0 0 -0.00784 0.00153534 0.00153534 0 0 0 -1066.59 -2.64731e-06 -2.64731e-06 0 0 0 115.835 8.51688 71.8666 35.4516 -1 1 2 550 1.55 323.15 0 0 -0.008 0.00161368 0.00161368 0 0 0 -1067.34 -2.64163e-06 -2.64163e-06 0 0 0 116.006 8.52514 71.9844 35.4963 -1 1 2 551 1.551 323.15 0 0 -0.00816 0.00169201 0.00169201 0 0 0 -1068.08 -2.63595e-06 -2.63595e-06 0 0 0 116.177 8.53347 72.1022 35.541 -1 1 2 552 1.552 323.15 0 0 -0.00832 0.00177034 0.00177034 0 0 0 -1068.83 -2.63027e-06 -2.63028e-06 0 0 0 116.348 8.54187 72.22 35.5857 -1 1 2 553 1.553 323.15 0 0 -0.00848 0.00184868 0.00184868 0 0 0 -1069.57 -2.62459e-06 -2.6246e-06 0 0 0 116.519 8.55034 72.338 35.6304 -1 1 2 554 1.554 323.15 0 0 -0.00864 0.00192701 0.00192701 0 0 0 -1070.31 -2.61891e-06 -2.61892e-06 0 0 0 116.69 8.55888 72.4559 35.6751 -1 1 2 555 1.555 323.15 0 0 -0.0088 0.00200535 0.00200535 0 0 0 -1071.06 -2.61324e-06 -2.61324e-06 0 0 0 116.861 8.5675 72.5739 35.7198 -1 1 2 556 1.556 323.15 0 0 -0.00896 0.00208368 0.00208368 0 0 0 -1071.8 -2.60756e-06 -2.60756e-06 0 0 0 117.033 8.57618 72.692 35.7645 -1 1 2 557 1.557 323.15 0 0 -0.00912 0.00216202 0.00216202 0 0 0 -1072.55 -2.60188e-06 -2.60188e-06 0 0 0 117.204 8.58494 72.8101 35.8092 -1 1 2 558 1.558 323.15 0 0 -0.00928 0.00224036 0.00224036 0 0 0 -1073.29 -2.5962e-06 -2.5962e-06 0 0 0 117.376 8.59376 72.9282 35.8539 -1 1 2 559 1.559 323.15 0 0 -0.00944 0.0023187 0.0023187 0 0 0 -1074.03 -2.59052e-06 -2.59053e-06 0 0 0 117.548 8.60266 73.0464 35.8986 -1 1 2 560 1.56 323.15 0 0 -0.0096 0.00239704 0.00239704 0 0 0 -1074.78 -2.58484e-06 -2.58485e-06 0 0 0 117.72 8.61162 73.1646 35.9433 -1 1 2 561 1.561 323.15 0 0 -0.00976 0.00247537 0.00247537 0 0 0 -1075.52 -2.57916e-06 -2.57917e-06 0 0 0 117.892 8.62066 73.2829 35.988 -1 1 2 562 1.562 323.15 0 0 -0.00992 0.00255371 0.00255371 0 0 0 -1076.26 -2.57349e-06 -2.57349e-06 0 0 0 118.064 8.62977 73.4013 36.0327 -1 1 2 563 1.563 323.15 0 0 -0.01008 0.00263205 0.00263205 0 0 0 -1077.01 -2.56781e-06 -2.56781e-06 0 0 0 118.236 8.63895 73.5196 36.0774 -1 1 2 564 1.564 323.15 0 0 -0.01024 0.00271039 0.00271039 0 0 0 -1077.75 -2.56213e-06 -2.56213e-06 0 0 0 118.408 8.6482 73.6381 36.1221 -1 1 2 565 1.565 323.15 0 0 -0.0104 0.00278874 0.00278874 0 0 0 -1078.49 -2.55645e-06 -2.55646e-06 0 0 0 118.581 8.65752 73.7565 36.1668 -1 1 2 566 1.566 323.15 0 0 -0.01056 0.00286708 0.00286708 0 0 0 -1079.23 -2.55077e-06 -2.55078e-06 0 0 0 118.753 8.66692 73.8751 36.2115 -1 1 2 567 1.567 323.15 0 0 -0.01072 0.00294542 0.00294542 0 0 0 -1079.97 -2.54509e-06 -2.5451e-06 0 0 0 118.926 8.67638 73.9936 36.2562 -1 1 2 568 1.568 323.15 0 0 -0.01088 0.00302376 0.00302376 0 0 0 -1080.71 -2.53941e-06 -2.53942e-06 0 0 0 119.099 8.68591 74.1122 36.3009 -1 1 2 569 1.569 323.15 0 0 -0.01104 0.00310211 0.00310211 0 0 0 -1081.46 -2.53374e-06 -2.53374e-06 0 0 0 119.272 8.69552 74.2309 36.3456 -1 1 2 570 1.57 323.15 0 0 -0.0112 0.00318045 0.00318045 0 0 0 -1082.2 -2.52806e-06 -2.52806e-06 0 0 0 119.445 8.7052 74.3496 36.3903 -1 1 2 571 1.571 323.15 0 0 -0.01136 0.00325879 0.00325879 0 0 0 -1082.94 -2.52238e-06 -2.52238e-06 0 0 0 119.618 8.71494 74.4684 36.435 -1 1 2 572 1.572 323.15 0 0 -0.01152 0.00333714 0.00333714 0 0 0 -1083.68 -2.5167e-06 -2.51671e-06 0 0 0 119.792 8.72476 74.5872 36.4797 -1 1 2 573 1.573 323.15 0 0 -0.01168 0.00341548 0.00341548 0 0 0 -1084.42 -2.51102e-06 -2.51103e-06 0 0 0 119.965 8.73465 74.706 36.5244 -1 1 2 574 1.574 323.15 0 0 -0.01184 0.00349383 0.00349383 0 0 0 -1085.16 -2.50534e-06 -2.50535e-06 0 0 0 120.139 8.74461 74.8249 36.5691 -1 1 2 575 1.575 323.15 0 0 -0.012 0.00357218 0.00357218 0 0 0 -1085.9 -2.49966e-06 -2.49967e-06 0 0 0 120.312 8.75464 74.9438 36.6139 -1 1 2 576 1.576 323.15 0 0 -0.01216 0.00365052 0.00365052 0 0 0 -1086.64 -2.49399e-06 -2.49399e-06 0 0 0 120.486 8.76474 75.0628 36.6586 -1 1 2 577 1.577 323.15 0 0 -0.01232 0.00372887 0.00372887 0 0 0 -1087.38 -2.48831e-06 -2.48831e-06 0 0 0 120.66 8.77492 75.1819 36.7033 -1 1 2 578 1.578 323.15 0 0 -0.01248 0.00380722 0.00380722 0 0 0 -1088.11 -2.48263e-06 -2.48263e-06 0 0 0 120.834 8.78516 75.3009 36.748 -1 1 2 579 1.579 323.15 0 0 -0.01264 0.00388557 0.00388557 0 0 0 -1088.85 -2.47695e-06 -2.47695e-06 0 0 0 121.008 8.79547 75.4201 36.7927 -1 1 2 580 1.58 323.15 0 0 -0.0128 0.00396392 0.00396392 0 0 0 -1089.59 -2.47127e-06 -2.47128e-06 0 0 0 121.183 8.80586 75.5392 36.8375 -1 1 2 581 1.581 323.15 0 0 -0.01296 0.00404226 0.00404226 0 0 0 -1090.33 -2.46559e-06 -2.4656e-06 0 0 0 121.357 8.81632 75.6584 36.8822 -1 1 2 582 1.582 323.15 0 0 -0.01312 0.00412061 0.00412061 0 0 0 -1091.07 -2.45991e-06 -2.45992e-06 0 0 0 121.531 8.82684 75.7777 36.9269 -1 1 2 583 1.583 323.15 0 0 -0.01328 0.00419896 0.00419896 0 0 0 -1091.81 -2.45424e-06 -2.45424e-06 0 0 0 121.706 8.83744 75.897 36.9716 -1 1 2 584 1.584 323.15 0 0 -0.01344 0.00427732 0.00427732 0 0 0 -1092.54 -2.44856e-06 -2.44856e-06 0 0 0 121.881 8.84811 76.0164 37.0163 -1 1 2 585 1.585 323.15 0 0 -0.0136 0.00435567 0.00435567 0 0 0 -1093.28 -2.44288e-06 -2.44288e-06 0 0 0 122.056 8.85885 76.1358 37.0611 -1 1 2 586 1.586 323.15 0 0 -0.01376 0.00443402 0.00443402 0 0 0 -1094.02 -2.4372e-06 -2.4372e-06 0 0 0 122.231 8.86967 76.2552 37.1058 -1 1 2 587 1.587 323.15 0 0 -0.01392 0.00451237 0.00451237 0 0 0 -1094.75 -2.43152e-06 -2.43153e-06 0 0 0 122.406 8.88055 76.3747 37.1505 -1 1 2 588 1.588 323.15 0 0 -0.01408 0.00459073 0.00459073 0 0 0 -1095.49 -2.42584e-06 -2.42585e-06 0 0 0 122.581 8.8915 76.4942 37.1952 -1 1 2 589 1.589 323.15 0 0 -0.01424 0.00466908 0.00466908 0 0 0 -1096.23 -2.42016e-06 -2.42017e-06 0 0 0 122.756 8.90253 76.6138 37.24 -1 1 2 590 1.59 323.15 0 0 -0.0144 0.00474743 0.00474743 0 0 0 -1096.96 -2.41449e-06 -2.41449e-06 0 0 0 122.932 8.91362 76.7335 37.2847 -1 1 2 591 1.591 323.15 0 0 -0.01456 0.00482579 0.00482579 0 0 0 -1097.7 -2.40881e-06 -2.40881e-06 0 0 0 123.107 8.92479 76.8531 37.3294 -1 1 2 592 1.592 323.15 0 0 -0.01472 0.00490414 0.00490414 0 0 0 -1098.44 -2.40313e-06 -2.40313e-06 0 0 0 123.283 8.93603 76.9729 37.3742 -1 1 2 593 1.593 323.15 0 0 -0.01488 0.0049825 0.0049825 0 0 0 -1099.17 -2.39745e-06 -2.39745e-06 0 0 0 123.459 8.94734 77.0926 37.4189 -1 1 2 594 1.594 323.15 0 0 -0.01504 0.00506085 0.00506085 0 0 0 -1099.91 -2.39177e-06 -2.39178e-06 0 0 0 123.635 8.95872 77.2124 37.4636 -1 1 2 595 1.595 323.15 0 0 -0.0152 0.00513921 0.00513921 0 0 0 -1100.64 -2.38609e-06 -2.3861e-06 0 0 0 123.811 8.97017 77.3323 37.5084 -1 1 2 596 1.596 323.15 0 0 -0.01536 0.00521757 0.00521757 0 0 0 -1101.38 -2.38041e-06 -2.38042e-06 0 0 0 123.987 8.98169 77.4522 37.5531 -1 1 2 597 1.597 323.15 0 0 -0.01552 0.00529593 0.00529593 0 0 0 -1102.11 -2.37474e-06 -2.37474e-06 0 0 0 124.163 8.99328 77.5721 37.5978 -1 1 2 598 1.598 323.15 0 0 -0.01568 0.00537428 0.00537428 0 0 0 -1102.84 -2.36906e-06 -2.36906e-06 0 0 0 124.34 9.00495 77.6921 37.6426 -1 1 2 599 1.599 323.15 0 0 -0.01584 0.00545264 0.00545264 0 0 0 -1103.58 -2.36338e-06 -2.36338e-06 0 0 0 124.516 9.01668 77.8122 37.6873 -1 1 2 600 1.6 323.15 0 0 -0.016 0.005531 0.005531 0 0 0 -1104.31 -2.3577e-06 -2.35771e-06 0 0 0 124.693 9.02849 77.9323 37.7321 -1 1 2 601 1.601 323.15 0 0 -0.01616 0.00560936 0.00560936 0 0 0 -1105.05 -2.35202e-06 -2.35203e-06 0 0 0 124.87 9.04037 78.0524 37.7768 -1 1 2 602 1.602 323.15 0 0 -0.01632 0.00568772 0.00568772 0 0 0 -1105.78 -2.34634e-06 -2.34635e-06 0 0 0 125.046 9.05231 78.1726 37.8215 -1 1 2 603 1.603 323.15 0 0 -0.01648 0.00576608 0.00576608 0 0 0 -1106.51 -2.34067e-06 -2.34067e-06 0 0 0 125.223 9.06433 78.2928 37.8663 -1 1 2 604 1.604 323.15 0 0 -0.01664 0.00584444 0.00584444 0 0 0 -1107.25 -2.33499e-06 -2.33499e-06 0 0 0 125.401 9.07643 78.4131 37.911 -1 1 2 605 1.605 323.15 0 0 -0.0168 0.0059228 0.0059228 0 0 0 -1107.98 -2.32931e-06 -2.32931e-06 0 0 0 125.578 9.08859 78.5334 37.9558 -1 1 2 606 1.606 323.15 0 0 -0.01696 0.00600117 0.00600117 0 0 0 -1108.71 -2.32363e-06 -2.32363e-06 0 0 0 125.755 9.10082 78.6537 38.0005 -1 1 2 607 1.607 323.15 0 0 -0.01712 0.00607953 0.00607953 0 0 0 -1109.44 -2.31795e-06 -2.31796e-06 0 0 0 125.933 9.11312 78.7741 38.0453 -1 1 2 608 1.608 323.15 0 0 -0.01728 0.00615789 0.00615789 0 0 0 -1110.18 -2.31227e-06 -2.31228e-06 0 0 0 126.11 9.1255 78.8946 38.09 -1 1 2 609 1.609 323.15 0 0 -0.01744 0.00623625 0.00623625 0 0 0 -1110.91 -2.30659e-06 -2.3066e-06 0 0 0 126.288 9.13794 79.0151 38.1348 -1 1 2 610 1.61 323.15 0 0 -0.0176 0.00631462 0.00631462 0 0 0 -1111.64 -2.30092e-06 -2.30092e-06 0 0 0 126.466 9.15046 79.1356 38.1795 -1 1 2 611 1.611 323.15 0 0 -0.01776 0.00639298 0.00639298 0 0 0 -1112.37 -2.29524e-06 -2.29524e-06 0 0 0 126.643 9.16305 79.2562 38.2243 -1 1 2 612 1.612 323.15 0 0 -0.01792 0.00647135 0.00647135 0 0 0 -1113.1 -2.28956e-06 -2.28956e-06 0 0 0 126.822 9.17571 79.3768 38.269 -1 1 2 613 1.613 323.15 0 0 -0.01808 0.00654971 0.00654971 0 0 0 -1113.83 -2.28388e-06 -2.28388e-06 0 0 0 127 9.18844 79.4975 38.3138 -1 1 2 614 1.614 323.15 0 0 -0.01824 0.00662808 0.00662808 0 0 0 -1114.57 -2.2782e-06 -2.2782e-06 0 0 0 127.178 9.20124 79.6182 38.3585 -1 1 2 615 1.615 323.15 0 0 -0.0184 0.00670645 0.00670645 0 0 0 -1115.3 -2.27252e-06 -2.27253e-06 0 0 0 127.356 9.21412 79.739 38.4033 -1 1 2 616 1.616 323.15 0 0 -0.01856 0.00678481 0.00678481 0 0 0 -1116.03 -2.26684e-06 -2.26685e-06 0 0 0 127.535 9.22706 79.8598 38.448 -1 1 2 617 1.617 323.15 0 0 -0.01872 0.00686318 0.00686318 0 0 0 -1116.76 -2.26116e-06 -2.26117e-06 0 0 0 127.713 9.24007 79.9806 38.4928 -1 1 2 618 1.618 323.15 0 0 -0.01888 0.00694155 0.00694155 0 0 0 -1117.49 -2.25549e-06 -2.25549e-06 0 0 0 127.892 9.25316 80.1015 38.5375 -1 1 2 619 1.619 323.15 0 0 -0.01904 0.00701992 0.00701992 0 0 0 -1118.22 -2.24981e-06 -2.24981e-06 0 0 0 128.071 9.26632 80.2225 38.5823 -1 1 2 620 1.62 323.15 0 0 -0.0192 0.00709828 0.00709828 0 0 0 -1118.95 -2.24413e-06 -2.24413e-06 0 0 0 128.25 9.27955 80.3434 38.6271 -1 1 2 621 1.621 323.15 0 0 -0.01936 0.00717665 0.00717665 0 0 0 -1119.68 -2.23845e-06 -2.23845e-06 0 0 0 128.429 9.29285 80.4645 38.6718 -1 1 2 622 1.622 323.15 0 0 -0.01952 0.00725502 0.00725502 0 0 0 -1120.4 -2.23277e-06 -2.23278e-06 0 0 0 128.608 9.30622 80.5855 38.7166 -1 1 2 623 1.623 323.15 0 0 -0.01968 0.00733339 0.00733339 0 0 0 -1121.13 -2.22709e-06 -2.2271e-06 0 0 0 128.788 9.31966 80.7067 38.7613 -1 1 2 624 1.624 323.15 0 0 -0.01984 0.00741176 0.00741176 0 0 0 -1121.86 -2.22141e-06 -2.22142e-06 0 0 0 128.967 9.33317 80.8278 38.8061 -1 1 2 625 1.625 323.15 0 0 -0.02 0.00749014 0.00749014 0 0 0 -1122.59 -2.21574e-06 -2.21574e-06 0 0 0 129.147 9.34676 80.949 38.8509 -1 1 2 626 1.626 323.15 0 0 -0.02016 0.00756851 0.00756851 0 0 0 -1123.32 -2.21006e-06 -2.21006e-06 0 0 0 129.326 9.36041 81.0703 38.8956 -1 1 2 627 1.627 323.15 0 0 -0.02032 0.00764688 0.00764688 0 0 0 -1124.05 -2.20438e-06 -2.20438e-06 0 0 0 129.506 9.37414 81.1916 38.9404 -1 1 2 628 1.628 323.15 0 0 -0.02048 0.00772525 0.00772525 0 0 0 -1124.78 -2.1987e-06 -2.1987e-06 0 0 0 129.686 9.38794 81.3129 38.9852 -1 1 2 629 1.629 323.15 0 0 -0.02064 0.00780363 0.00780363 0 0 0 -1125.5 -2.19302e-06 -2.19303e-06 0 0 0 129.866 9.40181 81.4343 39.0299 -1 1 2 630 1.63 323.15 0 0 -0.0208 0.007882 0.007882 0 0 0 -1126.23 -2.18734e-06 -2.18735e-06 0 0 0 130.046 9.41575 81.5557 39.0747 -1 1 2 631 1.631 323.15 0 0 -0.02096 0.00796037 0.00796037 0 0 0 -1126.96 -2.18166e-06 -2.18167e-06 0 0 0 130.226 9.42976 81.6772 39.1195 -1 1 2 632 1.632 323.15 0 0 -0.02112 0.00803875 0.00803875 0 0 0 -1127.68 -2.17599e-06 -2.17599e-06 0 0 0 130.407 9.44384 81.7987 39.1642 -1 1 2 633 1.633 323.15 0 0 -0.02128 0.00811712 0.00811712 0 0 0 -1128.41 -2.17031e-06 -2.17031e-06 0 0 0 130.587 9.45799 81.9203 39.209 -1 1 2 634 1.634 323.15 0 0 -0.02144 0.0081955 0.0081955 0 0 0 -1129.14 -2.16463e-06 -2.16463e-06 0 0 0 130.768 9.47222 82.0419 39.2538 -1 1 2 635 1.635 323.15 0 0 -0.0216 0.00827387 0.00827387 0 0 0 -1129.86 -2.15895e-06 -2.15895e-06 0 0 0 130.949 9.48652 82.1636 39.2986 -1 1 2 636 1.636 323.15 0 0 -0.02176 0.00835225 0.00835225 0 0 0 -1130.59 -2.15327e-06 -2.15328e-06 0 0 0 131.129 9.50088 82.2852 39.3433 -1 1 2 637 1.637 323.15 0 0 -0.02192 0.00843063 0.00843063 0 0 0 -1131.32 -2.14759e-06 -2.1476e-06 0 0 0 131.31 9.51532 82.407 39.3881 -1 1 2 638 1.638 323.15 0 0 -0.02208 0.008509 0.008509 0 0 0 -1132.04 -2.14191e-06 -2.14192e-06 0 0 0 131.491 9.52983 82.5288 39.4329 -1 1 2 639 1.639 323.15 0 0 -0.02224 0.00858738 0.00858738 0 0 0 -1132.77 -2.13624e-06 -2.13624e-06 0 0 0 131.673 9.54441 82.6506 39.4777 -1 1 2 640 1.64 323.15 0 0 -0.0224 0.00866576 0.00866576 0 0 0 -1133.49 -2.13056e-06 -2.13056e-06 0 0 0 131.854 9.55906 82.7725 39.5224 -1 1 2 641 1.641 323.15 0 0 -0.02256 0.00874414 0.00874414 0 0 0 -1134.22 -2.12488e-06 -2.12488e-06 0 0 0 132.035 9.57379 82.8944 39.5672 -1 1 2 642 1.642 323.15 0 0 -0.02272 0.00882252 0.00882252 0 0 0 -1134.94 -2.1192e-06 -2.1192e-06 0 0 0 132.217 9.58858 83.0163 39.612 -1 1 2 643 1.643 323.15 0 0 -0.02288 0.0089009 0.0089009 0 0 0 -1135.67 -2.11352e-06 -2.11353e-06 0 0 0 132.399 9.60345 83.1383 39.6568 -1 1 2 644 1.644 323.15 0 0 -0.02304 0.00897928 0.00897928 0 0 0 -1136.39 -2.10784e-06 -2.10785e-06 0 0 0 132.58 9.61839 83.2604 39.7016 -1 1 2 645 1.645 323.15 0 0 -0.0232 0.00905766 0.00905766 0 0 0 -1137.12 -2.10216e-06 -2.10217e-06 0 0 0 132.762 9.6334 83.3825 39.7463 -1 1 2 646 1.646 323.15 0 0 -0.02336 0.00913604 0.00913604 0 0 0 -1137.84 -2.09649e-06 -2.09649e-06 0 0 0 132.944 9.64847 83.5046 39.7911 -1 1 2 647 1.647 323.15 0 0 -0.02352 0.00921442 0.00921442 0 0 0 -1138.57 -2.09081e-06 -2.09081e-06 0 0 0 133.126 9.66363 83.6268 39.8359 -1 1 2 648 1.648 323.15 0 0 -0.02368 0.0092928 0.0092928 0 0 0 -1139.29 -2.08513e-06 -2.08513e-06 0 0 0 133.309 9.67885 83.749 39.8807 -1 1 2 649 1.649 323.15 0 0 -0.02384 0.00937118 0.00937118 0 0 0 -1140.01 -2.07945e-06 -2.07945e-06 0 0 0 133.491 9.69414 83.8713 39.9255 -1 1 2 650 1.65 323.15 0 0 -0.024 0.00944957 0.00944957 0 0 0 -1140.74 -2.07377e-06 -2.07378e-06 0 0 0 133.673 9.70951 83.9936 39.9703 -1 1 2 651 1.651 323.15 0 0 -0.02416 0.00952795 0.00952795 0 0 0 -1141.46 -2.06809e-06 -2.0681e-06 0 0 0 133.856 9.72494 84.1159 40.0151 -1 1 2 652 1.652 323.15 0 0 -0.02432 0.00960633 0.00960633 0 0 0 -1142.18 -2.06241e-06 -2.06242e-06 0 0 0 134.039 9.74045 84.2383 40.0598 -1 1 2 653 1.653 323.15 0 0 -0.02448 0.00968472 0.00968472 0 0 0 -1142.91 -2.05674e-06 -2.05674e-06 0 0 0 134.221 9.75603 84.3608 40.1046 -1 1 2 654 1.654 323.15 0 0 -0.02464 0.0097631 0.0097631 0 0 0 -1143.63 -2.05106e-06 -2.05106e-06 0 0 0 134.404 9.77168 84.4833 40.1494 -1 1 2 655 1.655 323.15 0 0 -0.0248 0.00984149 0.00984149 0 0 0 -1144.35 -2.04538e-06 -2.04538e-06 0 0 0 134.587 9.7874 84.6058 40.1942 -1 1 2 656 1.656 323.15 0 0 -0.02496 0.00991987 0.00991987 0 0 0 -1145.07 -2.0397e-06 -2.0397e-06 0 0 0 134.771 9.80319 84.7283 40.239 -1 1 2 657 1.657 323.15 0 0 -0.02512 0.00999826 0.00999826 0 0 0 -1145.79 -2.03402e-06 -2.03402e-06 0 0 0 134.954 9.81906 84.851 40.2838 -1 1 2 658 1.658 323.15 0 0 -0.02528 0.0100766 0.0100766 0 0 0 -1146.52 -2.02834e-06 -2.02835e-06 0 0 0 135.137 9.83499 84.9736 40.3286 -1 1 2 659 1.659 323.15 0 0 -0.02544 0.010155 0.010155 0 0 0 -1147.24 -2.02266e-06 -2.02267e-06 0 0 0 135.321 9.851 85.0963 40.3734 -1 1 2 660 1.66 323.15 0 0 -0.0256 0.0102334 0.0102334 0 0 0 -1147.96 -2.01699e-06 -2.01699e-06 0 0 0 135.504 9.86708 85.2191 40.4182 -1 1 2 661 1.661 323.15 0 0 -0.02576 0.0103118 0.0103118 0 0 0 -1148.68 -2.01131e-06 -2.01131e-06 0 0 0 135.688 9.88322 85.3418 40.463 -1 1 2 662 1.662 323.15 0 0 -0.02592 0.0103902 0.0103902 0 0 0 -1149.4 -2.00563e-06 -2.00563e-06 0 0 0 135.872 9.89944 85.4647 40.5078 -1 1 2 663 1.663 323.15 0 0 -0.02608 0.0104686 0.0104686 0 0 0 -1150.12 -1.99995e-06 -1.99995e-06 0 0 0 136.056 9.91574 85.5875 40.5526 -1 1 2 664 1.664 323.15 0 0 -0.02624 0.010547 0.010547 0 0 0 -1150.84 -1.99427e-06 -1.99427e-06 0 0 0 136.24 9.9321 85.7105 40.5974 -1 1 2 665 1.665 323.15 0 0 -0.0264 0.0106254 0.0106254 0 0 0 -1151.56 -1.98859e-06 -1.9886e-06 0 0 0 136.424 9.94853 85.8334 40.6422 -1 1 2 666 1.666 323.15 0 0 -0.02656 0.0107038 0.0107038 0 0 0 -1152.28 -1.98291e-06 -1.98292e-06 0 0 0 136.608 9.96504 85.9564 40.687 -1 1 2 667 1.667 323.15 0 0 -0.02672 0.0107821 0.0107821 0 0 0 -1153 -1.97724e-06 -1.97724e-06 0 0 0 136.793 9.98162 86.0795 40.7318 -1 1 2 668 1.668 323.15 0 0 -0.02688 0.0108605 0.0108605 0 0 0 -1153.72 -1.97156e-06 -1.97156e-06 0 0 0 136.977 9.99826 86.2025 40.7766 -1 1 2 669 1.669 323.15 0 0 -0.02704 0.0109389 0.0109389 0 0 0 -1154.44 -1.96588e-06 -1.96588e-06 0 0 0 137.162 10.015 86.3257 40.8214 -1 1 2 670 1.67 323.15 0 0 -0.0272 0.0110173 0.0110173 0 0 0 -1155.16 -1.9602e-06 -1.9602e-06 0 0 0 137.347 10.0318 86.4489 40.8662 -1 1 2 671 1.671 323.15 0 0 -0.02736 0.0110957 0.0110957 0 0 0 -1155.88 -1.95452e-06 -1.95452e-06 0 0 0 137.532 10.0486 86.5721 40.911 -1 1 2 672 1.672 323.15 0 0 -0.02752 0.0111741 0.0111741 0 0 0 -1156.6 -1.94884e-06 -1.94885e-06 0 0 0 137.717 10.0656 86.6953 40.9558 -1 1 2 673 1.673 323.15 0 0 -0.02768 0.0112525 0.0112525 0 0 0 -1157.32 -1.94316e-06 -1.94317e-06 0 0 0 137.902 10.0826 86.8186 41.0006 -1 1 2 674 1.674 323.15 0 0 -0.02784 0.0113309 0.0113309 0 0 0 -1158.04 -1.93749e-06 -1.93749e-06 0 0 0 138.087 10.0997 86.942 41.0454 -1 1 2 675 1.675 323.15 0 0 -0.028 0.0114093 0.0114093 0 0 0 -1158.76 -1.93181e-06 -1.93181e-06 0 0 0 138.272 10.1168 87.0654 41.0902 -1 1 2 676 1.676 323.15 0 0 -0.02816 0.0114877 0.0114877 0 0 0 -1159.47 -1.92613e-06 -1.92613e-06 0 0 0 138.458 10.134 87.1888 41.135 -1 1 2 677 1.677 323.15 0 0 -0.02832 0.0115661 0.0115661 0 0 0 -1160.19 -1.92045e-06 -1.92045e-06 0 0 0 138.643 10.1513 87.3123 41.1798 -1 1 2 678 1.678 323.15 0 0 -0.02848 0.0116445 0.0116445 0 0 0 -1160.91 -1.91477e-06 -1.91478e-06 0 0 0 138.829 10.1687 87.4358 41.2247 -1 1 2 679 1.679 323.15 0 0 -0.02864 0.0117229 0.0117229 0 0 0 -1161.63 -1.90909e-06 -1.9091e-06 0 0 0 139.015 10.1861 87.5593 41.2695 -1 1 2 680 1.68 323.15 0 0 -0.0288 0.0118013 0.0118013 0 0 0 -1162.35 -1.90341e-06 -1.90342e-06 0 0 0 139.201 10.2036 87.6829 41.3143 -1 1 2 681 1.681 323.15 0 0 -0.02896 0.0118796 0.0118796 0 0 0 -1163.06 -1.89773e-06 -1.89774e-06 0 0 0 139.387 10.2212 87.8066 41.3591 -1 1 2 682 1.682 323.15 0 0 -0.02912 0.011958 0.011958 0 0 0 -1163.78 -1.89206e-06 -1.89206e-06 0 0 0 139.573 10.2388 87.9303 41.4039 -1 1 2 683 1.683 323.15 0 0 -0.02928 0.0120364 0.0120364 0 0 0 -1164.5 -1.88638e-06 -1.88638e-06 0 0 0 139.759 10.2566 88.054 41.4487 -1 1 2 684 1.684 323.15 0 0 -0.02944 0.0121148 0.0121148 0 0 0 -1165.21 -1.8807e-06 -1.8807e-06 0 0 0 139.946 10.2743 88.1778 41.4935 -1 1 2 685 1.685 323.15 0 0 -0.0296 0.0121932 0.0121932 0 0 0 -1165.93 -1.87502e-06 -1.87502e-06 0 0 0 140.132 10.2922 88.3016 41.5384 -1 1 2 686 1.686 323.15 0 0 -0.02976 0.0122716 0.0122716 0 0 0 -1166.65 -1.86934e-06 -1.86935e-06 0 0 0 140.319 10.3101 88.4254 41.5832 -1 1 2 687 1.687 323.15 0 0 -0.02992 0.01235 0.01235 0 0 0 -1167.36 -1.86366e-06 -1.86367e-06 0 0 0 140.505 10.3281 88.5493 41.628 -1 1 2 688 1.688 323.15 0 0 -0.03008 0.0124284 0.0124284 0 0 0 -1168.08 -1.85798e-06 -1.85799e-06 0 0 0 140.692 10.3462 88.6733 41.6728 -1 1 2 689 1.689 323.15 0 0 -0.03024 0.0125068 0.0125068 0 0 0 -1168.79 -1.85231e-06 -1.85231e-06 0 0 0 140.879 10.3644 88.7972 41.7176 -1 1 2 690 1.69 323.15 0 0 -0.0304 0.0125852 0.0125852 0 0 0 -1169.51 -1.84663e-06 -1.84663e-06 0 0 0 141.066 10.3826 88.9213 41.7625 -1 1 2 691 1.691 323.15 0 0 -0.03056 0.0126636 0.0126636 0 0 0 -1170.23 -1.84095e-06 -1.84095e-06 0 0 0 141.253 10.4009 89.0453 41.8073 -1 1 2 692 1.692 323.15 0 0 -0.03072 0.012742 0.012742 0 0 0 -1170.94 -1.83527e-06 -1.83527e-06 0 0 0 141.441 10.4192 89.1694 41.8521 -1 1 2 693 1.693 323.15 0 0 -0.03088 0.0128204 0.0128204 0 0 0 -1171.66 -1.82959e-06 -1.8296e-06 0 0 0 141.628 10.4377 89.2936 41.8969 -1 1 2 694 1.694 323.15 0 0 -0.03104 0.0128988 0.0128988 0 0 0 -1172.37 -1.82391e-06 -1.82392e-06 0 0 0 141.816 10.4562 89.4178 41.9418 -1 1 2 695 1.695 323.15 0 0 -0.0312 0.0129772 0.0129772 0 0 0 -1173.09 -1.81823e-06 -1.81824e-06 0 0 0 142.003 10.4747 89.542 41.9866 -1 1 2 696 1.696 323.15 0 0 -0.03136 0.0130556 0.0130556 0 0 0 -1173.8 -1.81256e-06 -1.81256e-06 0 0 0 142.191 10.4934 89.6663 42.0314 -1 1 2 697 1.697 323.15 0 0 -0.03152 0.013134 0.013134 0 0 0 -1174.51 -1.80688e-06 -1.80688e-06 0 0 0 142.379 10.5121 89.7906 42.0762 -1 1 2 698 1.698 323.15 0 0 -0.03168 0.0132125 0.0132125 0 0 0 -1175.23 -1.8012e-06 -1.8012e-06 0 0 0 142.567 10.5309 89.915 42.1211 -1 1 2 699 1.699 323.15 0 0 -0.03184 0.0132909 0.0132909 0 0 0 -1175.94 -1.79552e-06 -1.79552e-06 0 0 0 142.755 10.5498 90.0394 42.1659 -1 1 2 700 1.7 323.15 0 0 -0.032 0.0133693 0.0133693 0 0 0 -1176.66 -1.78984e-06 -1.78985e-06 0 0 0 142.943 10.5687 90.1638 42.2107 -1 1 2 701 1.701 323.15 0 0 -0.03216 0.0134477 0.0134477 0 0 0 -1177.37 -1.78416e-06 -1.78417e-06 0 0 0 143.132 10.5877 90.2883 42.2555 -1 1 2 702 1.702 323.15 0 0 -0.03232 0.0135261 0.0135261 0 0 0 -1178.08 -1.77849e-06 -1.77849e-06 0 0 0 143.32 10.6068 90.4129 42.3004 -1 1 2 703 1.703 323.15 0 0 -0.03248 0.0136045 0.0136045 0 0 0 -1178.8 -1.77281e-06 -1.77281e-06 0 0 0 143.509 10.6259 90.5374 42.3452 -1 1 2 704 1.704 323.15 0 0 -0.03264 0.0136829 0.0136829 0 0 0 -1179.51 -1.76713e-06 -1.76713e-06 0 0 0 143.697 10.6451 90.662 42.39 -1 1 2 705 1.705 323.15 0 0 -0.0328 0.0137613 0.0137613 0 0 0 -1180.22 -1.76145e-06 -1.76145e-06 0 0 0 143.886 10.6644 90.7867 42.4349 -1 1 2 706 1.706 323.15 0 0 -0.03296 0.0138397 0.0138397 0 0 0 -1180.93 -1.75577e-06 -1.75577e-06 0 0 0 144.075 10.6838 90.9114 42.4797 -1 1 2 707 1.707 323.15 0 0 -0.03312 0.0139181 0.0139181 0 0 0 -1181.65 -1.75009e-06 -1.7501e-06 0 0 0 144.264 10.7032 91.0361 42.5245 -1 1 2 708 1.708 323.15 0 0 -0.03328 0.0139965 0.0139965 0 0 0 -1182.36 -1.74441e-06 -1.74442e-06 0 0 0 144.453 10.7227 91.1609 42.5694 -1 1 2 709 1.709 323.15 0 0 -0.03344 0.0140749 0.0140749 0 0 0 -1183.07 -1.73874e-06 -1.73874e-06 0 0 0 144.642 10.7423 91.2857 42.6142 -1 1 2 710 1.71 323.15 0 0 -0.0336 0.0141533 0.0141533 0 0 0 -1183.78 -1.73306e-06 -1.73306e-06 0 0 0 144.832 10.7619 91.4106 42.6591 -1 1 2 711 1.711 323.15 0 0 -0.03376 0.0142317 0.0142317 0 0 0 -1184.49 -1.72738e-06 -1.72738e-06 0 0 0 145.021 10.7817 91.5355 42.7039 -1 1 2 712 1.712 323.15 0 0 -0.03392 0.0143101 0.0143101 0 0 0 -1185.21 -1.7217e-06 -1.7217e-06 0 0 0 145.211 10.8015 91.6604 42.7487 -1 1 2 713 1.713 323.15 0 0 -0.03408 0.0143886 0.0143886 0 0 0 -1185.92 -1.71602e-06 -1.71603e-06 0 0 0 145.4 10.8213 91.7854 42.7936 -1 1 2 714 1.714 323.15 0 0 -0.03424 0.014467 0.014467 0 0 0 -1186.63 -1.71034e-06 -1.71035e-06 0 0 0 145.59 10.8413 91.9105 42.8384 -1 1 2 715 1.715 323.15 0 0 -0.0344 0.0145454 0.0145454 0 0 0 -1187.34 -1.70467e-06 -1.70467e-06 0 0 0 145.78 10.8613 92.0355 42.8833 -1 1 2 716 1.716 323.15 0 0 -0.03456 0.0146238 0.0146238 0 0 0 -1188.05 -1.69899e-06 -1.69899e-06 0 0 0 145.97 10.8813 92.1606 42.9281 -1 1 2 717 1.717 323.15 0 0 -0.03472 0.0147022 0.0147022 0 0 0 -1188.76 -1.69331e-06 -1.69331e-06 0 0 0 146.16 10.9015 92.2858 42.9729 -1 1 2 718 1.718 323.15 0 0 -0.03488 0.0147806 0.0147806 0 0 0 -1189.47 -1.68763e-06 -1.68763e-06 0 0 0 146.35 10.9217 92.411 43.0178 -1 1 2 719 1.719 323.15 0 0 -0.03504 0.014859 0.014859 0 0 0 -1190.18 -1.68195e-06 -1.68195e-06 0 0 0 146.541 10.942 92.5362 43.0626 -1 1 2 720 1.72 323.15 0 0 -0.0352 0.0149374 0.0149374 0 0 0 -1190.89 -1.67627e-06 -1.67628e-06 0 0 0 146.731 10.9624 92.6615 43.1075 -1 1 2 721 1.721 323.15 0 0 -0.03536 0.0150158 0.0150158 0 0 0 -1191.6 -1.67059e-06 -1.6706e-06 0 0 0 146.922 10.9828 92.7868 43.1523 -1 1 2 722 1.722 323.15 0 0 -0.03552 0.0150943 0.0150943 0 0 0 -1192.31 -1.66491e-06 -1.66492e-06 0 0 0 147.113 11.0033 92.9122 43.1972 -1 1 2 723 1.723 323.15 0 0 -0.03568 0.0151727 0.0151727 0 0 0 -1193.02 -1.65924e-06 -1.65924e-06 0 0 0 147.303 11.0239 93.0376 43.242 -1 1 2 724 1.724 323.15 0 0 -0.03584 0.0152511 0.0152511 0 0 0 -1193.73 -1.65356e-06 -1.65356e-06 0 0 0 147.494 11.0445 93.163 43.2869 -1 1 2 725 1.725 323.15 0 0 -0.036 0.0153295 0.0153295 0 0 0 -1194.44 -1.64788e-06 -1.64788e-06 0 0 0 147.685 11.0652 93.2885 43.3317 -1 1 2 726 1.726 323.15 0 0 -0.03616 0.0154079 0.0154079 0 0 0 -1195.15 -1.6422e-06 -1.6422e-06 0 0 0 147.877 11.086 93.414 43.3766 -1 1 2 727 1.727 323.15 0 0 -0.03632 0.0154863 0.0154863 0 0 0 -1195.86 -1.63652e-06 -1.63653e-06 0 0 0 148.068 11.1069 93.5396 43.4214 -1 1 2 728 1.728 323.15 0 0 -0.03648 0.0155647 0.0155647 0 0 0 -1196.57 -1.63084e-06 -1.63085e-06 0 0 0 148.259 11.1278 93.6652 43.4663 -1 1 2 729 1.729 323.15 0 0 -0.03664 0.0156432 0.0156432 0 0 0 -1197.27 -1.62516e-06 -1.62517e-06 0 0 0 148.451 11.1488 93.7909 43.5111 -1 1 2 730 1.73 323.15 0 0 -0.0368 0.0157216 0.0157216 0 0 0 -1197.98 -1.61949e-06 -1.61949e-06 0 0 0 148.642 11.1699 93.9166 43.556 -1 1 2 731 1.731 323.15 0 0 -0.03696 0.0158 0.0158 0 0 0 -1198.69 -1.61381e-06 -1.61381e-06 0 0 0 148.834 11.1911 94.0423 43.6008 -1 1 2 732 1.732 323.15 0 0 -0.03712 0.0158784 0.0158784 0 0 0 -1199.4 -1.60813e-06 -1.60813e-06 0 0 0 149.026 11.2123 94.1681 43.6457 -1 1 2 733 1.733 323.15 0 0 -0.03728 0.0159568 0.0159568 0 0 0 -1200.11 -1.60245e-06 -1.60245e-06 0 0 0 149.218 11.2336 94.2939 43.6905 -1 1 2 734 1.734 323.15 0 0 -0.03744 0.0160352 0.0160352 0 0 0 -1200.81 -1.59677e-06 -1.59678e-06 0 0 0 149.41 11.2549 94.4197 43.7354 -1 1 2 735 1.735 323.15 0 0 -0.0376 0.0161137 0.0161137 0 0 0 -1201.52 -1.59109e-06 -1.5911e-06 0 0 0 149.602 11.2764 94.5456 43.7803 -1 1 2 736 1.736 323.15 0 0 -0.03776 0.0161921 0.0161921 0 0 0 -1202.23 -1.58541e-06 -1.58542e-06 0 0 0 149.795 11.2979 94.6716 43.8251 -1 1 2 737 1.737 323.15 0 0 -0.03792 0.0162705 0.0162705 0 0 0 -1202.94 -1.57974e-06 -1.57974e-06 0 0 0 149.987 11.3194 94.7975 43.87 -1 1 2 738 1.738 323.15 0 0 -0.03808 0.0163489 0.0163489 0 0 0 -1203.64 -1.57406e-06 -1.57406e-06 0 0 0 150.179 11.3411 94.9235 43.9148 -1 1 2 739 1.739 323.15 0 0 -0.03824 0.0164273 0.0164273 0 0 0 -1204.35 -1.56838e-06 -1.56838e-06 0 0 0 150.372 11.3628 95.0496 43.9597 -1 1 2 740 1.74 323.15 0 0 -0.0384 0.0165058 0.0165058 0 0 0 -1205.06 -1.5627e-06 -1.5627e-06 0 0 0 150.565 11.3846 95.1757 44.0046 -1 1 2 741 1.741 323.15 0 0 -0.03856 0.0165842 0.0165842 0 0 0 -1205.76 -1.55702e-06 -1.55703e-06 0 0 0 150.758 11.4065 95.3018 44.0494 -1 1 2 742 1.742 323.15 0 0 -0.03872 0.0166626 0.0166626 0 0 0 -1206.47 -1.55134e-06 -1.55135e-06 0 0 0 150.951 11.4284 95.428 44.0943 -1 1 2 743 1.743 323.15 0 0 -0.03888 0.016741 0.016741 0 0 0 -1207.18 -1.54566e-06 -1.54567e-06 0 0 0 151.144 11.4504 95.5542 44.1391 -1 1 2 744 1.744 323.15 0 0 -0.03904 0.0168194 0.0168194 0 0 0 -1207.88 -1.53999e-06 -1.53999e-06 0 0 0 151.337 11.4725 95.6805 44.184 -1 1 2 745 1.745 323.15 0 0 -0.0392 0.0168979 0.0168979 0 0 0 -1208.59 -1.53431e-06 -1.53431e-06 0 0 0 151.53 11.4946 95.8068 44.2289 -1 1 2 746 1.746 323.15 0 0 -0.03936 0.0169763 0.0169763 0 0 0 -1209.29 -1.52863e-06 -1.52863e-06 0 0 0 151.724 11.5169 95.9332 44.2737 -1 1 2 747 1.747 323.15 0 0 -0.03952 0.0170547 0.0170547 0 0 0 -1210 -1.52295e-06 -1.52295e-06 0 0 0 151.917 11.5392 96.0595 44.3186 -1 1 2 748 1.748 323.15 0 0 -0.03968 0.0171331 0.0171331 0 0 0 -1210.7 -1.51727e-06 -1.51728e-06 0 0 0 152.111 11.5615 96.186 44.3635 -1 1 2 749 1.749 323.15 0 0 -0.03984 0.0172116 0.0172116 0 0 0 -1211.41 -1.51159e-06 -1.5116e-06 0 0 0 152.305 11.584 96.3124 44.4083 -1 1 2 750 1.75 323.15 0 0 -0.04 0.01729 0.01729 0 0 0 -1212.11 -1.50591e-06 -1.50592e-06 0 0 0 152.499 11.6065 96.4389 44.4532 -1 1 2 751 1.751 323.15 0 0 -0.04016 0.0173684 0.0173684 0 0 0 -1212.82 -1.50024e-06 -1.50024e-06 0 0 0 152.693 11.6291 96.5655 44.4981 -1 1 2 752 1.752 323.15 0 0 -0.04032 0.0174468 0.0174468 0 0 0 -1213.52 -1.49456e-06 -1.49456e-06 0 0 0 152.887 11.6517 96.6921 44.543 -1 1 2 753 1.753 323.15 0 0 -0.04048 0.0175253 0.0175253 0 0 0 -1214.23 -1.48888e-06 -1.48888e-06 0 0 0 153.081 11.6744 96.8187 44.5878 -1 1 2 754 1.754 323.15 0 0 -0.04064 0.0176037 0.0176037 0 0 0 -1214.93 -1.4832e-06 -1.4832e-06 0 0 0 153.275 11.6972 96.9453 44.6327 -1 1 2 755 1.755 323.15 0 0 -0.0408 0.0176821 0.0176821 0 0 0 -1215.64 -1.47752e-06 -1.47753e-06 0 0 0 153.47 11.7201 97.0721 44.6776 -1 1 2 756 1.756 323.15 0 0 -0.04096 0.0177605 0.0177605 0 0 0 -1216.34 -1.47184e-06 -1.47185e-06 0 0 0 153.664 11.743 97.1988 44.7224 -1 1 2 757 1.757 323.15 0 0 -0.04112 0.017839 0.017839 0 0 0 -1217.04 -1.46616e-06 -1.46617e-06 0 0 0 153.859 11.766 97.3256 44.7673 -1 1 2 758 1.758 323.15 0 0 -0.04128 0.0179174 0.0179174 0 0 0 -1217.75 -1.46049e-06 -1.46049e-06 0 0 0 154.054 11.7891 97.4524 44.8122 -1 1 2 759 1.759 323.15 0 0 -0.04144 0.0179958 0.0179958 0 0 0 -1218.45 -1.45481e-06 -1.45481e-06 0 0 0 154.249 11.8123 97.5793 44.8571 -1 1 2 760 1.76 323.15 0 0 -0.0416 0.0180742 0.0180742 0 0 0 -1219.15 -1.44913e-06 -1.44913e-06 0 0 0 154.444 11.8355 97.7062 44.9019 -1 1 2 761 1.761 323.15 0 0 -0.04176 0.0181527 0.0181527 0 0 0 -1219.86 -1.44345e-06 -1.44345e-06 0 0 0 154.639 11.8588 97.8331 44.9468 -1 1 2 762 1.762 323.15 0 0 -0.04192 0.0182311 0.0182311 0 0 0 -1220.56 -1.43777e-06 -1.43778e-06 0 0 0 154.834 11.8822 97.9601 44.9917 -1 1 2 763 1.763 323.15 0 0 -0.04208 0.0183095 0.0183095 0 0 0 -1221.26 -1.43209e-06 -1.4321e-06 0 0 0 155.029 11.9056 98.0871 45.0366 -1 1 2 764 1.764 323.15 0 0 -0.04224 0.018388 0.018388 0 0 0 -1221.96 -1.42641e-06 -1.42642e-06 0 0 0 155.225 11.9291 98.2142 45.0815 -1 1 2 765 1.765 323.15 0 0 -0.0424 0.0184664 0.0184664 0 0 0 -1222.67 -1.42074e-06 -1.42074e-06 0 0 0 155.42 11.9527 98.3413 45.1263 -1 1 2 766 1.766 323.15 0 0 -0.04256 0.0185448 0.0185448 0 0 0 -1223.37 -1.41506e-06 -1.41506e-06 0 0 0 155.616 11.9764 98.4685 45.1712 -1 1 2 767 1.767 323.15 0 0 -0.04272 0.0186232 0.0186232 0 0 0 -1224.07 -1.40938e-06 -1.40938e-06 0 0 0 155.812 12.0001 98.5957 45.2161 -1 1 2 768 1.768 323.15 0 0 -0.04288 0.0187017 0.0187017 0 0 0 -1224.77 -1.4037e-06 -1.4037e-06 0 0 0 156.008 12.0239 98.7229 45.261 -1 1 2 769 1.769 323.15 0 0 -0.04304 0.0187801 0.0187801 0 0 0 -1225.47 -1.39802e-06 -1.39803e-06 0 0 0 156.204 12.0477 98.8502 45.3059 -1 1 2 770 1.77 323.15 0 0 -0.0432 0.0188585 0.0188585 0 0 0 -1226.18 -1.39234e-06 -1.39235e-06 0 0 0 156.4 12.0717 98.9775 45.3507 -1 1 2 771 1.771 323.15 0 0 -0.04336 0.018937 0.018937 0 0 0 -1226.88 -1.38667e-06 -1.38667e-06 0 0 0 156.596 12.0957 99.1048 45.3956 -1 1 2 772 1.772 323.15 0 0 -0.04352 0.0190154 0.0190154 0 0 0 -1227.58 -1.38099e-06 -1.38099e-06 0 0 0 156.792 12.1198 99.2322 45.4405 -1 1 2 773 1.773 323.15 0 0 -0.04368 0.0190938 0.0190938 0 0 0 -1228.28 -1.37531e-06 -1.37531e-06 0 0 0 156.989 12.1439 99.3596 45.4854 -1 1 2 774 1.774 323.15 0 0 -0.04384 0.0191723 0.0191723 0 0 0 -1228.98 -1.36963e-06 -1.36963e-06 0 0 0 157.186 12.1682 99.4871 45.5303 -1 1 2 775 1.775 323.15 0 0 -0.044 0.0192507 0.0192507 0 0 0 -1229.68 -1.36395e-06 -1.36396e-06 0 0 0 157.382 12.1925 99.6146 45.5752 -1 1 2 776 1.776 323.15 0 0 -0.04416 0.0193291 0.0193291 0 0 0 -1230.38 -1.35827e-06 -1.35828e-06 0 0 0 157.579 12.2168 99.7421 45.6201 -1 1 2 777 1.777 323.15 0 0 -0.04432 0.0194076 0.0194076 0 0 0 -1231.08 -1.35259e-06 -1.3526e-06 0 0 0 157.776 12.2413 99.8697 45.665 -1 1 2 778 1.778 323.15 0 0 -0.04448 0.019486 0.019486 0 0 0 -1231.78 -1.34692e-06 -1.34692e-06 0 0 0 157.973 12.2658 99.9974 45.7098 -1 1 2 779 1.779 323.15 0 0 -0.04464 0.0195644 0.0195644 0 0 0 -1232.48 -1.34124e-06 -1.34124e-06 0 0 0 158.17 12.2904 100.125 45.7547 -1 1 2 780 1.78 323.15 0 0 -0.0448 0.0196429 0.0196429 0 0 0 -1233.18 -1.33556e-06 -1.33556e-06 0 0 0 158.367 12.315 100.253 45.7996 -1 1 2 781 1.781 323.15 0 0 -0.04496 0.0197213 0.0197213 0 0 0 -1233.88 -1.32988e-06 -1.32988e-06 0 0 0 158.565 12.3398 100.38 45.8445 -1 1 2 782 1.782 323.15 0 0 -0.04512 0.0197997 0.0197997 0 0 0 -1234.58 -1.3242e-06 -1.32421e-06 0 0 0 158.762 12.3646 100.508 45.8894 -1 1 2 783 1.783 323.15 0 0 -0.04528 0.0198782 0.0198782 0 0 0 -1235.28 -1.31852e-06 -1.31853e-06 0 0 0 158.96 12.3894 100.636 45.9343 -1 1 2 784 1.784 323.15 0 0 -0.04544 0.0199566 0.0199566 0 0 0 -1235.98 -1.31284e-06 -1.31285e-06 0 0 0 159.158 12.4144 100.764 45.9792 -1 1 2 785 1.785 323.15 0 0 -0.0456 0.0200351 0.0200351 0 0 0 -1236.68 -1.30717e-06 -1.30717e-06 0 0 0 159.355 12.4394 100.892 46.0241 -1 1 2 786 1.786 323.15 0 0 -0.04576 0.0201135 0.0201135 0 0 0 -1237.38 -1.30149e-06 -1.30149e-06 0 0 0 159.553 12.4645 101.02 46.069 -1 1 2 787 1.787 323.15 0 0 -0.04592 0.0201919 0.0201919 0 0 0 -1238.08 -1.29581e-06 -1.29581e-06 0 0 0 159.751 12.4896 101.148 46.1139 -1 1 2 788 1.788 323.15 0 0 -0.04608 0.0202704 0.0202704 0 0 0 -1238.78 -1.29013e-06 -1.29013e-06 0 0 0 159.949 12.5149 101.276 46.1588 -1 1 2 789 1.789 323.15 0 0 -0.04624 0.0203488 0.0203488 0 0 0 -1239.48 -1.28445e-06 -1.28446e-06 0 0 0 160.148 12.5402 101.404 46.2037 -1 1 2 790 1.79 323.15 0 0 -0.0464 0.0204272 0.0204272 0 0 0 -1240.17 -1.27877e-06 -1.27878e-06 0 0 0 160.346 12.5656 101.532 46.2486 -1 1 2 791 1.791 323.15 0 0 -0.04656 0.0205057 0.0205057 0 0 0 -1240.87 -1.27309e-06 -1.2731e-06 0 0 0 160.545 12.591 101.66 46.2935 -1 1 2 792 1.792 323.15 0 0 -0.04672 0.0205841 0.0205841 0 0 0 -1241.57 -1.26742e-06 -1.26742e-06 0 0 0 160.743 12.6165 101.788 46.3384 -1 1 2 793 1.793 323.15 0 0 -0.04688 0.0206626 0.0206626 0 0 0 -1242.27 -1.26174e-06 -1.26174e-06 0 0 0 160.942 12.6421 101.916 46.3833 -1 1 2 794 1.794 323.15 0 0 -0.04704 0.020741 0.020741 0 0 0 -1242.97 -1.25606e-06 -1.25606e-06 0 0 0 161.141 12.6678 102.045 46.4282 -1 1 2 795 1.795 323.15 0 0 -0.0472 0.0208194 0.0208194 0 0 0 -1243.66 -1.25038e-06 -1.25038e-06 0 0 0 161.34 12.6935 102.173 46.4731 -1 1 2 796 1.796 323.15 0 0 -0.04736 0.0208979 0.0208979 0 0 0 -1244.36 -1.2447e-06 -1.24471e-06 0 0 0 161.539 12.7193 102.301 46.518 -1 1 2 797 1.797 323.15 0 0 -0.04752 0.0209763 0.0209763 0 0 0 -1245.06 -1.23902e-06 -1.23903e-06 0 0 0 161.738 12.7452 102.43 46.5629 -1 1 2 798 1.798 323.15 0 0 -0.04768 0.0210548 0.0210548 0 0 0 -1245.75 -1.23334e-06 -1.23335e-06 0 0 0 161.937 12.7711 102.558 46.6078 -1 1 2 799 1.799 323.15 0 0 -0.04784 0.0211332 0.0211332 0 0 0 -1246.45 -1.22767e-06 -1.22767e-06 0 0 0 162.136 12.7972 102.687 46.6527 -1 1 2 800 1.8 323.15 0 0 -0.048 0.0212117 0.0212117 0 0 0 -1247.15 -1.22199e-06 -1.22199e-06 0 0 0 162.336 12.8232 102.815 46.6976 -1 1 2 801 1.801 323.15 0 0 -0.04816 0.0212901 0.0212901 0 0 0 -1247.85 -1.21631e-06 -1.21631e-06 0 0 0 162.536 12.8494 102.944 46.7425 -1 1 2 802 1.802 323.15 0 0 -0.04832 0.0213685 0.0213685 0 0 0 -1248.54 -1.21063e-06 -1.21063e-06 0 0 0 162.735 12.8756 103.072 46.7874 -1 1 2 803 1.803 323.15 0 0 -0.04848 0.021447 0.021447 0 0 0 -1249.24 -1.20495e-06 -1.20496e-06 0 0 0 162.935 12.9019 103.201 46.8323 -1 1 2 804 1.804 323.15 0 0 -0.04864 0.0215254 0.0215254 0 0 0 -1249.93 -1.19927e-06 -1.19928e-06 0 0 0 163.135 12.9283 103.329 46.8772 -1 1 2 805 1.805 323.15 0 0 -0.0488 0.0216039 0.0216039 0 0 0 -1250.63 -1.19359e-06 -1.1936e-06 0 0 0 163.335 12.9548 103.458 46.9221 -1 1 2 806 1.806 323.15 0 0 -0.04896 0.0216823 0.0216823 0 0 0 -1251.33 -1.18792e-06 -1.18792e-06 0 0 0 163.535 12.9813 103.587 46.967 -1 1 2 807 1.807 323.15 0 0 -0.04912 0.0217608 0.0217608 0 0 0 -1252.02 -1.18224e-06 -1.18224e-06 0 0 0 163.735 13.0079 103.716 47.0119 -1 1 2 808 1.808 323.15 0 0 -0.04928 0.0218392 0.0218392 0 0 0 -1252.72 -1.17656e-06 -1.17656e-06 0 0 0 163.936 13.0346 103.844 47.0569 -1 1 2 809 1.809 323.15 0 0 -0.04944 0.0219176 0.0219176 0 0 0 -1253.41 -1.17088e-06 -1.17089e-06 0 0 0 164.136 13.0613 103.973 47.1018 -1 1 2 810 1.81 323.15 0 0 -0.0496 0.0219961 0.0219961 0 0 0 -1254.11 -1.1652e-06 -1.16521e-06 0 0 0 164.337 13.0881 104.102 47.1467 -1 1 2 811 1.811 323.15 0 0 -0.04976 0.0220745 0.0220745 0 0 0 -1254.8 -1.15952e-06 -1.15953e-06 0 0 0 164.538 13.115 104.231 47.1916 -1 1 2 812 1.812 323.15 0 0 -0.04992 0.022153 0.022153 0 0 0 -1255.5 -1.15385e-06 -1.15385e-06 0 0 0 164.738 13.1419 104.36 47.2365 -1 1 2 813 1.813 323.15 0 0 -0.05008 0.0222314 0.0222314 0 0 0 -1256.19 -1.14817e-06 -1.14817e-06 0 0 0 164.939 13.169 104.489 47.2814 -1 1 2 814 1.814 323.15 0 0 -0.05024 0.0223099 0.0223099 0 0 0 -1256.89 -1.14249e-06 -1.14249e-06 0 0 0 165.14 13.1961 104.618 47.3263 -1 1 2 815 1.815 323.15 0 0 -0.0504 0.0223883 0.0223883 0 0 0 -1257.58 -1.13681e-06 -1.13681e-06 0 0 0 165.342 13.2232 104.747 47.3712 -1 1 2 816 1.816 323.15 0 0 -0.05056 0.0224668 0.0224668 0 0 0 -1258.28 -1.13113e-06 -1.13114e-06 0 0 0 165.543 13.2505 104.876 47.4162 -1 1 2 817 1.817 323.15 0 0 -0.05072 0.0225452 0.0225452 0 0 0 -1258.97 -1.12545e-06 -1.12546e-06 0 0 0 165.744 13.2778 105.005 47.4611 -1 1 2 818 1.818 323.15 0 0 -0.05088 0.0226237 0.0226237 0 0 0 -1259.66 -1.11977e-06 -1.11978e-06 0 0 0 165.946 13.3052 105.135 47.506 -1 1 2 819 1.819 323.15 0 0 -0.05104 0.0227021 0.0227021 0 0 0 -1260.36 -1.1141e-06 -1.1141e-06 0 0 0 166.147 13.3326 105.264 47.5509 -1 1 2 820 1.82 323.15 0 0 -0.0512 0.0227806 0.0227806 0 0 0 -1261.05 -1.10842e-06 -1.10842e-06 0 0 0 166.349 13.3601 105.393 47.5958 -1 1 2 821 1.821 323.15 0 0 -0.05136 0.022859 0.022859 0 0 0 -1261.75 -1.10274e-06 -1.10274e-06 0 0 0 166.551 13.3877 105.522 47.6408 -1 1 2 822 1.822 323.15 0 0 -0.05152 0.0229375 0.0229375 0 0 0 -1262.44 -1.09706e-06 -1.09706e-06 0 0 0 166.753 13.4154 105.652 47.6857 -1 1 2 823 1.823 323.15 0 0 -0.05168 0.0230159 0.0230159 0 0 0 -1263.13 -1.09138e-06 -1.09139e-06 0 0 0 166.955 13.4432 105.781 47.7306 -1 1 2 824 1.824 323.15 0 0 -0.05184 0.0230944 0.0230944 0 0 0 -1263.82 -1.0857e-06 -1.08571e-06 0 0 0 167.157 13.471 105.911 47.7755 -1 1 2 825 1.825 323.15 0 0 -0.052 0.0231728 0.0231728 0 0 0 -1264.52 -1.08002e-06 -1.08003e-06 0 0 0 167.359 13.4989 106.04 47.8204 -1 1 2 826 1.826 323.15 0 0 -0.05216 0.0232513 0.0232513 0 0 0 -1265.21 -1.07435e-06 -1.07435e-06 0 0 0 167.562 13.5268 106.17 47.8654 -1 1 2 827 1.827 323.15 0 0 -0.05232 0.0233297 0.0233297 0 0 0 -1265.9 -1.06867e-06 -1.06867e-06 0 0 0 167.764 13.5548 106.299 47.9103 -1 1 2 828 1.828 323.15 0 0 -0.05248 0.0234082 0.0234082 0 0 0 -1266.6 -1.06299e-06 -1.06299e-06 0 0 0 167.967 13.5829 106.429 47.9552 -1 1 2 829 1.829 323.15 0 0 -0.05264 0.0234866 0.0234866 0 0 0 -1267.29 -1.05731e-06 -1.05732e-06 0 0 0 168.169 13.6111 106.558 48.0001 -1 1 2 830 1.83 323.15 0 0 -0.0528 0.0235651 0.0235651 0 0 0 -1267.98 -1.05163e-06 -1.05164e-06 0 0 0 168.372 13.6394 106.688 48.0451 -1 1 2 831 1.831 323.15 0 0 -0.05296 0.0236435 0.0236435 0 0 0 -1268.67 -1.04595e-06 -1.04596e-06 0 0 0 168.575 13.6677 106.818 48.09 -1 1 2 832 1.832 323.15 0 0 -0.05312 0.023722 0.023722 0 0 0 -1269.36 -1.04028e-06 -1.04028e-06 0 0 0 168.778 13.6961 106.947 48.1349 -1 1 2 833 1.833 323.15 0 0 -0.05328 0.0238004 0.0238004 0 0 0 -1270.06 -1.0346e-06 -1.0346e-06 0 0 0 168.981 13.7245 107.077 48.1798 -1 1 2 834 1.834 323.15 0 0 -0.05344 0.0238789 0.0238789 0 0 0 -1270.75 -1.02892e-06 -1.02892e-06 0 0 0 169.185 13.7531 107.207 48.2248 -1 1 2 835 1.835 323.15 0 0 -0.0536 0.0239573 0.0239573 0 0 0 -1271.44 -1.02324e-06 -1.02324e-06 0 0 0 169.388 13.7817 107.337 48.2697 -1 1 2 836 1.836 323.15 0 0 -0.05376 0.0240358 0.0240358 0 0 0 -1272.13 -1.01756e-06 -1.01757e-06 0 0 0 169.592 13.8103 107.467 48.3146 -1 1 2 837 1.837 323.15 0 0 -0.05392 0.0241143 0.0241143 0 0 0 -1272.82 -1.01188e-06 -1.01189e-06 0 0 0 169.795 13.8391 107.597 48.3596 -1 1 2 838 1.838 323.15 0 0 -0.05408 0.0241927 0.0241927 0 0 0 -1273.51 -1.0062e-06 -1.00621e-06 0 0 0 169.999 13.8679 107.726 48.4045 -1 1 2 839 1.839 323.15 0 0 -0.05424 0.0242712 0.0242712 0 0 0 -1274.2 -1.00052e-06 -1.00053e-06 0 0 0 170.203 13.8968 107.856 48.4494 -1 1 2 840 1.84 323.15 0 0 -0.0544 0.0243496 0.0243496 0 0 0 -1274.89 -9.94846e-07 -9.94852e-07 0 0 0 170.407 13.9257 107.987 48.4943 -1 1 2 841 1.841 323.15 0 0 -0.05456 0.0244281 0.0244281 0 0 0 -1275.58 -9.89167e-07 -9.89173e-07 0 0 0 170.611 13.9548 108.117 48.5393 -1 1 2 842 1.842 323.15 0 0 -0.05472 0.0245065 0.0245065 0 0 0 -1276.28 -9.83488e-07 -9.83494e-07 0 0 0 170.815 13.9839 108.247 48.5842 -1 1 2 843 1.843 323.15 0 0 -0.05488 0.024585 0.024585 0 0 0 -1276.97 -9.7781e-07 -9.77816e-07 0 0 0 171.019 14.0131 108.377 48.6291 -1 1 2 844 1.844 323.15 0 0 -0.05504 0.0246634 0.0246634 0 0 0 -1277.66 -9.72131e-07 -9.72137e-07 0 0 0 171.223 14.0423 108.507 48.6741 -1 1 2 845 1.845 323.15 0 0 -0.0552 0.0247419 0.0247419 0 0 0 -1278.35 -9.66453e-07 -9.66459e-07 0 0 0 171.428 14.0716 108.637 48.719 -1 1 2 846 1.846 323.15 0 0 -0.05536 0.0248204 0.0248204 0 0 0 -1279.04 -9.60775e-07 -9.6078e-07 0 0 0 171.632 14.101 108.768 48.764 -1 1 2 847 1.847 323.15 0 0 -0.05552 0.0248988 0.0248988 0 0 0 -1279.72 -9.55097e-07 -9.55102e-07 0 0 0 171.837 14.1305 108.898 48.8089 -1 1 2 848 1.848 323.15 0 0 -0.05568 0.0249773 0.0249773 0 0 0 -1280.41 -9.49418e-07 -9.49423e-07 0 0 0 172.042 14.16 109.028 48.8538 -1 1 2 849 1.849 323.15 0 0 -0.05584 0.0250557 0.0250557 0 0 0 -1281.1 -9.43739e-07 -9.43744e-07 0 0 0 172.247 14.1896 109.159 48.8988 -1 1 2 850 1.85 323.15 0 0 -0.056 0.0251342 0.0251342 0 0 0 -1281.79 -9.3806e-07 -9.38066e-07 0 0 0 172.452 14.2193 109.289 48.9437 -1 1 2 851 1.851 323.15 0 0 -0.05616 0.0252127 0.0252127 0 0 0 -1282.48 -9.32381e-07 -9.32387e-07 0 0 0 172.657 14.2491 109.419 48.9886 -1 1 2 852 1.852 323.15 0 0 -0.05632 0.0252911 0.0252911 0 0 0 -1283.17 -9.26703e-07 -9.26708e-07 0 0 0 172.862 14.2789 109.55 49.0336 -1 1 2 853 1.853 323.15 0 0 -0.05648 0.0253696 0.0253696 0 0 0 -1283.86 -9.21024e-07 -9.2103e-07 0 0 0 173.068 14.3088 109.68 49.0785 -1 1 2 854 1.854 323.15 0 0 -0.05664 0.025448 0.025448 0 0 0 -1284.55 -9.15345e-07 -9.15351e-07 0 0 0 173.273 14.3388 109.811 49.1235 -1 1 2 855 1.855 323.15 0 0 -0.0568 0.0255265 0.0255265 0 0 0 -1285.24 -9.09667e-07 -9.09673e-07 0 0 0 173.479 14.3688 109.942 49.1684 -1 1 2 856 1.856 323.15 0 0 -0.05696 0.025605 0.025605 0 0 0 -1285.93 -9.03989e-07 -9.03994e-07 0 0 0 173.684 14.3989 110.072 49.2133 -1 1 2 857 1.857 323.15 0 0 -0.05712 0.0256834 0.0256834 0 0 0 -1286.61 -8.98311e-07 -8.98316e-07 0 0 0 173.89 14.4291 110.203 49.2583 -1 1 2 858 1.858 323.15 0 0 -0.05728 0.0257619 0.0257619 0 0 0 -1287.3 -8.92632e-07 -8.92638e-07 0 0 0 174.096 14.4594 110.334 49.3032 -1 1 2 859 1.859 323.15 0 0 -0.05744 0.0258403 0.0258403 0 0 0 -1287.99 -8.86954e-07 -8.8696e-07 0 0 0 174.302 14.4897 110.464 49.3482 -1 1 2 860 1.86 323.15 0 0 -0.0576 0.0259188 0.0259188 0 0 0 -1288.68 -8.81275e-07 -8.81281e-07 0 0 0 174.508 14.5201 110.595 49.3931 -1 1 2 861 1.861 323.15 0 0 -0.05776 0.0259973 0.0259973 0 0 0 -1289.37 -8.75597e-07 -8.75602e-07 0 0 0 174.715 14.5506 110.726 49.4381 -1 1 2 862 1.862 323.15 0 0 -0.05792 0.0260757 0.0260757 0 0 0 -1290.05 -8.69919e-07 -8.69924e-07 0 0 0 174.921 14.5811 110.857 49.483 -1 1 2 863 1.863 323.15 0 0 -0.05808 0.0261542 0.0261542 0 0 0 -1290.74 -8.6424e-07 -8.64245e-07 0 0 0 175.127 14.6117 110.988 49.528 -1 1 2 864 1.864 323.15 0 0 -0.05824 0.0262327 0.0262327 0 0 0 -1291.43 -8.58562e-07 -8.58567e-07 0 0 0 175.334 14.6424 111.119 49.5729 -1 1 2 865 1.865 323.15 0 0 -0.0584 0.0263111 0.0263111 0 0 0 -1292.12 -8.52883e-07 -8.52888e-07 0 0 0 175.541 14.6732 111.25 49.6179 -1 1 2 866 1.866 323.15 0 0 -0.05856 0.0263896 0.0263896 0 0 0 -1292.8 -8.47204e-07 -8.47209e-07 0 0 0 175.747 14.704 111.381 49.6628 -1 1 2 867 1.867 323.15 0 0 -0.05872 0.026468 0.026468 0 0 0 -1293.49 -8.41526e-07 -8.41531e-07 0 0 0 175.954 14.7349 111.512 49.7077 -1 1 2 868 1.868 323.15 0 0 -0.05888 0.0265465 0.0265465 0 0 0 -1294.18 -8.35847e-07 -8.35852e-07 0 0 0 176.161 14.7659 111.643 49.7527 -1 1 2 869 1.869 323.15 0 0 -0.05904 0.026625 0.026625 0 0 0 -1294.86 -8.30169e-07 -8.30174e-07 0 0 0 176.368 14.7969 111.774 49.7976 -1 1 2 870 1.87 323.15 0 0 -0.0592 0.0267034 0.0267034 0 0 0 -1295.55 -8.2449e-07 -8.24495e-07 0 0 0 176.576 14.828 111.905 49.8426 -1 1 2 871 1.871 323.15 0 0 -0.05936 0.0267819 0.0267819 0 0 0 -1296.23 -8.18812e-07 -8.18817e-07 0 0 0 176.783 14.8592 112.036 49.8876 -1 1 2 872 1.872 323.15 0 0 -0.05952 0.0268604 0.0268604 0 0 0 -1296.92 -8.13133e-07 -8.13138e-07 0 0 0 176.991 14.8905 112.168 49.9325 -1 1 2 873 1.873 323.15 0 0 -0.05968 0.0269388 0.0269388 0 0 0 -1297.61 -8.07455e-07 -8.0746e-07 0 0 0 177.198 14.9218 112.299 49.9775 -1 1 2 874 1.874 323.15 0 0 -0.05984 0.0270173 0.0270173 0 0 0 -1298.29 -8.01777e-07 -8.01782e-07 0 0 0 177.406 14.9532 112.43 50.0224 -1 1 2 875 1.875 323.15 0 0 -0.06 0.0270958 0.0270958 0 0 0 -1298.98 -7.96098e-07 -7.96103e-07 0 0 0 177.614 14.9847 112.561 50.0674 -1 1 2 876 1.876 323.15 0 0 -0.06016 0.0271742 0.0271742 0 0 0 -1299.66 -7.90419e-07 -7.90425e-07 0 0 0 177.821 15.0163 112.693 50.1123 -1 1 2 877 1.877 323.15 0 0 -0.06032 0.0272527 0.0272527 0 0 0 -1300.35 -7.84741e-07 -7.84746e-07 0 0 0 178.029 15.0479 112.824 50.1573 -1 1 2 878 1.878 323.15 0 0 -0.06048 0.0273312 0.0273312 0 0 0 -1301.03 -7.79062e-07 -7.79067e-07 0 0 0 178.238 15.0796 112.956 50.2022 -1 1 2 879 1.879 323.15 0 0 -0.06064 0.0274096 0.0274096 0 0 0 -1301.72 -7.73384e-07 -7.73389e-07 0 0 0 178.446 15.1113 113.087 50.2472 -1 1 2 880 1.88 323.15 0 0 -0.0608 0.0274881 0.0274881 0 0 0 -1302.41 -7.67706e-07 -7.67711e-07 0 0 0 178.654 15.1432 113.219 50.2921 -1 1 2 881 1.881 323.15 0 0 -0.06096 0.0275666 0.0275666 0 0 0 -1303.09 -7.62028e-07 -7.62033e-07 0 0 0 178.863 15.1751 113.35 50.3371 -1 1 2 882 1.882 323.15 0 0 -0.06112 0.027645 0.027645 0 0 0 -1303.77 -7.56349e-07 -7.56354e-07 0 0 0 179.071 15.2071 113.482 50.3821 -1 1 2 883 1.883 323.15 0 0 -0.06128 0.0277235 0.0277235 0 0 0 -1304.46 -7.50671e-07 -7.50676e-07 0 0 0 179.28 15.2391 113.614 50.427 -1 1 2 884 1.884 323.15 0 0 -0.06144 0.027802 0.027802 0 0 0 -1305.14 -7.44992e-07 -7.44997e-07 0 0 0 179.488 15.2712 113.745 50.472 -1 1 2 885 1.885 323.15 0 0 -0.0616 0.0278805 0.0278805 0 0 0 -1305.83 -7.39314e-07 -7.39318e-07 0 0 0 179.697 15.3034 113.877 50.5169 -1 1 2 886 1.886 323.15 0 0 -0.06176 0.0279589 0.0279589 0 0 0 -1306.51 -7.33635e-07 -7.33639e-07 0 0 0 179.906 15.3357 114.009 50.5619 -1 1 2 887 1.887 323.15 0 0 -0.06192 0.0280374 0.0280374 0 0 0 -1307.2 -7.27957e-07 -7.27962e-07 0 0 0 180.115 15.3681 114.141 50.6069 -1 1 2 888 1.888 323.15 0 0 -0.06208 0.0281159 0.0281159 0 0 0 -1307.88 -7.22277e-07 -7.22282e-07 0 0 0 180.325 15.4005 114.272 50.6518 -1 1 2 889 1.889 323.15 0 0 -0.06224 0.0281943 0.0281943 0 0 0 -1308.56 -7.16599e-07 -7.16604e-07 0 0 0 180.534 15.4329 114.404 50.6968 -1 1 2 890 1.89 323.15 0 0 -0.0624 0.0282728 0.0282728 0 0 0 -1309.25 -7.1092e-07 -7.10925e-07 0 0 0 180.743 15.4655 114.536 50.7417 -1 1 2 891 1.891 323.15 0 0 -0.06256 0.0283513 0.0283513 0 0 0 -1309.93 -7.05242e-07 -7.05246e-07 0 0 0 180.953 15.4981 114.668 50.7867 -1 1 2 892 1.892 323.15 0 0 -0.06272 0.0284298 0.0284298 0 0 0 -1310.61 -6.99563e-07 -6.99568e-07 0 0 0 181.163 15.5308 114.8 50.8317 -1 1 2 893 1.893 323.15 0 0 -0.06288 0.0285082 0.0285082 0 0 0 -1311.3 -6.93885e-07 -6.9389e-07 0 0 0 181.372 15.5636 114.932 50.8766 -1 1 2 894 1.894 323.15 0 0 -0.06304 0.0285867 0.0285867 0 0 0 -1311.98 -6.88206e-07 -6.88211e-07 0 0 0 181.582 15.5965 115.064 50.9216 -1 1 2 895 1.895 323.15 0 0 -0.0632 0.0286652 0.0286652 0 0 0 -1312.66 -6.82527e-07 -6.82532e-07 0 0 0 181.792 15.6294 115.196 50.9666 -1 1 2 896 1.896 323.15 0 0 -0.06336 0.0287436 0.0287436 0 0 0 -1313.35 -6.76849e-07 -6.76853e-07 0 0 0 182.002 15.6624 115.328 51.0115 -1 1 2 897 1.897 323.15 0 0 -0.06352 0.0288221 0.0288221 0 0 0 -1314.03 -6.7117e-07 -6.71175e-07 0 0 0 182.212 15.6954 115.461 51.0565 -1 1 2 898 1.898 323.15 0 0 -0.06368 0.0289006 0.0289006 0 0 0 -1314.71 -6.65492e-07 -6.65496e-07 0 0 0 182.423 15.7285 115.593 51.1015 -1 1 2 899 1.899 323.15 0 0 -0.06384 0.0289791 0.0289791 0 0 0 -1315.39 -6.59813e-07 -6.59817e-07 0 0 0 182.633 15.7618 115.725 51.1464 -1 1 2 900 1.9 323.15 0 0 -0.064 0.0290575 0.0290575 0 0 0 -1316.08 -6.54135e-07 -6.54139e-07 0 0 0 182.844 15.795 115.857 51.1914 -1 1 2 901 1.901 323.15 0 0 -0.06416 0.029136 0.029136 0 0 0 -1316.76 -6.48456e-07 -6.4846e-07 0 0 0 183.054 15.8284 115.99 51.2364 -1 1 2 902 1.902 323.15 0 0 -0.06432 0.0292145 0.0292145 0 0 0 -1317.44 -6.42777e-07 -6.42782e-07 0 0 0 183.265 15.8618 116.122 51.2814 -1 1 2 903 1.903 323.15 0 0 -0.06448 0.029293 0.029293 0 0 0 -1318.12 -6.37099e-07 -6.37103e-07 0 0 0 183.476 15.8953 116.254 51.3263 -1 1 2 904 1.904 323.15 0 0 -0.06464 0.0293714 0.0293714 0 0 0 -1318.8 -6.3142e-07 -6.31424e-07 0 0 0 183.687 15.9289 116.387 51.3713 -1 1 2 905 1.905 323.15 0 0 -0.0648 0.0294499 0.0294499 0 0 0 -1319.49 -6.25742e-07 -6.25746e-07 0 0 0 183.898 15.9625 116.519 51.4163 -1 1 2 906 1.906 323.15 0 0 -0.06496 0.0295284 0.0295284 0 0 0 -1320.17 -6.20063e-07 -6.20067e-07 0 0 0 184.109 15.9962 116.652 51.4612 -1 1 2 907 1.907 323.15 0 0 -0.06512 0.0296069 0.0296069 0 0 0 -1320.85 -6.14384e-07 -6.14389e-07 0 0 0 184.32 16.03 116.784 51.5062 -1 1 2 908 1.908 323.15 0 0 -0.06528 0.0296854 0.0296854 0 0 0 -1321.53 -6.08706e-07 -6.0871e-07 0 0 0 184.532 16.0638 116.917 51.5512 -1 1 2 909 1.909 323.15 0 0 -0.06544 0.0297638 0.0297638 0 0 0 -1322.21 -6.03027e-07 -6.03032e-07 0 0 0 184.743 16.0978 117.049 51.5962 -1 1 2 910 1.91 323.15 0 0 -0.0656 0.0298423 0.0298423 0 0 0 -1322.89 -5.97349e-07 -5.97353e-07 0 0 0 184.955 16.1317 117.182 51.6411 -1 1 2 911 1.911 323.15 0 0 -0.06576 0.0299208 0.0299208 0 0 0 -1323.57 -5.9167e-07 -5.91674e-07 0 0 0 185.167 16.1658 117.315 51.6861 -1 1 2 912 1.912 323.15 0 0 -0.06592 0.0299993 0.0299993 0 0 0 -1324.25 -5.85992e-07 -5.85995e-07 0 0 0 185.378 16.2 117.447 51.7311 -1 1 2 913 1.913 323.15 0 0 -0.06608 0.0300777 0.0300777 0 0 0 -1324.93 -5.80313e-07 -5.80317e-07 0 0 0 185.59 16.2342 117.58 51.7761 -1 1 2 914 1.914 323.15 0 0 -0.06624 0.0301562 0.0301562 0 0 0 -1325.62 -5.74634e-07 -5.74638e-07 0 0 0 185.802 16.2684 117.713 51.821 -1 1 2 915 1.915 323.15 0 0 -0.0664 0.0302347 0.0302347 0 0 0 -1326.3 -5.68956e-07 -5.6896e-07 0 0 0 186.015 16.3028 117.846 51.866 -1 1 2 916 1.916 323.15 0 0 -0.06656 0.0303132 0.0303132 0 0 0 -1326.98 -5.63278e-07 -5.63282e-07 0 0 0 186.227 16.3372 117.979 51.911 -1 1 2 917 1.917 323.15 0 0 -0.06672 0.0303917 0.0303917 0 0 0 -1327.66 -5.57599e-07 -5.57603e-07 0 0 0 186.439 16.3717 118.111 51.956 -1 1 2 918 1.918 323.15 0 0 -0.06688 0.0304701 0.0304701 0 0 0 -1328.34 -5.51921e-07 -5.51925e-07 0 0 0 186.652 16.4063 118.244 52.001 -1 1 2 919 1.919 323.15 0 0 -0.06704 0.0305486 0.0305486 0 0 0 -1329.02 -5.46242e-07 -5.46246e-07 0 0 0 186.864 16.4409 118.377 52.0459 -1 1 2 920 1.92 323.15 0 0 -0.0672 0.0306271 0.0306271 0 0 0 -1329.7 -5.40563e-07 -5.40568e-07 0 0 0 187.077 16.4757 118.51 52.0909 -1 1 2 921 1.921 323.15 0 0 -0.06736 0.0307056 0.0307056 0 0 0 -1330.37 -5.34884e-07 -5.34889e-07 0 0 0 187.29 16.5104 118.643 52.1359 -1 1 2 922 1.922 323.15 0 0 -0.06752 0.0307841 0.0307841 0 0 0 -1331.05 -5.29206e-07 -5.2921e-07 0 0 0 187.503 16.5453 118.776 52.1809 -1 1 2 923 1.923 323.15 0 0 -0.06768 0.0308625 0.0308625 0 0 0 -1331.73 -5.23528e-07 -5.23532e-07 0 0 0 187.716 16.5802 118.91 52.2259 -1 1 2 924 1.924 323.15 0 0 -0.06784 0.030941 0.030941 0 0 0 -1332.41 -5.17849e-07 -5.17854e-07 0 0 0 187.929 16.6152 119.043 52.2709 -1 1 2 925 1.925 323.15 0 0 -0.068 0.0310195 0.0310195 0 0 0 -1333.09 -5.1217e-07 -5.12175e-07 0 0 0 188.142 16.6503 119.176 52.3158 -1 1 2 926 1.926 323.15 0 0 -0.06816 0.031098 0.031098 0 0 0 -1333.77 -5.06491e-07 -5.06496e-07 0 0 0 188.355 16.6855 119.309 52.3608 -1 1 2 927 1.927 323.15 0 0 -0.06832 0.0311765 0.0311765 0 0 0 -1334.45 -5.00812e-07 -5.00817e-07 0 0 0 188.569 16.7207 119.442 52.4058 -1 1 2 928 1.928 323.15 0 0 -0.06848 0.0312549 0.0312549 0 0 0 -1335.13 -4.95134e-07 -4.95139e-07 0 0 0 188.782 16.756 119.576 52.4508 -1 1 2 929 1.929 323.15 0 0 -0.06864 0.0313334 0.0313334 0 0 0 -1335.81 -4.89456e-07 -4.89461e-07 0 0 0 188.996 16.7913 119.709 52.4958 -1 1 2 930 1.93 323.15 0 0 -0.0688 0.0314119 0.0314119 0 0 0 -1336.48 -4.83778e-07 -4.83783e-07 0 0 0 189.21 16.8268 119.842 52.5408 -1 1 2 931 1.931 323.15 0 0 -0.06896 0.0314904 0.0314904 0 0 0 -1337.16 -4.781e-07 -4.78104e-07 0 0 0 189.424 16.8623 119.976 52.5858 -1 1 2 932 1.932 323.15 0 0 -0.06912 0.0315689 0.0315689 0 0 0 -1337.84 -4.72422e-07 -4.72426e-07 0 0 0 189.638 16.8979 120.109 52.6307 -1 1 2 933 1.933 323.15 0 0 -0.06928 0.0316474 0.0316474 0 0 0 -1338.52 -4.66743e-07 -4.66747e-07 0 0 0 189.852 16.9335 120.243 52.6757 -1 1 2 934 1.934 323.15 0 0 -0.06944 0.0317259 0.0317259 0 0 0 -1339.2 -4.61065e-07 -4.61069e-07 0 0 0 190.066 16.9692 120.376 52.7207 -1 1 2 935 1.935 323.15 0 0 -0.0696 0.0318043 0.0318043 0 0 0 -1339.87 -4.55387e-07 -4.5539e-07 0 0 0 190.28 17.005 120.51 52.7657 -1 1 2 936 1.936 323.15 0 0 -0.06976 0.0318828 0.0318828 0 0 0 -1340.55 -4.49708e-07 -4.49711e-07 0 0 0 190.495 17.0409 120.643 52.8107 -1 1 2 937 1.937 323.15 0 0 -0.06992 0.0319613 0.0319613 0 0 0 -1341.23 -4.44029e-07 -4.44033e-07 0 0 0 190.709 17.0768 120.777 52.8557 -1 1 2 938 1.938 323.15 0 0 -0.07008 0.0320398 0.0320398 0 0 0 -1341.91 -4.38351e-07 -4.38355e-07 0 0 0 190.924 17.1129 120.91 52.9007 -1 1 2 939 1.939 323.15 0 0 -0.07024 0.0321183 0.0321183 0 0 0 -1342.58 -4.32672e-07 -4.32676e-07 0 0 0 191.139 17.1489 121.044 52.9457 -1 1 2 940 1.94 323.15 0 0 -0.0704 0.0321968 0.0321968 0 0 0 -1343.26 -4.26994e-07 -4.26998e-07 0 0 0 191.354 17.1851 121.178 52.9907 -1 1 2 941 1.941 323.15 0 0 -0.07056 0.0322753 0.0322753 0 0 0 -1343.94 -4.21315e-07 -4.21319e-07 0 0 0 191.569 17.2213 121.312 53.0357 -1 1 2 942 1.942 323.15 0 0 -0.07072 0.0323537 0.0323537 0 0 0 -1344.62 -4.15637e-07 -4.1564e-07 0 0 0 191.784 17.2576 121.445 53.0806 -1 1 2 943 1.943 323.15 0 0 -0.07088 0.0324322 0.0324322 0 0 0 -1345.29 -4.09957e-07 -4.09961e-07 0 0 0 191.999 17.294 121.579 53.1256 -1 1 2 944 1.944 323.15 0 0 -0.07104 0.0325107 0.0325107 0 0 0 -1345.97 -4.04278e-07 -4.04282e-07 0 0 0 192.214 17.3304 121.713 53.1706 -1 1 2 945 1.945 323.15 0 0 -0.0712 0.0325892 0.0325892 0 0 0 -1346.65 -3.98599e-07 -3.98603e-07 0 0 0 192.43 17.367 121.847 53.2156 -1 1 2 946 1.946 323.15 0 0 -0.07136 0.0326677 0.0326677 0 0 0 -1347.32 -3.92921e-07 -3.92924e-07 0 0 0 192.645 17.4035 121.981 53.2606 -1 1 2 947 1.947 323.15 0 0 -0.07152 0.0327462 0.0327462 0 0 0 -1348 -3.87242e-07 -3.87246e-07 0 0 0 192.861 17.4402 122.115 53.3056 -1 1 2 948 1.948 323.15 0 0 -0.07168 0.0328247 0.0328247 0 0 0 -1348.67 -3.81563e-07 -3.81567e-07 0 0 0 193.076 17.4769 122.249 53.3506 -1 1 2 949 1.949 323.15 0 0 -0.07184 0.0329032 0.0329032 0 0 0 -1349.35 -3.75885e-07 -3.75888e-07 0 0 0 193.292 17.5137 122.383 53.3956 -1 1 2 950 1.95 323.15 0 0 -0.072 0.0329816 0.0329816 0 0 0 -1350.03 -3.70206e-07 -3.70209e-07 0 0 0 193.508 17.5506 122.517 53.4406 -1 1 2 951 1.951 323.15 0 0 -0.07216 0.0330601 0.0330601 0 0 0 -1350.7 -3.64527e-07 -3.6453e-07 0 0 0 193.724 17.5876 122.651 53.4856 -1 1 2 952 1.952 323.15 0 0 -0.07232 0.0331386 0.0331386 0 0 0 -1351.38 -3.58849e-07 -3.58852e-07 0 0 0 193.941 17.6246 122.785 53.5306 -1 1 2 953 1.953 323.15 0 0 -0.07248 0.0332171 0.0332171 0 0 0 -1352.05 -3.53171e-07 -3.53173e-07 0 0 0 194.157 17.6617 122.919 53.5756 -1 1 2 954 1.954 323.15 0 0 -0.07264 0.0332956 0.0332956 0 0 0 -1352.73 -3.47492e-07 -3.47494e-07 0 0 0 194.373 17.6988 123.054 53.6206 -1 1 2 955 1.955 323.15 0 0 -0.0728 0.0333741 0.0333741 0 0 0 -1353.4 -3.41814e-07 -3.41817e-07 0 0 0 194.59 17.7361 123.188 53.6656 -1 1 2 956 1.956 323.15 0 0 -0.07296 0.0334526 0.0334526 0 0 0 -1354.08 -3.36135e-07 -3.36138e-07 0 0 0 194.806 17.7734 123.322 53.7106 -1 1 2 957 1.957 323.15 0 0 -0.07312 0.0335311 0.0335311 0 0 0 -1354.75 -3.30456e-07 -3.30459e-07 0 0 0 195.023 17.8108 123.457 53.7556 -1 1 2 958 1.958 323.15 0 0 -0.07328 0.0336096 0.0336096 0 0 0 -1355.43 -3.24778e-07 -3.24781e-07 0 0 0 195.24 17.8482 123.591 53.8006 -1 1 2 959 1.959 323.15 0 0 -0.07344 0.0336881 0.0336881 0 0 0 -1356.1 -3.19099e-07 -3.19103e-07 0 0 0 195.457 17.8857 123.725 53.8456 -1 1 2 960 1.96 323.15 0 0 -0.0736 0.0337665 0.0337665 0 0 0 -1356.78 -3.13421e-07 -3.13424e-07 0 0 0 195.674 17.9233 123.86 53.8906 -1 1 2 961 1.961 323.15 0 0 -0.07376 0.033845 0.033845 0 0 0 -1357.45 -3.07743e-07 -3.07746e-07 0 0 0 195.891 17.961 123.994 53.9356 -1 1 2 962 1.962 323.15 0 0 -0.07392 0.0339235 0.0339235 0 0 0 -1358.13 -3.02065e-07 -3.02068e-07 0 0 0 196.108 17.9987 124.129 53.9806 -1 1 2 963 1.963 323.15 0 0 -0.07408 0.034002 0.034002 0 0 0 -1358.8 -2.96386e-07 -2.9639e-07 0 0 0 196.325 18.0366 124.263 54.0256 -1 1 2 964 1.964 323.15 0 0 -0.07424 0.0340805 0.0340805 0 0 0 -1359.47 -2.90708e-07 -2.90711e-07 0 0 0 196.543 18.0744 124.398 54.0706 -1 1 2 965 1.965 323.15 0 0 -0.0744 0.034159 0.034159 0 0 0 -1360.15 -2.85029e-07 -2.85033e-07 0 0 0 196.761 18.1124 124.532 54.1157 -1 1 2 966 1.966 323.15 0 0 -0.07456 0.0342375 0.0342375 0 0 0 -1360.82 -2.79351e-07 -2.79354e-07 0 0 0 196.978 18.1504 124.667 54.1607 -1 1 2 967 1.967 323.15 0 0 -0.07472 0.034316 0.034316 0 0 0 -1361.5 -2.73672e-07 -2.73676e-07 0 0 0 197.196 18.1885 124.802 54.2057 -1 1 2 968 1.968 323.15 0 0 -0.07488 0.0343945 0.0343945 0 0 0 -1362.17 -2.67994e-07 -2.67998e-07 0 0 0 197.414 18.2267 124.936 54.2507 -1 1 2 969 1.969 323.15 0 0 -0.07504 0.034473 0.034473 0 0 0 -1362.84 -2.62316e-07 -2.62319e-07 0 0 0 197.632 18.265 125.071 54.2957 -1 1 2 970 1.97 323.15 0 0 -0.0752 0.0345515 0.0345515 0 0 0 -1363.52 -2.56637e-07 -2.56641e-07 0 0 0 197.85 18.3033 125.206 54.3407 -1 1 2 971 1.971 323.15 0 0 -0.07536 0.03463 0.03463 0 0 0 -1364.19 -2.50959e-07 -2.50963e-07 0 0 0 198.068 18.3417 125.341 54.3857 -1 1 2 972 1.972 323.15 0 0 -0.07552 0.0347085 0.0347085 0 0 0 -1364.86 -2.45279e-07 -2.45283e-07 0 0 0 198.287 18.3801 125.476 54.4307 -1 1 2 973 1.973 323.15 0 0 -0.07568 0.034787 0.034787 0 0 0 -1365.54 -2.39601e-07 -2.39605e-07 0 0 0 198.505 18.4187 125.611 54.4757 -1 1 2 974 1.974 323.15 0 0 -0.07584 0.0348655 0.0348655 0 0 0 -1366.21 -2.33922e-07 -2.33926e-07 0 0 0 198.723 18.4573 125.745 54.5207 -1 1 2 975 1.975 323.15 0 0 -0.076 0.034944 0.034944 0 0 0 -1366.88 -2.28244e-07 -2.28248e-07 0 0 0 198.942 18.4959 125.88 54.5657 -1 1 2 976 1.976 323.15 0 0 -0.07616 0.0350225 0.0350225 0 0 0 -1367.55 -2.22566e-07 -2.22569e-07 0 0 0 199.161 18.5347 126.015 54.6108 -1 1 2 977 1.977 323.15 0 0 -0.07632 0.0351009 0.0351009 0 0 0 -1368.23 -2.16887e-07 -2.16891e-07 0 0 0 199.38 18.5735 126.15 54.6558 -1 1 2 978 1.978 323.15 0 0 -0.07648 0.0351794 0.0351794 0 0 0 -1368.9 -2.11209e-07 -2.11212e-07 0 0 0 199.599 18.6124 126.286 54.7008 -1 1 2 979 1.979 323.15 0 0 -0.07664 0.0352579 0.0352579 0 0 0 -1369.57 -2.0553e-07 -2.05533e-07 0 0 0 199.818 18.6514 126.421 54.7458 -1 1 2 980 1.98 323.15 0 0 -0.0768 0.0353364 0.0353364 0 0 0 -1370.24 -1.9985e-07 -1.99854e-07 0 0 0 200.037 18.6904 126.556 54.7908 -1 1 2 981 1.981 323.15 0 0 -0.07696 0.0354149 0.0354149 0 0 0 -1370.92 -1.94172e-07 -1.94175e-07 0 0 0 200.256 18.7295 126.691 54.8358 -1 1 2 982 1.982 323.15 0 0 -0.07712 0.0354934 0.0354934 0 0 0 -1371.59 -1.88492e-07 -1.88496e-07 0 0 0 200.476 18.7687 126.826 54.8808 -1 1 2 983 1.983 323.15 0 0 -0.07728 0.0355719 0.0355719 0 0 0 -1372.26 -1.82814e-07 -1.82818e-07 0 0 0 200.695 18.808 126.961 54.9259 -1 1 2 984 1.984 323.15 0 0 -0.07744 0.0356504 0.0356504 0 0 0 -1372.93 -1.77135e-07 -1.77139e-07 0 0 0 200.915 18.8473 127.097 54.9709 -1 1 2 985 1.985 323.15 0 0 -0.0776 0.0357289 0.0357289 0 0 0 -1373.6 -1.71455e-07 -1.7146e-07 0 0 0 201.135 18.8867 127.232 55.0159 -1 1 2 986 1.986 323.15 0 0 -0.07776 0.0358074 0.0358074 0 0 0 -1374.27 -1.65777e-07 -1.65781e-07 0 0 0 201.354 18.9262 127.367 55.0609 -1 1 2 987 1.987 323.15 0 0 -0.07792 0.0358859 0.0358859 0 0 0 -1374.95 -1.60098e-07 -1.60103e-07 0 0 0 201.574 18.9657 127.503 55.1059 -1 1 2 988 1.988 323.15 0 0 -0.07808 0.0359644 0.0359644 0 0 0 -1375.62 -1.5442e-07 -1.54424e-07 0 0 0 201.794 19.0053 127.638 55.1509 -1 1 2 989 1.989 323.15 0 0 -0.07824 0.0360429 0.0360429 0 0 0 -1376.29 -1.48742e-07 -1.48746e-07 0 0 0 202.014 19.045 127.774 55.196 -1 1 2 990 1.99 323.15 0 0 -0.0784 0.0361214 0.0361214 0 0 0 -1376.96 -1.43063e-07 -1.43067e-07 0 0 0 202.235 19.0848 127.909 55.241 -1 1 2 991 1.991 323.15 0 0 -0.07856 0.0361999 0.0361999 0 0 0 -1377.63 -1.37384e-07 -1.37388e-07 0 0 0 202.455 19.1246 128.045 55.286 -1 1 2 992 1.992 323.15 0 0 -0.07872 0.0362784 0.0362784 0 0 0 -1378.3 -1.31706e-07 -1.3171e-07 0 0 0 202.676 19.1645 128.18 55.331 -1 1 2 993 1.993 323.15 0 0 -0.07888 0.0363569 0.0363569 0 0 0 -1378.97 -1.26027e-07 -1.26031e-07 0 0 0 202.896 19.2045 128.316 55.376 -1 1 2 994 1.994 323.15 0 0 -0.07904 0.0364354 0.0364354 0 0 0 -1379.64 -1.20348e-07 -1.20352e-07 0 0 0 203.117 19.2445 128.451 55.4211 -1 1 2 995 1.995 323.15 0 0 -0.0792 0.0365139 0.0365139 0 0 0 -1380.31 -1.14669e-07 -1.14673e-07 0 0 0 203.338 19.2846 128.587 55.4661 -1 1 2 996 1.996 323.15 0 0 -0.07936 0.0365924 0.0365924 0 0 0 -1380.98 -1.08991e-07 -1.08995e-07 0 0 0 203.559 19.3248 128.723 55.5111 -1 1 2 997 1.997 323.15 0 0 -0.07952 0.0366709 0.0366709 0 0 0 -1381.65 -1.03313e-07 -1.03317e-07 0 0 0 203.78 19.3651 128.858 55.5561 -1 1 2 998 1.998 323.15 0 0 -0.07968 0.0367494 0.0367494 0 0 0 -1382.32 -9.76347e-08 -9.76385e-08 0 0 0 204.001 19.4054 128.994 55.6012 -1 1 2 999 1.999 323.15 0 0 -0.07984 0.0368279 0.0368279 0 0 0 -1382.99 -9.19561e-08 -9.196e-08 0 0 0 204.222 19.4458 129.13 55.6462 -1 1 2 1000 2 323.15 0 0 -0.08 0.0369064 0.0369064 0 0 0 -1383.66 -8.62777e-08 -8.62815e-08 0 0 0 204.443 19.4863 129.266 55.6912 -1 1 3 1 2.001 323.15 0 0 -0.07984 0.0368506 0.0368506 0 0 0 -1372.86 -8.6191e-08 -8.61948e-08 0 0 0 204.223 19.2658 129.266 55.6912 -1 1 3 2 2.002 323.15 0 0 -0.07968 0.0367948 0.0367948 0 0 0 -1362.05 -8.61054e-08 -8.61092e-08 0 0 0 204.004 19.047 129.266 55.6912 -1 1 3 3 2.003 323.15 0 0 -0.07952 0.0367389 0.0367389 0 0 0 -1351.24 -8.60196e-08 -8.60234e-08 0 0 0 203.787 18.8299 129.266 55.6912 -1 1 3 4 2.004 323.15 0 0 -0.07936 0.0366831 0.0366831 0 0 0 -1340.44 -8.59341e-08 -8.59379e-08 0 0 0 203.572 18.6146 129.266 55.6912 -1 1 3 5 2.005 323.15 0 0 -0.0792 0.0366272 0.0366272 0 0 0 -1329.63 -8.58485e-08 -8.58523e-08 0 0 0 203.358 18.401 129.266 55.6912 -1 1 3 6 2.006 323.15 0 0 -0.07904 0.0365714 0.0365714 0 0 0 -1318.83 -8.57627e-08 -8.57665e-08 0 0 0 203.146 18.1891 129.266 55.6912 -1 1 3 7 2.007 323.15 0 0 -0.07888 0.0365156 0.0365156 0 0 0 -1308.02 -8.56771e-08 -8.5681e-08 0 0 0 202.936 17.979 129.266 55.6912 -1 1 3 8 2.008 323.15 0 0 -0.07872 0.0364597 0.0364597 0 0 0 -1297.21 -8.55913e-08 -8.55952e-08 0 0 0 202.727 17.7706 129.266 55.6912 -1 1 3 9 2.009 323.15 0 0 -0.07856 0.0364039 0.0364039 0 0 0 -1286.41 -8.55057e-08 -8.55096e-08 0 0 0 202.521 17.5639 129.266 55.6912 -1 1 3 10 2.01 323.15 0 0 -0.0784 0.036348 0.036348 0 0 0 -1275.6 -8.54202e-08 -8.5424e-08 0 0 0 202.316 17.3589 129.266 55.6912 -1 1 3 11 2.011 323.15 0 0 -0.07824 0.0362922 0.0362922 0 0 0 -1264.8 -8.53344e-08 -8.53383e-08 0 0 0 202.113 17.1557 129.266 55.6912 -1 1 3 12 2.012 323.15 0 0 -0.07808 0.0362364 0.0362364 0 0 0 -1253.99 -8.52488e-08 -8.52527e-08 0 0 0 201.911 16.9542 129.266 55.6912 -1 1 3 13 2.013 323.15 0 0 -0.07792 0.0361805 0.0361805 0 0 0 -1243.18 -8.5163e-08 -8.51668e-08 0 0 0 201.711 16.7544 129.266 55.6912 -1 1 3 14 2.014 323.15 0 0 -0.07776 0.0361247 0.0361247 0 0 0 -1232.38 -8.50775e-08 -8.50812e-08 0 0 0 201.513 16.5564 129.266 55.6912 -1 1 3 15 2.015 323.15 0 0 -0.0776 0.0360688 0.0360688 0 0 0 -1221.57 -8.49919e-08 -8.49958e-08 0 0 0 201.317 16.36 129.266 55.6912 -1 1 3 16 2.016 323.15 0 0 -0.07744 0.036013 0.036013 0 0 0 -1210.76 -8.49061e-08 -8.49099e-08 0 0 0 201.122 16.1655 129.266 55.6912 -1 1 3 17 2.017 323.15 0 0 -0.07728 0.0359572 0.0359572 0 0 0 -1199.96 -8.48205e-08 -8.48243e-08 0 0 0 200.93 15.9726 129.266 55.6912 -1 1 3 18 2.018 323.15 0 0 -0.07712 0.0359013 0.0359013 0 0 0 -1189.15 -8.47349e-08 -8.47387e-08 0 0 0 200.738 15.7815 129.266 55.6912 -1 1 3 19 2.019 323.15 0 0 -0.07696 0.0358455 0.0358455 0 0 0 -1178.35 -8.46492e-08 -8.4653e-08 0 0 0 200.549 15.5921 129.266 55.6912 -1 1 3 20 2.02 323.15 0 0 -0.0768 0.0357896 0.0357896 0 0 0 -1167.54 -8.45635e-08 -8.45673e-08 0 0 0 200.361 15.4044 129.266 55.6912 -1 1 3 21 2.021 323.15 0 0 -0.07664 0.0357338 0.0357338 0 0 0 -1156.73 -8.44779e-08 -8.44817e-08 0 0 0 200.175 15.2185 129.266 55.6912 -1 1 3 22 2.022 323.15 0 0 -0.07648 0.035678 0.035678 0 0 0 -1145.93 -8.43922e-08 -8.43961e-08 0 0 0 199.991 15.0342 129.266 55.6912 -1 1 3 23 2.023 323.15 0 0 -0.07632 0.0356221 0.0356221 0 0 0 -1135.12 -8.43066e-08 -8.43104e-08 0 0 0 199.809 14.8518 129.266 55.6912 -1 1 3 24 2.024 323.15 0 0 -0.07616 0.0355663 0.0355663 0 0 0 -1124.32 -8.42209e-08 -8.42247e-08 0 0 0 199.628 14.671 129.266 55.6912 -1 1 3 25 2.025 323.15 0 0 -0.076 0.0355104 0.0355104 0 0 0 -1113.51 -8.41352e-08 -8.41391e-08 0 0 0 199.449 14.492 129.266 55.6912 -1 1 3 26 2.026 323.15 0 0 -0.07584 0.0354546 0.0354546 0 0 0 -1102.7 -8.40497e-08 -8.40535e-08 0 0 0 199.272 14.3147 129.266 55.6912 -1 1 3 27 2.027 323.15 0 0 -0.07568 0.0353988 0.0353988 0 0 0 -1091.9 -8.3964e-08 -8.39678e-08 0 0 0 199.096 14.1391 129.266 55.6912 -1 1 3 28 2.028 323.15 0 0 -0.07552 0.0353429 0.0353429 0 0 0 -1081.09 -8.38783e-08 -8.38821e-08 0 0 0 198.922 13.9653 129.266 55.6912 -1 1 3 29 2.029 323.15 0 0 -0.07536 0.0352871 0.0352871 0 0 0 -1070.29 -8.37926e-08 -8.37965e-08 0 0 0 198.75 13.7932 129.266 55.6912 -1 1 3 30 2.03 323.15 0 0 -0.0752 0.0352312 0.0352312 0 0 0 -1059.48 -8.3707e-08 -8.37109e-08 0 0 0 198.58 13.6228 129.266 55.6912 -1 1 3 31 2.031 323.15 0 0 -0.07504 0.0351754 0.0351754 0 0 0 -1048.67 -8.36213e-08 -8.36252e-08 0 0 0 198.411 13.4541 129.266 55.6912 -1 1 3 32 2.032 323.15 0 0 -0.07488 0.0351196 0.0351196 0 0 0 -1037.87 -8.35356e-08 -8.35394e-08 0 0 0 198.244 13.2872 129.266 55.6912 -1 1 3 33 2.033 323.15 0 0 -0.07472 0.0350637 0.0350637 0 0 0 -1027.06 -8.345e-08 -8.34538e-08 0 0 0 198.079 13.122 129.266 55.6912 -1 1 3 34 2.034 323.15 0 0 -0.07456 0.0350079 0.0350079 0 0 0 -1016.26 -8.33643e-08 -8.33681e-08 0 0 0 197.915 12.9585 129.266 55.6912 -1 1 3 35 2.035 323.15 0 0 -0.0744 0.034952 0.034952 0 0 0 -1005.45 -8.32787e-08 -8.32825e-08 0 0 0 197.754 12.7968 129.266 55.6912 -1 1 3 36 2.036 323.15 0 0 -0.07424 0.0348962 0.0348962 0 0 0 -994.643 -8.31931e-08 -8.31969e-08 0 0 0 197.594 12.6368 129.266 55.6912 -1 1 3 37 2.037 323.15 0 0 -0.07408 0.0348404 0.0348404 0 0 0 -983.837 -8.31074e-08 -8.31112e-08 0 0 0 197.435 12.4785 129.266 55.6912 -1 1 3 38 2.038 323.15 0 0 -0.07392 0.0347845 0.0347845 0 0 0 -973.031 -8.30217e-08 -8.30255e-08 0 0 0 197.279 12.322 129.266 55.6912 -1 1 3 39 2.039 323.15 0 0 -0.07376 0.0347287 0.0347287 0 0 0 -962.225 -8.29361e-08 -8.29399e-08 0 0 0 197.124 12.1672 129.266 55.6912 -1 1 3 40 2.04 323.15 0 0 -0.0736 0.0346728 0.0346728 0 0 0 -951.419 -8.28505e-08 -8.28543e-08 0 0 0 196.971 12.0141 129.266 55.6912 -1 1 3 41 2.041 323.15 0 0 -0.07344 0.034617 0.034617 0 0 0 -940.613 -8.27648e-08 -8.27686e-08 0 0 0 196.82 11.8627 129.266 55.6912 -1 1 3 42 2.042 323.15 0 0 -0.07328 0.0345612 0.0345612 0 0 0 -929.807 -8.26791e-08 -8.26829e-08 0 0 0 196.67 11.7131 129.266 55.6912 -1 1 3 43 2.043 323.15 0 0 -0.07312 0.0345053 0.0345053 0 0 0 -919.001 -8.25935e-08 -8.25973e-08 0 0 0 196.522 11.5652 129.266 55.6912 -1 1 3 44 2.044 323.15 0 0 -0.07296 0.0344495 0.0344495 0 0 0 -908.195 -8.25078e-08 -8.25116e-08 0 0 0 196.376 11.419 129.266 55.6912 -1 1 3 45 2.045 323.15 0 0 -0.0728 0.0343936 0.0343936 0 0 0 -897.389 -8.24221e-08 -8.2426e-08 0 0 0 196.231 11.2745 129.266 55.6912 -1 1 3 46 2.046 323.15 0 0 -0.07264 0.0343378 0.0343378 0 0 0 -886.583 -8.23365e-08 -8.23403e-08 0 0 0 196.089 11.1318 129.266 55.6912 -1 1 3 47 2.047 323.15 0 0 -0.07248 0.034282 0.034282 0 0 0 -875.777 -8.22508e-08 -8.22546e-08 0 0 0 195.948 10.9908 129.266 55.6912 -1 1 3 48 2.048 323.15 0 0 -0.07232 0.0342261 0.0342261 0 0 0 -864.97 -8.21652e-08 -8.21691e-08 0 0 0 195.808 10.8516 129.266 55.6912 -1 1 3 49 2.049 323.15 0 0 -0.07216 0.0341703 0.0341703 0 0 0 -854.164 -8.20796e-08 -8.20834e-08 0 0 0 195.671 10.714 129.266 55.6912 -1 1 3 50 2.05 323.15 0 0 -0.072 0.0341144 0.0341144 0 0 0 -843.358 -8.19939e-08 -8.19977e-08 0 0 0 195.535 10.5782 129.266 55.6912 -1 1 3 51 2.051 323.15 0 0 -0.07184 0.0340586 0.0340586 0 0 0 -832.552 -8.19082e-08 -8.1912e-08 0 0 0 195.401 10.4442 129.266 55.6912 -1 1 3 52 2.052 323.15 0 0 -0.07168 0.0340028 0.0340028 0 0 0 -821.746 -8.18226e-08 -8.18264e-08 0 0 0 195.269 10.3118 129.266 55.6912 -1 1 3 53 2.053 323.15 0 0 -0.07152 0.0339469 0.0339469 0 0 0 -810.94 -8.17369e-08 -8.17407e-08 0 0 0 195.138 10.1812 129.266 55.6912 -1 1 3 54 2.054 323.15 0 0 -0.07136 0.0338911 0.0338911 0 0 0 -800.134 -8.16513e-08 -8.16551e-08 0 0 0 195.009 10.0523 129.266 55.6912 -1 1 3 55 2.055 323.15 0 0 -0.0712 0.0338352 0.0338352 0 0 0 -789.328 -8.15656e-08 -8.15694e-08 0 0 0 194.882 9.92517 129.266 55.6912 -1 1 3 56 2.056 323.15 0 0 -0.07104 0.0337794 0.0337794 0 0 0 -778.522 -8.14799e-08 -8.14837e-08 0 0 0 194.757 9.79974 129.266 55.6912 -1 1 3 57 2.057 323.15 0 0 -0.07088 0.0337236 0.0337236 0 0 0 -767.716 -8.13943e-08 -8.13982e-08 0 0 0 194.633 9.67604 129.266 55.6912 -1 1 3 58 2.058 323.15 0 0 -0.07072 0.0336677 0.0336677 0 0 0 -756.91 -8.13086e-08 -8.13125e-08 0 0 0 194.511 9.55407 129.266 55.6912 -1 1 3 59 2.059 323.15 0 0 -0.07056 0.0336119 0.0336119 0 0 0 -746.104 -8.1223e-08 -8.12268e-08 0 0 0 194.391 9.43383 129.266 55.6912 -1 1 3 60 2.06 323.15 0 0 -0.0704 0.033556 0.033556 0 0 0 -735.297 -8.11373e-08 -8.11411e-08 0 0 0 194.272 9.31532 129.266 55.6912 -1 1 3 61 2.061 323.15 0 0 -0.07024 0.0335002 0.0335002 0 0 0 -724.491 -8.10517e-08 -8.10556e-08 0 0 0 194.155 9.19854 129.266 55.6912 -1 1 3 62 2.062 323.15 0 0 -0.07008 0.0334444 0.0334444 0 0 0 -713.685 -8.0966e-08 -8.09698e-08 0 0 0 194.04 9.08348 129.266 55.6912 -1 1 3 63 2.063 323.15 0 0 -0.06992 0.0333885 0.0333885 0 0 0 -702.879 -8.08803e-08 -8.08842e-08 0 0 0 193.927 8.97016 129.266 55.6912 -1 1 3 64 2.064 323.15 0 0 -0.06976 0.0333327 0.0333327 0 0 0 -692.073 -8.07947e-08 -8.07985e-08 0 0 0 193.815 8.85856 129.266 55.6912 -1 1 3 65 2.065 323.15 0 0 -0.0696 0.0332768 0.0332768 0 0 0 -681.267 -8.0709e-08 -8.07128e-08 0 0 0 193.706 8.74869 129.266 55.6912 -1 1 3 66 2.066 323.15 0 0 -0.06944 0.033221 0.033221 0 0 0 -670.461 -8.06234e-08 -8.06272e-08 0 0 0 193.597 8.64056 129.266 55.6912 -1 1 3 67 2.067 323.15 0 0 -0.06928 0.0331652 0.0331652 0 0 0 -659.655 -8.05378e-08 -8.05416e-08 0 0 0 193.491 8.53415 129.266 55.6912 -1 1 3 68 2.068 323.15 0 0 -0.06912 0.0331093 0.0331093 0 0 0 -648.849 -8.04521e-08 -8.04559e-08 0 0 0 193.386 8.42947 129.266 55.6912 -1 1 3 69 2.069 323.15 0 0 -0.06896 0.0330535 0.0330535 0 0 0 -638.043 -8.03664e-08 -8.03702e-08 0 0 0 193.283 8.32651 129.266 55.6912 -1 1 3 70 2.07 323.15 0 0 -0.0688 0.0329976 0.0329976 0 0 0 -627.237 -8.02808e-08 -8.02847e-08 0 0 0 193.182 8.22529 129.266 55.6912 -1 1 3 71 2.071 323.15 0 0 -0.06864 0.0329418 0.0329418 0 0 0 -616.431 -8.01951e-08 -8.01989e-08 0 0 0 193.083 8.1258 129.266 55.6912 -1 1 3 72 2.072 323.15 0 0 -0.06848 0.032886 0.032886 0 0 0 -605.625 -8.01095e-08 -8.01133e-08 0 0 0 192.985 8.02803 129.266 55.6912 -1 1 3 73 2.073 323.15 0 0 -0.06832 0.0328301 0.0328301 0 0 0 -594.818 -8.00238e-08 -8.00276e-08 0 0 0 192.889 7.932 129.266 55.6912 -1 1 3 74 2.074 323.15 0 0 -0.06816 0.0327743 0.0327743 0 0 0 -584.012 -7.99381e-08 -7.9942e-08 0 0 0 192.795 7.83769 129.266 55.6912 -1 1 3 75 2.075 323.15 0 0 -0.068 0.0327184 0.0327184 0 0 0 -573.206 -7.98525e-08 -7.98563e-08 0 0 0 192.702 7.74511 129.266 55.6912 -1 1 3 76 2.076 323.15 0 0 -0.06784 0.0326626 0.0326626 0 0 0 -562.4 -7.97668e-08 -7.97707e-08 0 0 0 192.611 7.65427 129.266 55.6912 -1 1 3 77 2.077 323.15 0 0 -0.06768 0.0326068 0.0326068 0 0 0 -551.594 -7.96812e-08 -7.9685e-08 0 0 0 192.522 7.56515 129.266 55.6912 -1 1 3 78 2.078 323.15 0 0 -0.06752 0.0325509 0.0325509 0 0 0 -540.788 -7.95956e-08 -7.95994e-08 0 0 0 192.435 7.47776 129.266 55.6912 -1 1 3 79 2.079 323.15 0 0 -0.06736 0.0324951 0.0324951 0 0 0 -529.982 -7.95099e-08 -7.95137e-08 0 0 0 192.349 7.39209 129.266 55.6912 -1 1 3 80 2.08 323.15 0 0 -0.0672 0.0324392 0.0324392 0 0 0 -519.176 -7.94242e-08 -7.9428e-08 0 0 0 192.265 7.30816 129.266 55.6912 -1 1 3 81 2.081 323.15 0 0 -0.06704 0.0323834 0.0323834 0 0 0 -508.37 -7.93385e-08 -7.93424e-08 0 0 0 192.183 7.22596 129.266 55.6912 -1 1 3 82 2.082 323.15 0 0 -0.06688 0.0323276 0.0323276 0 0 0 -497.564 -7.92529e-08 -7.92567e-08 0 0 0 192.102 7.14548 129.266 55.6912 -1 1 3 83 2.083 323.15 0 0 -0.06672 0.0322717 0.0322717 0 0 0 -486.758 -7.91673e-08 -7.91711e-08 0 0 0 192.024 7.06674 129.266 55.6912 -1 1 3 84 2.084 323.15 0 0 -0.06656 0.0322159 0.0322159 0 0 0 -475.952 -7.90816e-08 -7.90854e-08 0 0 0 191.947 6.98972 129.266 55.6912 -1 1 3 85 2.085 323.15 0 0 -0.0664 0.03216 0.03216 0 0 0 -465.145 -7.89959e-08 -7.89998e-08 0 0 0 191.871 6.91443 129.266 55.6912 -1 1 3 86 2.086 323.15 0 0 -0.06624 0.0321042 0.0321042 0 0 0 -454.339 -7.89103e-08 -7.89141e-08 0 0 0 191.798 6.84087 129.266 55.6912 -1 1 3 87 2.087 323.15 0 0 -0.06608 0.0320484 0.0320484 0 0 0 -443.533 -7.88246e-08 -7.88285e-08 0 0 0 191.726 6.76904 129.266 55.6912 -1 1 3 88 2.088 323.15 0 0 -0.06592 0.0319925 0.0319925 0 0 0 -432.727 -7.87389e-08 -7.87428e-08 0 0 0 191.656 6.69894 129.266 55.6912 -1 1 3 89 2.089 323.15 0 0 -0.06576 0.0319367 0.0319367 0 0 0 -421.921 -7.86533e-08 -7.86571e-08 0 0 0 191.587 6.63057 129.266 55.6912 -1 1 3 90 2.09 323.15 0 0 -0.0656 0.0318808 0.0318808 0 0 0 -411.115 -7.85677e-08 -7.85715e-08 0 0 0 191.521 6.56393 129.266 55.6912 -1 1 3 91 2.091 323.15 0 0 -0.06544 0.031825 0.031825 0 0 0 -400.309 -7.8482e-08 -7.84858e-08 0 0 0 191.456 6.49902 129.266 55.6912 -1 1 3 92 2.092 323.15 0 0 -0.06528 0.0317692 0.0317692 0 0 0 -389.503 -7.83964e-08 -7.84002e-08 0 0 0 191.393 6.43583 129.266 55.6912 -1 1 3 93 2.093 323.15 0 0 -0.06512 0.0317133 0.0317133 0 0 0 -378.697 -7.83107e-08 -7.83145e-08 0 0 0 191.331 6.37437 129.266 55.6912 -1 1 3 94 2.094 323.15 0 0 -0.06496 0.0316575 0.0316575 0 0 0 -367.891 -7.8225e-08 -7.82289e-08 0 0 0 191.272 6.31465 129.266 55.6912 -1 1 3 95 2.095 323.15 0 0 -0.0648 0.0316016 0.0316016 0 0 0 -357.085 -7.81394e-08 -7.81432e-08 0 0 0 191.214 6.25665 129.266 55.6912 -1 1 3 96 2.096 323.15 0 0 -0.06464 0.0315458 0.0315458 0 0 0 -346.279 -7.80537e-08 -7.80576e-08 0 0 0 191.157 6.20038 129.266 55.6912 -1 1 3 97 2.097 323.15 0 0 -0.06448 0.03149 0.03149 0 0 0 -335.473 -7.7968e-08 -7.79719e-08 0 0 0 191.103 6.14584 129.266 55.6912 -1 1 3 98 2.098 323.15 0 0 -0.06432 0.0314341 0.0314341 0 0 0 -324.666 -7.78824e-08 -7.78863e-08 0 0 0 191.05 6.09303 129.266 55.6912 -1 1 3 99 2.099 323.15 0 0 -0.06416 0.0313783 0.0313783 0 0 0 -313.86 -7.77968e-08 -7.78006e-08 0 0 0 190.999 6.04195 129.266 55.6912 -1 1 3 100 2.1 323.15 0 0 -0.064 0.0313224 0.0313224 0 0 0 -303.054 -7.77111e-08 -7.77149e-08 0 0 0 190.95 5.99259 129.266 55.6912 -1 1 3 101 2.101 323.15 0 0 -0.06384 0.0312666 0.0312666 0 0 0 -292.248 -7.76255e-08 -7.76293e-08 0 0 0 190.902 5.94497 129.266 55.6912 -1 1 3 102 2.102 323.15 0 0 -0.06368 0.0312108 0.0312108 0 0 0 -281.442 -7.75398e-08 -7.75436e-08 0 0 0 190.856 5.89907 129.266 55.6912 -1 1 3 103 2.103 323.15 0 0 -0.06352 0.0311549 0.0311549 0 0 0 -270.636 -7.74541e-08 -7.7458e-08 0 0 0 190.812 5.85491 129.266 55.6912 -1 1 3 104 2.104 323.15 0 0 -0.06336 0.0310991 0.0310991 0 0 0 -259.83 -7.73685e-08 -7.73723e-08 0 0 0 190.769 5.81247 129.266 55.6912 -1 1 3 105 2.105 323.15 0 0 -0.0632 0.0310432 0.0310432 0 0 0 -249.024 -7.72828e-08 -7.72867e-08 0 0 0 190.729 5.77176 129.266 55.6912 -1 1 3 106 2.106 323.15 0 0 -0.06304 0.0309874 0.0309874 0 0 0 -238.218 -7.71971e-08 -7.7201e-08 0 0 0 190.69 5.73278 129.266 55.6912 -1 1 3 107 2.107 323.15 0 0 -0.06288 0.0309316 0.0309316 0 0 0 -227.412 -7.71115e-08 -7.71153e-08 0 0 0 190.652 5.69553 129.266 55.6912 -1 1 3 108 2.108 323.15 0 0 -0.06272 0.0308757 0.0308757 0 0 0 -216.606 -7.70259e-08 -7.70297e-08 0 0 0 190.617 5.66001 129.266 55.6912 -1 1 3 109 2.109 323.15 0 0 -0.06256 0.0308199 0.0308199 0 0 0 -205.8 -7.69402e-08 -7.6944e-08 0 0 0 190.583 5.62622 129.266 55.6912 -1 1 3 110 2.11 323.15 0 0 -0.0624 0.030764 0.030764 0 0 0 -194.993 -7.68541e-08 -7.6858e-08 0 0 0 190.551 5.59416 129.266 55.6912 -1 1 3 111 2.111 323.15 0 0 -0.06224 0.0307082 0.0307082 0 0 0 -184.187 -7.67681e-08 -7.67719e-08 0 0 0 190.521 5.56382 129.266 55.6912 -1 1 3 112 2.112 323.15 0 0 -0.06208 0.0306524 0.0306524 0 0 0 -173.381 -7.6682e-08 -7.66858e-08 0 0 0 190.492 5.53522 129.266 55.6912 -1 1 3 113 2.113 323.15 0 0 -0.06192 0.0305965 0.0305965 0 0 0 -162.575 -7.6596e-08 -7.65998e-08 0 0 0 190.465 5.50834 129.266 55.6912 -1 1 3 114 2.114 323.15 0 0 -0.06176 0.0305407 0.0305407 0 0 0 -151.769 -7.65099e-08 -7.65137e-08 0 0 0 190.44 5.48319 129.266 55.6912 -1 1 3 115 2.115 323.15 0 0 -0.0616 0.0304848 0.0304848 0 0 0 -140.963 -7.64239e-08 -7.64277e-08 0 0 0 190.417 5.45977 129.266 55.6912 -1 1 3 116 2.116 323.15 0 0 -0.06144 0.030429 0.030429 0 0 0 -130.157 -7.63378e-08 -7.63416e-08 0 0 0 190.395 5.43808 129.266 55.6912 -1 1 3 117 2.117 323.15 0 0 -0.06128 0.0303732 0.0303732 0 0 0 -119.351 -7.62517e-08 -7.62556e-08 0 0 0 190.375 5.41812 129.266 55.6912 -1 1 3 118 2.118 323.15 0 0 -0.06112 0.0303173 0.0303173 0 0 0 -108.545 -7.61657e-08 -7.61695e-08 0 0 0 190.357 5.39989 129.266 55.6912 -1 1 3 119 2.119 323.15 0 0 -0.06096 0.0302615 0.0302615 0 0 0 -97.7388 -7.60796e-08 -7.60835e-08 0 0 0 190.34 5.38339 129.266 55.6912 -1 1 3 120 2.12 323.15 0 0 -0.0608 0.0302056 0.0302056 0 0 0 -86.9327 -7.59936e-08 -7.59974e-08 0 0 0 190.326 5.36861 129.266 55.6912 -1 1 3 121 2.121 323.15 0 0 -0.06064 0.0301498 0.0301498 0 0 0 -76.1266 -7.59075e-08 -7.59113e-08 0 0 0 190.312 5.35557 129.266 55.6912 -1 1 3 122 2.122 323.15 0 0 -0.06048 0.030094 0.030094 0 0 0 -65.3205 -7.58215e-08 -7.58253e-08 0 0 0 190.301 5.34425 129.266 55.6912 -1 1 3 123 2.123 323.15 0 0 -0.06032 0.0300381 0.0300381 0 0 0 -54.5144 -7.57354e-08 -7.57392e-08 0 0 0 190.292 5.33467 129.266 55.6912 -1 1 3 124 2.124 323.15 0 0 -0.06016 0.0299823 0.0299823 0 0 0 -43.7084 -7.56493e-08 -7.56532e-08 0 0 0 190.284 5.32681 129.266 55.6912 -1 1 3 125 2.125 323.15 0 0 -0.06 0.0299264 0.0299264 0 0 0 -32.9023 -7.55633e-08 -7.55671e-08 0 0 0 190.278 5.32068 129.266 55.6912 -1 1 3 126 2.126 323.15 0 0 -0.05984 0.0298706 0.0298706 0 0 0 -22.0962 -7.54772e-08 -7.54811e-08 0 0 0 190.273 5.31628 129.266 55.6912 -1 1 3 127 2.127 323.15 0 0 -0.05968 0.0298148 0.0298148 0 0 0 -11.2901 -7.53912e-08 -7.5395e-08 0 0 0 190.271 5.31361 129.266 55.6912 -1 1 3 128 2.128 323.15 0 0 -0.05952 0.0297589 0.0297589 0 0 0 -0.484032 -7.53051e-08 -7.53089e-08 0 0 0 190.27 5.31267 129.266 55.6912 -1 1 3 129 2.129 323.15 0 0 -0.05936 0.0297031 0.0297031 0 0 0 10.322 -7.52191e-08 -7.52229e-08 0 0 0 190.27 5.31345 129.266 55.6912 -1 1 3 130 2.13 323.15 0 0 -0.0592 0.0296472 0.0296472 0 0 0 21.1281 -7.5133e-08 -7.51368e-08 0 0 0 190.273 5.31597 129.266 55.6912 -1 1 3 131 2.131 323.15 0 0 -0.05904 0.0295914 0.0295914 0 0 0 31.9342 -7.50469e-08 -7.50508e-08 0 0 0 190.277 5.32022 129.266 55.6912 -1 1 3 132 2.132 323.15 0 0 -0.05888 0.0295356 0.0295356 0 0 0 42.7403 -7.49609e-08 -7.49647e-08 0 0 0 190.283 5.32619 129.266 55.6912 -1 1 3 133 2.133 323.15 0 0 -0.05872 0.0294797 0.0294797 0 0 0 53.5464 -7.48748e-08 -7.48787e-08 0 0 0 190.291 5.33389 129.266 55.6912 -1 1 3 134 2.134 323.15 0 0 -0.05856 0.0294239 0.0294239 0 0 0 64.3524 -7.47888e-08 -7.47926e-08 0 0 0 190.3 5.34332 129.266 55.6912 -1 1 3 135 2.135 323.15 0 0 -0.0584 0.029368 0.029368 0 0 0 75.1585 -7.47027e-08 -7.47065e-08 0 0 0 190.311 5.35449 129.266 55.6912 -1 1 3 136 2.136 323.15 0 0 -0.05824 0.0293122 0.0293122 0 0 0 85.9646 -7.46167e-08 -7.46205e-08 0 0 0 190.324 5.36738 129.266 55.6912 -1 1 3 137 2.137 323.15 0 0 -0.05808 0.0292564 0.0292564 0 0 0 96.7707 -7.45306e-08 -7.45344e-08 0 0 0 190.339 5.38199 129.266 55.6912 -1 1 3 138 2.138 323.15 0 0 -0.05792 0.0292005 0.0292005 0 0 0 107.577 -7.44446e-08 -7.44484e-08 0 0 0 190.355 5.39834 129.266 55.6912 -1 1 3 139 2.139 323.15 0 0 -0.05776 0.0291447 0.0291447 0 0 0 118.383 -7.43585e-08 -7.43623e-08 0 0 0 190.373 5.41642 129.266 55.6912 -1 1 3 140 2.14 323.15 0 0 -0.0576 0.0290888 0.0290888 0 0 0 129.189 -7.42724e-08 -7.42763e-08 0 0 0 190.393 5.43622 129.266 55.6912 -1 1 3 141 2.141 323.15 0 0 -0.05744 0.029033 0.029033 0 0 0 139.995 -7.41864e-08 -7.41902e-08 0 0 0 190.415 5.45776 129.266 55.6912 -1 1 3 142 2.142 323.15 0 0 -0.05728 0.0289772 0.0289772 0 0 0 150.801 -7.41003e-08 -7.41041e-08 0 0 0 190.438 5.48102 129.266 55.6912 -1 1 3 143 2.143 323.15 0 0 -0.05712 0.0289213 0.0289213 0 0 0 161.607 -7.40143e-08 -7.40181e-08 0 0 0 190.463 5.50602 129.266 55.6912 -1 1 3 144 2.144 323.15 0 0 -0.05696 0.0288655 0.0288655 0 0 0 172.413 -7.39282e-08 -7.3932e-08 0 0 0 190.49 5.53274 129.266 55.6912 -1 1 3 145 2.145 323.15 0 0 -0.0568 0.0288096 0.0288096 0 0 0 183.219 -7.38422e-08 -7.3846e-08 0 0 0 190.518 5.56119 129.266 55.6912 -1 1 3 146 2.146 323.15 0 0 -0.05664 0.0287538 0.0287538 0 0 0 194.025 -7.37561e-08 -7.37599e-08 0 0 0 190.548 5.59137 129.266 55.6912 -1 1 3 147 2.147 323.15 0 0 -0.05648 0.028698 0.028698 0 0 0 204.831 -7.367e-08 -7.36739e-08 0 0 0 190.58 5.62328 129.266 55.6912 -1 1 3 148 2.148 323.15 0 0 -0.05632 0.0286421 0.0286421 0 0 0 215.638 -7.3584e-08 -7.35878e-08 0 0 0 190.614 5.65691 129.266 55.6912 -1 1 3 149 2.149 323.15 0 0 -0.05616 0.0285863 0.0285863 0 0 0 226.444 -7.34979e-08 -7.35017e-08 0 0 0 190.649 5.69228 129.266 55.6912 -1 1 3 150 2.15 323.15 0 0 -0.056 0.0285304 0.0285304 0 0 0 237.25 -7.34119e-08 -7.34157e-08 0 0 0 190.686 5.72938 129.266 55.6912 -1 1 3 151 2.151 323.15 0 0 -0.05584 0.0284746 0.0284746 0 0 0 248.056 -7.33258e-08 -7.33296e-08 0 0 0 190.725 5.7682 129.266 55.6912 -1 1 3 152 2.152 323.15 0 0 -0.05568 0.0284188 0.0284188 0 0 0 258.862 -7.32398e-08 -7.32436e-08 0 0 0 190.766 5.80875 129.266 55.6912 -1 1 3 153 2.153 323.15 0 0 -0.05552 0.0283629 0.0283629 0 0 0 269.668 -7.31537e-08 -7.31575e-08 0 0 0 190.808 5.85104 129.266 55.6912 -1 1 3 154 2.154 323.15 0 0 -0.05536 0.0283071 0.0283071 0 0 0 280.474 -7.30676e-08 -7.30715e-08 0 0 0 190.852 5.89505 129.266 55.6912 -1 1 3 155 2.155 323.15 0 0 -0.0552 0.0282512 0.0282512 0 0 0 291.28 -7.29816e-08 -7.29854e-08 0 0 0 190.898 5.94079 129.266 55.6912 -1 1 3 156 2.156 323.15 0 0 -0.05504 0.0281954 0.0281954 0 0 0 302.086 -7.28955e-08 -7.28994e-08 0 0 0 190.945 5.98826 129.266 55.6912 -1 1 3 157 2.157 323.15 0 0 -0.05488 0.0281396 0.0281396 0 0 0 312.892 -7.28095e-08 -7.28133e-08 0 0 0 190.994 6.03745 129.266 55.6912 -1 1 3 158 2.158 323.15 0 0 -0.05472 0.0280837 0.0280837 0 0 0 323.698 -7.27234e-08 -7.27272e-08 0 0 0 191.045 6.08838 129.266 55.6912 -1 1 3 159 2.159 323.15 0 0 -0.05456 0.0280279 0.0280279 0 0 0 334.504 -7.26374e-08 -7.26412e-08 0 0 0 191.098 6.14104 129.266 55.6912 -1 1 3 160 2.16 323.15 0 0 -0.0544 0.027972 0.027972 0 0 0 345.311 -7.25513e-08 -7.25551e-08 0 0 0 191.152 6.19542 129.266 55.6912 -1 1 3 161 2.161 323.15 0 0 -0.05424 0.0279162 0.0279162 0 0 0 356.117 -7.24653e-08 -7.24691e-08 0 0 0 191.208 6.25154 129.266 55.6912 -1 1 3 162 2.162 323.15 0 0 -0.05408 0.0278604 0.0278604 0 0 0 366.923 -7.23792e-08 -7.2383e-08 0 0 0 191.266 6.30938 129.266 55.6912 -1 1 3 163 2.163 323.15 0 0 -0.05392 0.0278045 0.0278045 0 0 0 377.729 -7.22931e-08 -7.22969e-08 0 0 0 191.326 6.36895 129.266 55.6912 -1 1 3 164 2.164 323.15 0 0 -0.05376 0.0277487 0.0277487 0 0 0 388.535 -7.22071e-08 -7.22109e-08 0 0 0 191.387 6.43025 129.266 55.6912 -1 1 3 165 2.165 323.15 0 0 -0.0536 0.0276928 0.0276928 0 0 0 399.341 -7.2121e-08 -7.21248e-08 0 0 0 191.45 6.49328 129.266 55.6912 -1 1 3 166 2.166 323.15 0 0 -0.05344 0.027637 0.027637 0 0 0 410.147 -7.20349e-08 -7.20388e-08 0 0 0 191.515 6.55804 129.266 55.6912 -1 1 3 167 2.167 323.15 0 0 -0.05328 0.0275812 0.0275812 0 0 0 420.953 -7.19489e-08 -7.19527e-08 0 0 0 191.581 6.62453 129.266 55.6912 -1 1 3 168 2.168 323.15 0 0 -0.05312 0.0275253 0.0275253 0 0 0 431.759 -7.18628e-08 -7.18667e-08 0 0 0 191.65 6.69275 129.266 55.6912 -1 1 3 169 2.169 323.15 0 0 -0.05296 0.0274695 0.0274695 0 0 0 442.565 -7.17768e-08 -7.17806e-08 0 0 0 191.72 6.76269 129.266 55.6912 -1 1 3 170 2.17 323.15 0 0 -0.0528 0.0274136 0.0274136 0 0 0 453.371 -7.16907e-08 -7.16945e-08 0 0 0 191.791 6.83437 129.266 55.6912 -1 1 3 171 2.171 323.15 0 0 -0.05264 0.0273578 0.0273578 0 0 0 464.177 -7.16046e-08 -7.16085e-08 0 0 0 191.865 6.90777 129.266 55.6912 -1 1 3 172 2.172 323.15 0 0 -0.05248 0.027302 0.027302 0 0 0 474.983 -7.15186e-08 -7.15225e-08 0 0 0 191.94 6.98291 129.266 55.6912 -1 1 3 173 2.173 323.15 0 0 -0.05232 0.0272461 0.0272461 0 0 0 485.79 -7.14326e-08 -7.14364e-08 0 0 0 192.017 7.05977 129.266 55.6912 -1 1 3 174 2.174 323.15 0 0 -0.05216 0.0271903 0.0271903 0 0 0 496.596 -7.13465e-08 -7.13504e-08 0 0 0 192.095 7.13836 129.266 55.6912 -1 1 3 175 2.175 323.15 0 0 -0.052 0.0271344 0.0271344 0 0 0 507.402 -7.12604e-08 -7.12643e-08 0 0 0 192.176 7.21868 129.266 55.6912 -1 1 3 176 2.176 323.15 0 0 -0.05184 0.0270786 0.0270786 0 0 0 518.208 -7.11744e-08 -7.11782e-08 0 0 0 192.258 7.30073 129.266 55.6912 -1 1 3 177 2.177 323.15 0 0 -0.05168 0.0270228 0.0270228 0 0 0 529.014 -7.10884e-08 -7.10921e-08 0 0 0 192.341 7.3845 129.266 55.6912 -1 1 3 178 2.178 323.15 0 0 -0.05152 0.0269669 0.0269669 0 0 0 539.82 -7.10023e-08 -7.10061e-08 0 0 0 192.427 7.47001 129.266 55.6912 -1 1 3 179 2.179 323.15 0 0 -0.05136 0.0269111 0.0269111 0 0 0 550.626 -7.09162e-08 -7.092e-08 0 0 0 192.514 7.55725 129.266 55.6912 -1 1 3 180 2.18 323.15 0 0 -0.0512 0.0268552 0.0268552 0 0 0 561.432 -7.08301e-08 -7.0834e-08 0 0 0 192.603 7.64621 129.266 55.6912 -1 1 3 181 2.181 323.15 0 0 -0.05104 0.0267994 0.0267994 0 0 0 572.238 -7.07441e-08 -7.07479e-08 0 0 0 192.694 7.73691 129.266 55.6912 -1 1 3 182 2.182 323.15 0 0 -0.05088 0.0267436 0.0267436 0 0 0 583.044 -7.06581e-08 -7.06619e-08 0 0 0 192.786 7.82933 129.266 55.6912 -1 1 3 183 2.183 323.15 0 0 -0.05072 0.0266877 0.0266877 0 0 0 593.85 -7.0572e-08 -7.05758e-08 0 0 0 192.88 7.92348 129.266 55.6912 -1 1 3 184 2.184 323.15 0 0 -0.05056 0.0266319 0.0266319 0 0 0 604.656 -7.04859e-08 -7.04897e-08 0 0 0 192.976 8.01936 129.266 55.6912 -1 1 3 185 2.185 323.15 0 0 -0.0504 0.026576 0.026576 0 0 0 615.463 -7.03999e-08 -7.04037e-08 0 0 0 193.074 8.11697 129.266 55.6912 -1 1 3 186 2.186 323.15 0 0 -0.05024 0.0265202 0.0265202 0 0 0 626.269 -7.03139e-08 -7.03177e-08 0 0 0 193.173 8.21631 129.266 55.6912 -1 1 3 187 2.187 323.15 0 0 -0.05008 0.0264644 0.0264644 0 0 0 637.075 -7.02277e-08 -7.02316e-08 0 0 0 193.274 8.31738 129.266 55.6912 -1 1 3 188 2.188 323.15 0 0 -0.04992 0.0264085 0.0264085 0 0 0 647.881 -7.01417e-08 -7.01455e-08 0 0 0 193.377 8.42017 129.266 55.6912 -1 1 3 189 2.189 323.15 0 0 -0.04976 0.0263527 0.0263527 0 0 0 658.687 -7.00557e-08 -7.00595e-08 0 0 0 193.482 8.5247 129.266 55.6912 -1 1 3 190 2.19 323.15 0 0 -0.0496 0.0262968 0.0262968 0 0 0 669.493 -6.99695e-08 -6.99733e-08 0 0 0 193.588 8.63095 129.266 55.6912 -1 1 3 191 2.191 323.15 0 0 -0.04944 0.026241 0.026241 0 0 0 680.299 -6.98835e-08 -6.98873e-08 0 0 0 193.696 8.73894 129.266 55.6912 -1 1 3 192 2.192 323.15 0 0 -0.04928 0.0261852 0.0261852 0 0 0 691.105 -6.97975e-08 -6.98013e-08 0 0 0 193.806 8.84865 129.266 55.6912 -1 1 3 193 2.193 323.15 0 0 -0.04912 0.0261293 0.0261293 0 0 0 701.911 -6.97114e-08 -6.97152e-08 0 0 0 193.917 8.96009 129.266 55.6912 -1 1 3 194 2.194 323.15 0 0 -0.04896 0.0260735 0.0260735 0 0 0 712.717 -6.96253e-08 -6.96292e-08 0 0 0 194.03 9.07326 129.266 55.6912 -1 1 3 195 2.195 323.15 0 0 -0.0488 0.0260176 0.0260176 0 0 0 723.523 -6.95393e-08 -6.95431e-08 0 0 0 194.145 9.18816 129.266 55.6912 -1 1 3 196 2.196 323.15 0 0 -0.04864 0.0259618 0.0259618 0 0 0 734.329 -6.94533e-08 -6.94571e-08 0 0 0 194.262 9.30479 129.266 55.6912 -1 1 3 197 2.197 323.15 0 0 -0.04848 0.025906 0.025906 0 0 0 745.135 -6.93672e-08 -6.9371e-08 0 0 0 194.38 9.42314 129.266 55.6912 -1 1 3 198 2.198 323.15 0 0 -0.04832 0.0258501 0.0258501 0 0 0 755.942 -6.92811e-08 -6.9285e-08 0 0 0 194.5 9.54323 129.266 55.6912 -1 1 3 199 2.199 323.15 0 0 -0.04816 0.0257943 0.0257943 0 0 0 766.748 -6.91951e-08 -6.91989e-08 0 0 0 194.622 9.66505 129.266 55.6912 -1 1 3 200 2.2 323.15 0 0 -0.048 0.0257384 0.0257384 0 0 0 777.554 -6.9109e-08 -6.91128e-08 0 0 0 194.746 9.78859 129.266 55.6912 -1 1 3 201 2.201 323.15 0 0 -0.04784 0.0256826 0.0256826 0 0 0 788.36 -6.9023e-08 -6.90268e-08 0 0 0 194.871 9.91386 129.266 55.6912 -1 1 3 202 2.202 323.15 0 0 -0.04768 0.0256268 0.0256268 0 0 0 799.166 -6.89369e-08 -6.89408e-08 0 0 0 194.998 10.0409 129.266 55.6912 -1 1 3 203 2.203 323.15 0 0 -0.04752 0.0255709 0.0255709 0 0 0 809.972 -6.88508e-08 -6.88546e-08 0 0 0 195.127 10.1696 129.266 55.6912 -1 1 3 204 2.204 323.15 0 0 -0.04736 0.0255151 0.0255151 0 0 0 820.778 -6.87648e-08 -6.87686e-08 0 0 0 195.257 10.3001 129.266 55.6912 -1 1 3 205 2.205 323.15 0 0 -0.0472 0.0254592 0.0254592 0 0 0 831.584 -6.86788e-08 -6.86826e-08 0 0 0 195.389 10.4322 129.266 55.6912 -1 1 3 206 2.206 323.15 0 0 -0.04704 0.0254034 0.0254034 0 0 0 842.39 -6.85926e-08 -6.85964e-08 0 0 0 195.523 10.5662 129.266 55.6912 -1 1 3 207 2.207 323.15 0 0 -0.04688 0.0253476 0.0253476 0 0 0 853.196 -6.85066e-08 -6.85104e-08 0 0 0 195.659 10.7018 129.266 55.6912 -1 1 3 208 2.208 323.15 0 0 -0.04672 0.0252917 0.0252917 0 0 0 864.002 -6.84206e-08 -6.84244e-08 0 0 0 195.796 10.8392 129.266 55.6912 -1 1 3 209 2.209 323.15 0 0 -0.04656 0.0252359 0.0252359 0 0 0 874.808 -6.83346e-08 -6.83384e-08 0 0 0 195.935 10.9783 129.266 55.6912 -1 1 3 210 2.21 323.15 0 0 -0.0464 0.02518 0.02518 0 0 0 885.615 -6.82484e-08 -6.82522e-08 0 0 0 196.076 11.1191 129.266 55.6912 -1 1 3 211 2.211 323.15 0 0 -0.04624 0.0251242 0.0251242 0 0 0 896.421 -6.81624e-08 -6.81662e-08 0 0 0 196.219 11.2617 129.266 55.6912 -1 1 3 212 2.212 323.15 0 0 -0.04608 0.0250684 0.0250684 0 0 0 907.227 -6.80764e-08 -6.80802e-08 0 0 0 196.363 11.406 129.266 55.6912 -1 1 3 213 2.213 323.15 0 0 -0.04592 0.0250125 0.0250125 0 0 0 918.033 -6.79902e-08 -6.79941e-08 0 0 0 196.509 11.552 129.266 55.6912 -1 1 3 214 2.214 323.15 0 0 -0.04576 0.0249567 0.0249567 0 0 0 928.839 -6.79042e-08 -6.7908e-08 0 0 0 196.657 11.6997 129.266 55.6912 -1 1 3 215 2.215 323.15 0 0 -0.0456 0.0249008 0.0249008 0 0 0 939.645 -6.78182e-08 -6.78221e-08 0 0 0 196.806 11.8492 129.266 55.6912 -1 1 3 216 2.216 323.15 0 0 -0.04544 0.024845 0.024845 0 0 0 950.451 -6.77321e-08 -6.77359e-08 0 0 0 196.957 12.0004 129.266 55.6912 -1 1 3 217 2.217 323.15 0 0 -0.04528 0.0247892 0.0247892 0 0 0 961.257 -6.76461e-08 -6.76498e-08 0 0 0 197.11 12.1534 129.266 55.6912 -1 1 3 218 2.218 323.15 0 0 -0.04512 0.0247333 0.0247333 0 0 0 972.063 -6.756e-08 -6.75638e-08 0 0 0 197.265 12.308 129.266 55.6912 -1 1 3 219 2.219 323.15 0 0 -0.04496 0.0246775 0.0246775 0 0 0 982.869 -6.74739e-08 -6.74777e-08 0 0 0 197.421 12.4644 129.266 55.6912 -1 1 3 220 2.22 323.15 0 0 -0.0448 0.0246216 0.0246216 0 0 0 993.675 -6.73879e-08 -6.73917e-08 0 0 0 197.579 12.6226 129.266 55.6912 -1 1 3 221 2.221 323.15 0 0 -0.04464 0.0245658 0.0245658 0 0 0 1004.48 -6.73018e-08 -6.73056e-08 0 0 0 197.739 12.7824 129.266 55.6912 -1 1 3 222 2.222 323.15 0 0 -0.04448 0.02451 0.02451 0 0 0 1015.29 -6.72158e-08 -6.72197e-08 0 0 0 197.901 12.944 129.266 55.6912 -1 1 3 223 2.223 323.15 0 0 -0.04432 0.0244541 0.0244541 0 0 0 1026.09 -6.71297e-08 -6.71335e-08 0 0 0 198.064 13.1073 129.266 55.6912 -1 1 3 224 2.224 323.15 0 0 -0.04416 0.0243766 0.0243766 0 0 0 1027.22 9.35003e-08 9.34964e-08 0 0 0 198.228 13.0989 129.395 55.7341 -1 1 3 225 2.225 323.15 0 0 -0.044 0.0242981 0.0242981 0 0 0 1027.89 9.35866e-08 9.35828e-08 0 0 0 198.393 13.0824 129.531 55.7792 -1 1 3 226 2.226 323.15 0 0 -0.04384 0.0242196 0.0242196 0 0 0 1028.56 9.36727e-08 9.36689e-08 0 0 0 198.557 13.066 129.667 55.8242 -1 1 3 227 2.227 323.15 0 0 -0.04368 0.0241411 0.0241411 0 0 0 1029.23 9.37591e-08 9.37553e-08 0 0 0 198.722 13.0496 129.803 55.8692 -1 1 3 228 2.228 323.15 0 0 -0.04352 0.0240626 0.0240626 0 0 0 1029.9 9.38453e-08 9.38414e-08 0 0 0 198.887 13.0333 129.939 55.9143 -1 1 3 229 2.229 323.15 0 0 -0.04336 0.0239841 0.0239841 0 0 0 1030.57 9.39313e-08 9.39273e-08 0 0 0 199.052 13.0171 130.075 55.9593 -1 1 3 230 2.23 323.15 0 0 -0.0432 0.0239056 0.0239056 0 0 0 1031.24 9.40177e-08 9.40137e-08 0 0 0 199.217 13.001 130.211 56.0043 -1 1 3 231 2.231 323.15 0 0 -0.04304 0.0238271 0.0238271 0 0 0 1031.91 9.41038e-08 9.41e-08 0 0 0 199.382 12.9849 130.347 56.0493 -1 1 3 232 2.232 323.15 0 0 -0.04288 0.0237486 0.0237486 0 0 0 1032.58 9.41901e-08 9.41863e-08 0 0 0 199.547 12.9689 130.484 56.0944 -1 1 3 233 2.233 323.15 0 0 -0.04272 0.0236701 0.0236701 0 0 0 1033.25 9.42769e-08 9.42729e-08 0 0 0 199.712 12.9529 130.62 56.1394 -1 1 3 234 2.234 323.15 0 0 -0.04256 0.0235916 0.0235916 0 0 0 1033.92 9.43629e-08 9.43589e-08 0 0 0 199.877 12.9371 130.756 56.1844 -1 1 3 235 2.235 323.15 0 0 -0.0424 0.0235131 0.0235131 0 0 0 1034.58 9.4449e-08 9.44451e-08 0 0 0 200.043 12.9213 130.892 56.2295 -1 1 3 236 2.236 323.15 0 0 -0.04224 0.0234346 0.0234346 0 0 0 1035.25 9.45354e-08 9.45316e-08 0 0 0 200.208 12.9056 131.028 56.2745 -1 1 3 237 2.237 323.15 0 0 -0.04208 0.0233561 0.0233561 0 0 0 1035.92 9.46221e-08 9.46182e-08 0 0 0 200.374 12.8899 131.165 56.3195 -1 1 3 238 2.238 323.15 0 0 -0.04192 0.0232776 0.0232776 0 0 0 1036.59 9.47084e-08 9.47044e-08 0 0 0 200.54 12.8744 131.301 56.3646 -1 1 3 239 2.239 323.15 0 0 -0.04176 0.0231991 0.0231991 0 0 0 1037.26 9.47948e-08 9.47909e-08 0 0 0 200.706 12.8589 131.437 56.4096 -1 1 3 240 2.24 323.15 0 0 -0.0416 0.0231206 0.0231206 0 0 0 1037.92 9.48812e-08 9.48772e-08 0 0 0 200.872 12.8434 131.574 56.4546 -1 1 3 241 2.241 323.15 0 0 -0.04144 0.0230421 0.0230421 0 0 0 1038.59 9.49675e-08 9.49634e-08 0 0 0 201.038 12.8281 131.71 56.4997 -1 1 3 242 2.242 323.15 0 0 -0.04128 0.0229636 0.0229636 0 0 0 1039.26 9.50538e-08 9.50495e-08 0 0 0 201.204 12.8128 131.847 56.5447 -1 1 3 243 2.243 323.15 0 0 -0.04112 0.022885 0.022885 0 0 0 1039.93 9.51399e-08 9.51358e-08 0 0 0 201.371 12.7976 131.983 56.5897 -1 1 3 244 2.244 323.15 0 0 -0.04096 0.0228065 0.0228065 0 0 0 1040.59 9.52259e-08 9.52219e-08 0 0 0 201.537 12.7824 132.12 56.6348 -1 1 3 245 2.245 323.15 0 0 -0.0408 0.022728 0.022728 0 0 0 1041.26 9.53121e-08 9.5308e-08 0 0 0 201.704 12.7674 132.256 56.6798 -1 1 3 246 2.246 323.15 0 0 -0.04064 0.0226495 0.0226495 0 0 0 1041.93 9.5398e-08 9.53936e-08 0 0 0 201.87 12.7524 132.393 56.7248 -1 1 3 247 2.247 323.15 0 0 -0.04048 0.022571 0.022571 0 0 0 1042.6 9.54838e-08 9.54794e-08 0 0 0 202.037 12.7375 132.53 56.7699 -1 1 3 248 2.248 323.15 0 0 -0.04032 0.0224925 0.0224925 0 0 0 1043.26 9.55704e-08 9.5566e-08 0 0 0 202.204 12.7226 132.666 56.8149 -1 1 3 249 2.249 323.15 0 0 -0.04016 0.022414 0.022414 0 0 0 1043.93 9.5657e-08 9.56525e-08 0 0 0 202.371 12.7078 132.803 56.8599 -1 1 3 250 2.25 323.15 0 0 -0.04 0.0223355 0.0223355 0 0 0 1044.6 9.57434e-08 9.5739e-08 0 0 0 202.538 12.6931 132.94 56.905 -1 1 3 251 2.251 323.15 0 0 -0.03984 0.022257 0.022257 0 0 0 1045.26 9.58295e-08 9.58251e-08 0 0 0 202.705 12.6785 133.077 56.95 -1 1 3 252 2.252 323.15 0 0 -0.03968 0.0221785 0.0221785 0 0 0 1045.93 9.59151e-08 9.5911e-08 0 0 0 202.872 12.6639 133.213 56.9951 -1 1 3 253 2.253 323.15 0 0 -0.03952 0.0221 0.0221 0 0 0 1046.6 9.60015e-08 9.59973e-08 0 0 0 203.04 12.6494 133.35 57.0401 -1 1 3 254 2.254 323.15 0 0 -0.03936 0.0220214 0.0220214 0 0 0 1047.26 9.60879e-08 9.6084e-08 0 0 0 203.207 12.635 133.487 57.0851 -1 1 3 255 2.255 323.15 0 0 -0.0392 0.0219429 0.0219429 0 0 0 1047.93 9.6174e-08 9.61699e-08 0 0 0 203.375 12.6207 133.624 57.1302 -1 1 3 256 2.256 323.15 0 0 -0.03904 0.0218644 0.0218644 0 0 0 1048.59 9.62602e-08 9.62563e-08 0 0 0 203.543 12.6064 133.761 57.1752 -1 1 3 257 2.257 323.15 0 0 -0.03888 0.0217859 0.0217859 0 0 0 1049.26 9.63466e-08 9.63426e-08 0 0 0 203.71 12.5922 133.898 57.2203 -1 1 3 258 2.258 323.15 0 0 -0.03872 0.0217074 0.0217074 0 0 0 1049.93 9.6433e-08 9.6429e-08 0 0 0 203.878 12.5781 134.035 57.2653 -1 1 3 259 2.259 323.15 0 0 -0.03856 0.0216289 0.0216289 0 0 0 1050.59 9.65194e-08 9.65154e-08 0 0 0 204.046 12.564 134.172 57.3103 -1 1 3 260 2.26 323.15 0 0 -0.0384 0.0215504 0.0215504 0 0 0 1051.26 9.66055e-08 9.66015e-08 0 0 0 204.215 12.55 134.309 57.3554 -1 1 3 261 2.261 323.15 0 0 -0.03824 0.0214719 0.0214719 0 0 0 1051.92 9.66916e-08 9.66876e-08 0 0 0 204.383 12.5361 134.446 57.4004 -1 1 3 262 2.262 323.15 0 0 -0.03808 0.0213934 0.0213934 0 0 0 1052.59 9.6778e-08 9.6774e-08 0 0 0 204.551 12.5223 134.583 57.4455 -1 1 3 263 2.263 323.15 0 0 -0.03792 0.0213148 0.0213148 0 0 0 1053.25 9.68644e-08 9.68602e-08 0 0 0 204.72 12.5085 134.721 57.4905 -1 1 3 264 2.264 323.15 0 0 -0.03776 0.0212363 0.0212363 0 0 0 1053.92 9.69507e-08 9.69464e-08 0 0 0 204.888 12.4948 134.858 57.5356 -1 1 3 265 2.265 323.15 0 0 -0.0376 0.0211578 0.0211578 0 0 0 1054.58 9.70368e-08 9.70327e-08 0 0 0 205.057 12.4812 134.995 57.5806 -1 1 3 266 2.266 323.15 0 0 -0.03744 0.0210793 0.0210793 0 0 0 1055.25 9.71234e-08 9.71193e-08 0 0 0 205.226 12.4676 135.132 57.6257 -1 1 3 267 2.267 323.15 0 0 -0.03728 0.0210008 0.0210008 0 0 0 1055.91 9.72096e-08 9.72054e-08 0 0 0 205.395 12.4542 135.27 57.6707 -1 1 3 268 2.268 323.15 0 0 -0.03712 0.0209223 0.0209223 0 0 0 1056.58 9.72954e-08 9.72914e-08 0 0 0 205.564 12.4408 135.407 57.7158 -1 1 3 269 2.269 323.15 0 0 -0.03696 0.0208438 0.0208438 0 0 0 1057.24 9.73818e-08 9.73776e-08 0 0 0 205.733 12.4274 135.544 57.7608 -1 1 3 270 2.27 323.15 0 0 -0.0368 0.0207652 0.0207652 0 0 0 1057.91 9.74686e-08 9.74642e-08 0 0 0 205.902 12.4142 135.682 57.8059 -1 1 3 271 2.271 323.15 0 0 -0.03664 0.0206867 0.0206867 0 0 0 1058.57 9.75541e-08 9.75499e-08 0 0 0 206.071 12.401 135.819 57.8509 -1 1 3 272 2.272 323.15 0 0 -0.03648 0.0206082 0.0206082 0 0 0 1059.24 9.76407e-08 9.76365e-08 0 0 0 206.241 12.3878 135.957 57.896 -1 1 3 273 2.273 323.15 0 0 -0.03632 0.0205297 0.0205297 0 0 0 1059.9 9.77271e-08 9.77229e-08 0 0 0 206.41 12.3748 136.094 57.941 -1 1 3 274 2.274 323.15 0 0 -0.03616 0.0204512 0.0204512 0 0 0 1060.56 9.78131e-08 9.78087e-08 0 0 0 206.58 12.3618 136.232 57.9861 -1 1 3 275 2.275 323.15 0 0 -0.036 0.0203727 0.0203727 0 0 0 1061.23 9.78997e-08 9.78953e-08 0 0 0 206.75 12.3489 136.37 58.0311 -1 1 3 276 2.276 323.15 0 0 -0.03584 0.0202942 0.0202942 0 0 0 1061.89 9.79858e-08 9.79814e-08 0 0 0 206.919 12.3361 136.507 58.0762 -1 1 3 277 2.277 323.15 0 0 -0.03568 0.0202156 0.0202156 0 0 0 1062.56 9.80719e-08 9.80676e-08 0 0 0 207.089 12.3233 136.645 58.1212 -1 1 3 278 2.278 323.15 0 0 -0.03552 0.0201371 0.0201371 0 0 0 1063.22 9.81582e-08 9.81539e-08 0 0 0 207.259 12.3107 136.783 58.1663 -1 1 3 279 2.279 323.15 0 0 -0.03536 0.0200586 0.0200586 0 0 0 1063.88 9.82446e-08 9.82401e-08 0 0 0 207.43 12.298 136.92 58.2113 -1 1 3 280 2.28 323.15 0 0 -0.0352 0.0199801 0.0199801 0 0 0 1064.55 9.83309e-08 9.83264e-08 0 0 0 207.6 12.2855 137.058 58.2564 -1 1 3 281 2.281 323.15 0 0 -0.03504 0.0199016 0.0199016 0 0 0 1065.21 9.84173e-08 9.84125e-08 0 0 0 207.77 12.273 137.196 58.3014 -1 1 3 282 2.282 323.15 0 0 -0.03488 0.0198231 0.0198231 0 0 0 1065.87 9.85035e-08 9.8499e-08 0 0 0 207.941 12.2606 137.334 58.3465 -1 1 3 283 2.283 323.15 0 0 -0.03472 0.0197445 0.0197445 0 0 0 1066.54 9.85899e-08 9.85853e-08 0 0 0 208.111 12.2483 137.471 58.3915 -1 1 3 284 2.284 323.15 0 0 -0.03456 0.019666 0.019666 0 0 0 1067.2 9.86759e-08 9.86712e-08 0 0 0 208.282 12.2361 137.609 58.4366 -1 1 3 285 2.285 323.15 0 0 -0.0344 0.0195875 0.0195875 0 0 0 1067.86 9.87625e-08 9.87576e-08 0 0 0 208.453 12.2239 137.747 58.4816 -1 1 3 286 2.286 323.15 0 0 -0.03424 0.019509 0.019509 0 0 0 1068.52 9.88488e-08 9.88439e-08 0 0 0 208.624 12.2118 137.885 58.5267 -1 1 3 287 2.287 323.15 0 0 -0.03408 0.0194305 0.0194305 0 0 0 1069.19 9.89352e-08 9.89304e-08 0 0 0 208.795 12.1997 138.023 58.5717 -1 1 3 288 2.288 323.15 0 0 -0.03392 0.0193519 0.0193519 0 0 0 1069.85 9.90217e-08 9.9017e-08 0 0 0 208.966 12.1878 138.161 58.6168 -1 1 3 289 2.289 323.15 0 0 -0.03376 0.0192734 0.0192734 0 0 0 1070.51 9.91081e-08 9.91033e-08 0 0 0 209.137 12.1759 138.299 58.6619 -1 1 3 290 2.29 323.15 0 0 -0.0336 0.0191949 0.0191949 0 0 0 1071.17 9.91942e-08 9.91893e-08 0 0 0 209.308 12.1641 138.437 58.7069 -1 1 3 291 2.291 323.15 0 0 -0.03344 0.0191164 0.0191164 0 0 0 1071.84 9.92802e-08 9.92753e-08 0 0 0 209.48 12.1523 138.576 58.752 -1 1 3 292 2.292 323.15 0 0 -0.03328 0.0190379 0.0190379 0 0 0 1072.5 9.93665e-08 9.93617e-08 0 0 0 209.651 12.1407 138.714 58.797 -1 1 3 293 2.293 323.15 0 0 -0.03312 0.0189594 0.0189594 0 0 0 1073.16 9.94527e-08 9.94479e-08 0 0 0 209.823 12.1291 138.852 58.8421 -1 1 3 294 2.294 323.15 0 0 -0.03296 0.0188808 0.0188808 0 0 0 1073.82 9.95386e-08 9.95337e-08 0 0 0 209.995 12.1175 138.99 58.8872 -1 1 3 295 2.295 323.15 0 0 -0.0328 0.0188023 0.0188023 0 0 0 1074.48 9.9625e-08 9.96202e-08 0 0 0 210.167 12.1061 139.128 58.9322 -1 1 3 296 2.296 323.15 0 0 -0.03264 0.0187238 0.0187238 0 0 0 1075.15 9.97117e-08 9.97068e-08 0 0 0 210.339 12.0947 139.267 58.9773 -1 1 3 297 2.297 323.15 0 0 -0.03248 0.0186453 0.0186453 0 0 0 1075.81 9.97982e-08 9.97933e-08 0 0 0 210.511 12.0834 139.405 59.0223 -1 1 3 298 2.298 323.15 0 0 -0.03232 0.0185667 0.0185667 0 0 0 1076.47 9.98844e-08 9.98795e-08 0 0 0 210.683 12.0721 139.543 59.0674 -1 1 3 299 2.299 323.15 0 0 -0.03216 0.0184882 0.0184882 0 0 0 1077.13 9.99709e-08 9.99662e-08 0 0 0 210.855 12.061 139.682 59.1125 -1 1 3 300 2.3 323.15 0 0 -0.032 0.0184097 0.0184097 0 0 0 1077.79 1.00057e-07 1.00052e-07 0 0 0 211.028 12.0499 139.82 59.1575 -1 1 3 301 2.301 323.15 0 0 -0.03184 0.0183312 0.0183312 0 0 0 1078.45 1.00143e-07 1.00139e-07 0 0 0 211.2 12.0388 139.959 59.2026 -1 1 3 302 2.302 323.15 0 0 -0.03168 0.0182527 0.0182527 0 0 0 1079.11 1.00229e-07 1.00225e-07 0 0 0 211.373 12.0279 140.097 59.2477 -1 1 3 303 2.303 323.15 0 0 -0.03152 0.0181741 0.0181741 0 0 0 1079.78 1.00315e-07 1.00311e-07 0 0 0 211.545 12.017 140.236 59.2927 -1 1 3 304 2.304 323.15 0 0 -0.03136 0.0180956 0.0180956 0 0 0 1080.44 1.00401e-07 1.00397e-07 0 0 0 211.718 12.0062 140.374 59.3378 -1 1 3 305 2.305 323.15 0 0 -0.0312 0.0180171 0.0180171 0 0 0 1081.1 1.00487e-07 1.00483e-07 0 0 0 211.891 11.9955 140.513 59.3828 -1 1 3 306 2.306 323.15 0 0 -0.03104 0.0179386 0.0179386 0 0 0 1081.76 1.00574e-07 1.00569e-07 0 0 0 212.064 11.9848 140.651 59.4279 -1 1 3 307 2.307 323.15 0 0 -0.03088 0.01786 0.01786 0 0 0 1082.42 1.0066e-07 1.00656e-07 0 0 0 212.237 11.9742 140.79 59.473 -1 1 3 308 2.308 323.15 0 0 -0.03072 0.0177815 0.0177815 0 0 0 1083.08 1.00746e-07 1.00742e-07 0 0 0 212.411 11.9637 140.929 59.518 -1 1 3 309 2.309 323.15 0 0 -0.03056 0.017703 0.017703 0 0 0 1083.74 1.00832e-07 1.00828e-07 0 0 0 212.584 11.9533 141.068 59.5631 -1 1 3 310 2.31 323.15 0 0 -0.0304 0.0176245 0.0176245 0 0 0 1084.4 1.00918e-07 1.00914e-07 0 0 0 212.757 11.9429 141.206 59.6082 -1 1 3 311 2.311 323.15 0 0 -0.03024 0.017546 0.017546 0 0 0 1085.06 1.01004e-07 1.01e-07 0 0 0 212.931 11.9326 141.345 59.6532 -1 1 3 312 2.312 323.15 0 0 -0.03008 0.0174674 0.0174674 0 0 0 1085.72 1.0109e-07 1.01087e-07 0 0 0 213.105 11.9224 141.484 59.6983 -1 1 3 313 2.313 323.15 0 0 -0.02992 0.0173889 0.0173889 0 0 0 1086.38 1.01177e-07 1.01173e-07 0 0 0 213.278 11.9122 141.623 59.7434 -1 1 3 314 2.314 323.15 0 0 -0.02976 0.0173104 0.0173104 0 0 0 1087.04 1.01263e-07 1.0126e-07 0 0 0 213.452 11.9021 141.762 59.7885 -1 1 3 315 2.315 323.15 0 0 -0.0296 0.0172319 0.0172319 0 0 0 1087.7 1.01349e-07 1.01346e-07 0 0 0 213.626 11.8921 141.901 59.8335 -1 1 3 316 2.316 323.15 0 0 -0.02944 0.0171533 0.0171533 0 0 0 1088.36 1.01435e-07 1.01432e-07 0 0 0 213.8 11.8822 142.04 59.8786 -1 1 3 317 2.317 323.15 0 0 -0.02928 0.0170748 0.0170748 0 0 0 1089.02 1.01522e-07 1.01518e-07 0 0 0 213.974 11.8723 142.179 59.9237 -1 1 3 318 2.318 323.15 0 0 -0.02912 0.0169963 0.0169963 0 0 0 1089.68 1.01608e-07 1.01605e-07 0 0 0 214.149 11.8625 142.318 59.9687 -1 1 3 319 2.319 323.15 0 0 -0.02896 0.0169178 0.0169178 0 0 0 1090.34 1.01694e-07 1.01691e-07 0 0 0 214.323 11.8528 142.457 60.0138 -1 1 3 320 2.32 323.15 0 0 -0.0288 0.0168392 0.0168392 0 0 0 1091 1.01781e-07 1.01777e-07 0 0 0 214.498 11.8431 142.596 60.0589 -1 1 3 321 2.321 323.15 0 0 -0.02864 0.0167607 0.0167607 0 0 0 1091.65 1.01867e-07 1.01864e-07 0 0 0 214.672 11.8336 142.735 60.1039 -1 1 3 322 2.322 323.15 0 0 -0.02848 0.0166822 0.0166822 0 0 0 1092.31 1.01954e-07 1.0195e-07 0 0 0 214.847 11.8241 142.874 60.149 -1 1 3 323 2.323 323.15 0 0 -0.02832 0.0166036 0.0166036 0 0 0 1092.97 1.0204e-07 1.02037e-07 0 0 0 215.022 11.8146 143.013 60.1941 -1 1 3 324 2.324 323.15 0 0 -0.02816 0.0165251 0.0165251 0 0 0 1093.63 1.02127e-07 1.02123e-07 0 0 0 215.197 11.8053 143.152 60.2392 -1 1 3 325 2.325 323.15 0 0 -0.028 0.0164466 0.0164466 0 0 0 1094.29 1.02213e-07 1.02209e-07 0 0 0 215.372 11.796 143.292 60.2842 -1 1 3 326 2.326 323.15 0 0 -0.02784 0.0163681 0.0163681 0 0 0 1094.95 1.02299e-07 1.02295e-07 0 0 0 215.547 11.7868 143.431 60.3293 -1 1 3 327 2.327 323.15 0 0 -0.02768 0.0162895 0.0162895 0 0 0 1095.61 1.02385e-07 1.02381e-07 0 0 0 215.722 11.7776 143.57 60.3744 -1 1 3 328 2.328 323.15 0 0 -0.02752 0.016211 0.016211 0 0 0 1096.27 1.02471e-07 1.02468e-07 0 0 0 215.898 11.7685 143.71 60.4195 -1 1 3 329 2.329 323.15 0 0 -0.02736 0.0161325 0.0161325 0 0 0 1096.92 1.02558e-07 1.02554e-07 0 0 0 216.073 11.7595 143.849 60.4645 -1 1 3 330 2.33 323.15 0 0 -0.0272 0.016054 0.016054 0 0 0 1097.58 1.02644e-07 1.0264e-07 0 0 0 216.249 11.7506 143.988 60.5096 -1 1 3 331 2.331 323.15 0 0 -0.02704 0.0159754 0.0159754 0 0 0 1098.24 1.0273e-07 1.02727e-07 0 0 0 216.424 11.7418 144.128 60.5547 -1 1 3 332 2.332 323.15 0 0 -0.02688 0.0158969 0.0158969 0 0 0 1098.9 1.02817e-07 1.02813e-07 0 0 0 216.6 11.733 144.267 60.5998 -1 1 3 333 2.333 323.15 0 0 -0.02672 0.0158184 0.0158184 0 0 0 1099.56 1.02903e-07 1.029e-07 0 0 0 216.776 11.7243 144.407 60.6449 -1 1 3 334 2.334 323.15 0 0 -0.02656 0.0157398 0.0157398 0 0 0 1100.21 1.02989e-07 1.02986e-07 0 0 0 216.952 11.7156 144.546 60.6899 -1 1 3 335 2.335 323.15 0 0 -0.0264 0.0156613 0.0156613 0 0 0 1100.87 1.03076e-07 1.03072e-07 0 0 0 217.128 11.7071 144.686 60.735 -1 1 3 336 2.336 323.15 0 0 -0.02624 0.0155828 0.0155828 0 0 0 1101.53 1.03162e-07 1.03158e-07 0 0 0 217.304 11.6986 144.825 60.7801 -1 1 3 337 2.337 323.15 0 0 -0.02608 0.0155042 0.0155042 0 0 0 1102.19 1.03248e-07 1.03245e-07 0 0 0 217.48 11.6901 144.965 60.8252 -1 1 3 338 2.338 323.15 0 0 -0.02592 0.0154257 0.0154257 0 0 0 1102.84 1.03335e-07 1.03331e-07 0 0 0 217.657 11.6818 145.105 60.8702 -1 1 3 339 2.339 323.15 0 0 -0.02576 0.0153472 0.0153472 0 0 0 1103.5 1.03421e-07 1.03418e-07 0 0 0 217.833 11.6735 145.245 60.9153 -1 1 3 340 2.34 323.15 0 0 -0.0256 0.0152687 0.0152687 0 0 0 1104.16 1.03507e-07 1.03504e-07 0 0 0 218.01 11.6653 145.384 60.9604 -1 1 3 341 2.341 323.15 0 0 -0.02544 0.0151901 0.0151901 0 0 0 1104.82 1.03594e-07 1.03591e-07 0 0 0 218.187 11.6572 145.524 61.0055 -1 1 3 342 2.342 323.15 0 0 -0.02528 0.0151116 0.0151116 0 0 0 1105.47 1.0368e-07 1.03677e-07 0 0 0 218.363 11.6491 145.664 61.0506 -1 1 3 343 2.343 323.15 0 0 -0.02512 0.0150331 0.0150331 0 0 0 1106.13 1.03766e-07 1.03763e-07 0 0 0 218.54 11.6411 145.804 61.0957 -1 1 3 344 2.344 323.15 0 0 -0.02496 0.0149545 0.0149545 0 0 0 1106.79 1.03853e-07 1.0385e-07 0 0 0 218.717 11.6332 145.944 61.1407 -1 1 3 345 2.345 323.15 0 0 -0.0248 0.014876 0.014876 0 0 0 1107.44 1.03939e-07 1.03936e-07 0 0 0 218.895 11.6254 146.083 61.1858 -1 1 3 346 2.346 323.15 0 0 -0.02464 0.0147975 0.0147975 0 0 0 1108.1 1.04025e-07 1.04022e-07 0 0 0 219.072 11.6176 146.223 61.2309 -1 1 3 347 2.347 323.15 0 0 -0.02448 0.0147189 0.0147189 0 0 0 1108.76 1.04112e-07 1.04108e-07 0 0 0 219.249 11.6099 146.363 61.276 -1 1 3 348 2.348 323.15 0 0 -0.02432 0.0146404 0.0146404 0 0 0 1109.41 1.04198e-07 1.04195e-07 0 0 0 219.427 11.6023 146.503 61.3211 -1 1 3 349 2.349 323.15 0 0 -0.02416 0.0145619 0.0145619 0 0 0 1110.07 1.04284e-07 1.04281e-07 0 0 0 219.604 11.5947 146.643 61.3662 -1 1 3 350 2.35 323.15 0 0 -0.024 0.0144833 0.0144833 0 0 0 1110.72 1.04371e-07 1.04367e-07 0 0 0 219.782 11.5872 146.783 61.4112 -1 1 3 351 2.351 323.15 0 0 -0.02384 0.0144048 0.0144048 0 0 0 1111.38 1.04457e-07 1.04454e-07 0 0 0 219.96 11.5798 146.923 61.4563 -1 1 3 352 2.352 323.15 0 0 -0.02368 0.0143263 0.0143263 0 0 0 1112.04 1.04543e-07 1.0454e-07 0 0 0 220.138 11.5725 147.064 61.5014 -1 1 3 353 2.353 323.15 0 0 -0.02352 0.0142477 0.0142477 0 0 0 1112.69 1.04629e-07 1.04626e-07 0 0 0 220.315 11.5652 147.204 61.5465 -1 1 3 354 2.354 323.15 0 0 -0.02336 0.0141692 0.0141692 0 0 0 1113.35 1.04715e-07 1.04712e-07 0 0 0 220.494 11.558 147.344 61.5916 -1 1 3 355 2.355 323.15 0 0 -0.0232 0.0140907 0.0140907 0 0 0 1114 1.04802e-07 1.04799e-07 0 0 0 220.672 11.5509 147.484 61.6367 -1 1 3 356 2.356 323.15 0 0 -0.02304 0.0140121 0.0140121 0 0 0 1114.66 1.04888e-07 1.04885e-07 0 0 0 220.85 11.5439 147.624 61.6818 -1 1 3 357 2.357 323.15 0 0 -0.02288 0.0139336 0.0139336 0 0 0 1115.31 1.04974e-07 1.04971e-07 0 0 0 221.028 11.5369 147.765 61.7269 -1 1 3 358 2.358 323.15 0 0 -0.02272 0.0138551 0.0138551 0 0 0 1115.97 1.05061e-07 1.05058e-07 0 0 0 221.207 11.53 147.905 61.7719 -1 1 3 359 2.359 323.15 0 0 -0.02256 0.0137765 0.0137765 0 0 0 1116.63 1.05147e-07 1.05144e-07 0 0 0 221.386 11.5232 148.045 61.817 -1 1 3 360 2.36 323.15 0 0 -0.0224 0.013698 0.013698 0 0 0 1117.28 1.05233e-07 1.0523e-07 0 0 0 221.564 11.5164 148.186 61.8621 -1 1 3 361 2.361 323.15 0 0 -0.02224 0.0136195 0.0136195 0 0 0 1117.94 1.05319e-07 1.05316e-07 0 0 0 221.743 11.5097 148.326 61.9072 -1 1 3 362 2.362 323.15 0 0 -0.02208 0.0135409 0.0135409 0 0 0 1118.59 1.05406e-07 1.05403e-07 0 0 0 221.922 11.5031 148.467 61.9523 -1 1 3 363 2.363 323.15 0 0 -0.02192 0.0134624 0.0134624 0 0 0 1119.25 1.05492e-07 1.05489e-07 0 0 0 222.101 11.4966 148.607 61.9974 -1 1 3 364 2.364 323.15 0 0 -0.02176 0.0133838 0.0133838 0 0 0 1119.9 1.05578e-07 1.05575e-07 0 0 0 222.28 11.4901 148.748 62.0425 -1 1 3 365 2.365 323.15 0 0 -0.0216 0.0133053 0.0133053 0 0 0 1120.55 1.05664e-07 1.05661e-07 0 0 0 222.459 11.4837 148.888 62.0876 -1 1 3 366 2.366 323.15 0 0 -0.02144 0.0132268 0.0132268 0 0 0 1121.21 1.05751e-07 1.05748e-07 0 0 0 222.639 11.4774 149.029 62.1327 -1 1 3 367 2.367 323.15 0 0 -0.02128 0.0131482 0.0131482 0 0 0 1121.86 1.05837e-07 1.05834e-07 0 0 0 222.818 11.4711 149.169 62.1778 -1 1 3 368 2.368 323.15 0 0 -0.02112 0.0130697 0.0130697 0 0 0 1122.52 1.05924e-07 1.0592e-07 0 0 0 222.998 11.465 149.31 62.2229 -1 1 3 369 2.369 323.15 0 0 -0.02096 0.0129912 0.0129912 0 0 0 1123.17 1.0601e-07 1.06007e-07 0 0 0 223.177 11.4589 149.451 62.2679 -1 1 3 370 2.37 323.15 0 0 -0.0208 0.0129126 0.0129126 0 0 0 1123.83 1.06096e-07 1.06093e-07 0 0 0 223.357 11.4528 149.591 62.313 -1 1 3 371 2.371 323.15 0 0 -0.02064 0.0128341 0.0128341 0 0 0 1124.48 1.06182e-07 1.06179e-07 0 0 0 223.537 11.4469 149.732 62.3581 -1 1 3 372 2.372 323.15 0 0 -0.02048 0.0127556 0.0127556 0 0 0 1125.14 1.06268e-07 1.06265e-07 0 0 0 223.717 11.441 149.873 62.4032 -1 1 3 373 2.373 323.15 0 0 -0.02032 0.012677 0.012677 0 0 0 1125.79 1.06355e-07 1.06351e-07 0 0 0 223.897 11.4351 150.014 62.4483 -1 1 3 374 2.374 323.15 0 0 -0.02016 0.0125985 0.0125985 0 0 0 1126.44 1.06441e-07 1.06438e-07 0 0 0 224.077 11.4294 150.154 62.4934 -1 1 3 375 2.375 323.15 0 0 -0.02 0.0125199 0.0125199 0 0 0 1127.1 1.06527e-07 1.06524e-07 0 0 0 224.258 11.4237 150.295 62.5385 -1 1 3 376 2.376 323.15 0 0 -0.01984 0.0124414 0.0124414 0 0 0 1127.75 1.06614e-07 1.06611e-07 0 0 0 224.438 11.4181 150.436 62.5836 -1 1 3 377 2.377 323.15 0 0 -0.01968 0.0123629 0.0123629 0 0 0 1128.4 1.067e-07 1.06697e-07 0 0 0 224.618 11.4126 150.577 62.6287 -1 1 3 378 2.378 323.15 0 0 -0.01952 0.0122843 0.0122843 0 0 0 1129.06 1.06786e-07 1.06783e-07 0 0 0 224.799 11.4071 150.718 62.6738 -1 1 3 379 2.379 323.15 0 0 -0.01936 0.0122058 0.0122058 0 0 0 1129.71 1.06872e-07 1.06869e-07 0 0 0 224.98 11.4018 150.859 62.7189 -1 1 3 380 2.38 323.15 0 0 -0.0192 0.0121272 0.0121272 0 0 0 1130.36 1.06958e-07 1.06956e-07 0 0 0 225.161 11.3965 151 62.764 -1 1 3 381 2.381 323.15 0 0 -0.01904 0.0120487 0.0120487 0 0 0 1131.02 1.07045e-07 1.07042e-07 0 0 0 225.341 11.3912 151.141 62.8091 -1 1 3 382 2.382 323.15 0 0 -0.01888 0.0119702 0.0119702 0 0 0 1131.67 1.07131e-07 1.07128e-07 0 0 0 225.522 11.386 151.282 62.8542 -1 1 3 383 2.383 323.15 0 0 -0.01872 0.0118916 0.0118916 0 0 0 1132.32 1.07217e-07 1.07215e-07 0 0 0 225.704 11.381 151.423 62.8993 -1 1 3 384 2.384 323.15 0 0 -0.01856 0.0118131 0.0118131 0 0 0 1132.98 1.07303e-07 1.07301e-07 0 0 0 225.885 11.3759 151.564 62.9444 -1 1 3 385 2.385 323.15 0 0 -0.0184 0.0117345 0.0117345 0 0 0 1133.63 1.0739e-07 1.07387e-07 0 0 0 226.066 11.371 151.706 62.9895 -1 1 3 386 2.386 323.15 0 0 -0.01824 0.011656 0.011656 0 0 0 1134.28 1.07476e-07 1.07473e-07 0 0 0 226.248 11.3661 151.847 63.0346 -1 1 3 387 2.387 323.15 0 0 -0.01808 0.0115775 0.0115775 0 0 0 1134.93 1.07562e-07 1.07559e-07 0 0 0 226.429 11.3613 151.988 63.0797 -1 1 3 388 2.388 323.15 0 0 -0.01792 0.0114989 0.0114989 0 0 0 1135.59 1.07648e-07 1.07645e-07 0 0 0 226.611 11.3566 152.129 63.1248 -1 1 3 389 2.389 323.15 0 0 -0.01776 0.0114204 0.0114204 0 0 0 1136.24 1.07734e-07 1.07731e-07 0 0 0 226.792 11.3519 152.271 63.1699 -1 1 3 390 2.39 323.15 0 0 -0.0176 0.0113418 0.0113418 0 0 0 1136.89 1.0782e-07 1.07817e-07 0 0 0 226.974 11.3473 152.412 63.215 -1 1 3 391 2.391 323.15 0 0 -0.01744 0.0112633 0.0112633 0 0 0 1137.54 1.07907e-07 1.07903e-07 0 0 0 227.156 11.3428 152.553 63.2601 -1 1 3 392 2.392 323.15 0 0 -0.01728 0.0111848 0.0111848 0 0 0 1138.2 1.07993e-07 1.0799e-07 0 0 0 227.338 11.3384 152.695 63.3052 -1 1 3 393 2.393 323.15 0 0 -0.01712 0.0111062 0.0111062 0 0 0 1138.85 1.08079e-07 1.08076e-07 0 0 0 227.52 11.334 152.836 63.3503 -1 1 3 394 2.394 323.15 0 0 -0.01696 0.0110277 0.0110277 0 0 0 1139.5 1.08165e-07 1.08163e-07 0 0 0 227.703 11.3297 152.978 63.3954 -1 1 3 395 2.395 323.15 0 0 -0.0168 0.0109491 0.0109491 0 0 0 1140.15 1.08252e-07 1.08249e-07 0 0 0 227.885 11.3255 153.119 63.4405 -1 1 3 396 2.396 323.15 0 0 -0.01664 0.0108706 0.0108706 0 0 0 1140.8 1.08338e-07 1.08335e-07 0 0 0 228.068 11.3213 153.261 63.4856 -1 1 3 397 2.397 323.15 0 0 -0.01648 0.010792 0.010792 0 0 0 1141.45 1.08425e-07 1.08422e-07 0 0 0 228.25 11.3172 153.402 63.5307 -1 1 3 398 2.398 323.15 0 0 -0.01632 0.0107135 0.0107135 0 0 0 1142.11 1.08511e-07 1.08508e-07 0 0 0 228.433 11.3132 153.544 63.5758 -1 1 3 399 2.399 323.15 0 0 -0.01616 0.010635 0.010635 0 0 0 1142.76 1.08597e-07 1.08595e-07 0 0 0 228.616 11.3093 153.685 63.621 -1 1 3 400 2.4 323.15 0 0 -0.016 0.0105564 0.0105564 0 0 0 1143.41 1.08684e-07 1.08681e-07 0 0 0 228.799 11.3054 153.827 63.6661 -1 1 3 401 2.401 323.15 0 0 -0.01584 0.0104779 0.0104779 0 0 0 1144.06 1.0877e-07 1.08767e-07 0 0 0 228.982 11.3016 153.969 63.7112 -1 1 3 402 2.402 323.15 0 0 -0.01568 0.0103993 0.0103993 0 0 0 1144.71 1.08856e-07 1.08854e-07 0 0 0 229.165 11.2979 154.11 63.7563 -1 1 3 403 2.403 323.15 0 0 -0.01552 0.0103208 0.0103208 0 0 0 1145.36 1.08942e-07 1.0894e-07 0 0 0 229.348 11.2943 154.252 63.8014 -1 1 3 404 2.404 323.15 0 0 -0.01536 0.0102422 0.0102422 0 0 0 1146.01 1.09029e-07 1.09026e-07 0 0 0 229.531 11.2907 154.394 63.8465 -1 1 3 405 2.405 323.15 0 0 -0.0152 0.0101637 0.0101637 0 0 0 1146.66 1.09115e-07 1.09113e-07 0 0 0 229.715 11.2872 154.536 63.8916 -1 1 3 406 2.406 323.15 0 0 -0.01504 0.0100851 0.0100851 0 0 0 1147.31 1.09202e-07 1.09199e-07 0 0 0 229.898 11.2838 154.678 63.9367 -1 1 3 407 2.407 323.15 0 0 -0.01488 0.0100066 0.0100066 0 0 0 1147.97 1.09288e-07 1.09286e-07 0 0 0 230.082 11.2804 154.819 63.9818 -1 1 3 408 2.408 323.15 0 0 -0.01472 0.00992805 0.00992805 0 0 0 1148.62 1.09374e-07 1.09372e-07 0 0 0 230.265 11.2771 154.961 64.0269 -1 1 3 409 2.409 323.15 0 0 -0.01456 0.00984951 0.00984951 0 0 0 1149.27 1.09461e-07 1.09458e-07 0 0 0 230.449 11.2739 155.103 64.072 -1 1 3 410 2.41 323.15 0 0 -0.0144 0.00977096 0.00977096 0 0 0 1149.92 1.09547e-07 1.09545e-07 0 0 0 230.633 11.2708 155.245 64.1172 -1 1 3 411 2.411 323.15 0 0 -0.01424 0.00969241 0.00969241 0 0 0 1150.57 1.09633e-07 1.09632e-07 0 0 0 230.817 11.2677 155.387 64.1623 -1 1 3 412 2.412 323.15 0 0 -0.01408 0.00961387 0.00961387 0 0 0 1151.22 1.0972e-07 1.09718e-07 0 0 0 231.001 11.2647 155.529 64.2074 -1 1 3 413 2.413 323.15 0 0 -0.01392 0.00953532 0.00953532 0 0 0 1151.87 1.09806e-07 1.09804e-07 0 0 0 231.186 11.2618 155.671 64.2525 -1 1 3 414 2.414 323.15 0 0 -0.01376 0.00945677 0.00945677 0 0 0 1152.52 1.09892e-07 1.0989e-07 0 0 0 231.37 11.259 155.813 64.2976 -1 1 3 415 2.415 323.15 0 0 -0.0136 0.00937823 0.00937823 0 0 0 1153.17 1.09978e-07 1.09977e-07 0 0 0 231.554 11.2562 155.956 64.3427 -1 1 3 416 2.416 323.15 0 0 -0.01344 0.00929968 0.00929968 0 0 0 1153.82 1.10065e-07 1.10063e-07 0 0 0 231.739 11.2535 156.098 64.3878 -1 1 3 417 2.417 323.15 0 0 -0.01328 0.00922113 0.00922113 0 0 0 1154.47 1.10151e-07 1.10149e-07 0 0 0 231.924 11.2508 156.24 64.4329 -1 1 3 418 2.418 323.15 0 0 -0.01312 0.00914259 0.00914259 0 0 0 1155.12 1.10237e-07 1.10236e-07 0 0 0 232.108 11.2483 156.382 64.4781 -1 1 3 419 2.419 323.15 0 0 -0.01296 0.00906404 0.00906404 0 0 0 1155.77 1.10323e-07 1.10322e-07 0 0 0 232.293 11.2458 156.524 64.5232 -1 1 3 420 2.42 323.15 0 0 -0.0128 0.00898549 0.00898549 0 0 0 1156.42 1.1041e-07 1.10408e-07 0 0 0 232.478 11.2434 156.667 64.5683 -1 1 3 421 2.421 323.15 0 0 -0.01264 0.00890694 0.00890694 0 0 0 1157.07 1.10496e-07 1.10494e-07 0 0 0 232.663 11.241 156.809 64.6134 -1 1 3 422 2.422 323.15 0 0 -0.01248 0.00882839 0.00882839 0 0 0 1157.72 1.10582e-07 1.10581e-07 0 0 0 232.849 11.2388 156.951 64.6585 -1 1 3 423 2.423 323.15 0 0 -0.01232 0.00874985 0.00874985 0 0 0 1158.36 1.10668e-07 1.10667e-07 0 0 0 233.034 11.2366 157.094 64.7036 -1 1 3 424 2.424 323.15 0 0 -0.01216 0.0086713 0.0086713 0 0 0 1159.01 1.10755e-07 1.10753e-07 0 0 0 233.219 11.2344 157.236 64.7487 -1 1 3 425 2.425 323.15 0 0 -0.012 0.00859275 0.00859275 0 0 0 1159.66 1.10841e-07 1.1084e-07 0 0 0 233.405 11.2324 157.378 64.7939 -1 1 3 426 2.426 323.15 0 0 -0.01184 0.0085142 0.0085142 0 0 0 1160.31 1.10928e-07 1.10926e-07 0 0 0 233.59 11.2304 157.521 64.839 -1 1 3 427 2.427 323.15 0 0 -0.01168 0.00843565 0.00843565 0 0 0 1160.96 1.11014e-07 1.11012e-07 0 0 0 233.776 11.2285 157.663 64.8841 -1 1 3 428 2.428 323.15 0 0 -0.01152 0.0083571 0.0083571 0 0 0 1161.61 1.111e-07 1.11099e-07 0 0 0 233.962 11.2267 157.806 64.9292 -1 1 3 429 2.429 323.15 0 0 -0.01136 0.00827855 0.00827855 0 0 0 1162.26 1.11187e-07 1.11185e-07 0 0 0 234.148 11.2249 157.949 64.9743 -1 1 3 430 2.43 323.15 0 0 -0.0112 0.0082 0.0082 0 0 0 1162.91 1.11273e-07 1.11271e-07 0 0 0 234.334 11.2232 158.091 65.0195 -1 1 3 431 2.431 323.15 0 0 -0.01104 0.00812145 0.00812145 0 0 0 1163.55 1.11359e-07 1.11358e-07 0 0 0 234.52 11.2216 158.234 65.0646 -1 1 3 432 2.432 323.15 0 0 -0.01088 0.0080429 0.0080429 0 0 0 1164.2 1.11446e-07 1.11444e-07 0 0 0 234.706 11.22 158.376 65.1097 -1 1 3 433 2.433 323.15 0 0 -0.01072 0.00796435 0.00796435 0 0 0 1164.85 1.11532e-07 1.11531e-07 0 0 0 234.892 11.2186 158.519 65.1548 -1 1 3 434 2.434 323.15 0 0 -0.01056 0.0078858 0.0078858 0 0 0 1165.5 1.11618e-07 1.11617e-07 0 0 0 235.079 11.2172 158.662 65.1999 -1 1 3 435 2.435 323.15 0 0 -0.0104 0.00780725 0.00780725 0 0 0 1166.15 1.11704e-07 1.11703e-07 0 0 0 235.265 11.2158 158.804 65.2451 -1 1 3 436 2.436 323.15 0 0 -0.01024 0.0077287 0.0077287 0 0 0 1166.8 1.11791e-07 1.1179e-07 0 0 0 235.452 11.2146 158.947 65.2902 -1 1 3 437 2.437 323.15 0 0 -0.01008 0.00765015 0.00765015 0 0 0 1167.44 1.11877e-07 1.11876e-07 0 0 0 235.639 11.2134 159.09 65.3353 -1 1 3 438 2.438 323.15 0 0 -0.00992 0.00757159 0.00757159 0 0 0 1168.09 1.11963e-07 1.11962e-07 0 0 0 235.826 11.2123 159.233 65.3804 -1 1 3 439 2.439 323.15 0 0 -0.00976 0.00749304 0.00749304 0 0 0 1168.74 1.1205e-07 1.12048e-07 0 0 0 236.013 11.2112 159.376 65.4255 -1 1 3 440 2.44 323.15 0 0 -0.0096 0.00741449 0.00741449 0 0 0 1169.39 1.12136e-07 1.12135e-07 0 0 0 236.2 11.2103 159.519 65.4707 -1 1 3 441 2.441 323.15 0 0 -0.00944 0.00733594 0.00733594 0 0 0 1170.04 1.12222e-07 1.12221e-07 0 0 0 236.387 11.2094 159.662 65.5158 -1 1 3 442 2.442 323.15 0 0 -0.00928 0.00725739 0.00725739 0 0 0 1170.68 1.12308e-07 1.12308e-07 0 0 0 236.574 11.2086 159.805 65.5609 -1 1 3 443 2.443 323.15 0 0 -0.00912 0.00717883 0.00717883 0 0 0 1171.33 1.12395e-07 1.12394e-07 0 0 0 236.761 11.2078 159.948 65.606 -1 1 3 444 2.444 323.15 0 0 -0.00896 0.00710028 0.00710028 0 0 0 1171.98 1.12481e-07 1.1248e-07 0 0 0 236.949 11.2071 160.091 65.6512 -1 1 3 445 2.445 323.15 0 0 -0.0088 0.00702173 0.00702173 0 0 0 1172.62 1.12568e-07 1.12567e-07 0 0 0 237.136 11.2065 160.234 65.6963 -1 1 3 446 2.446 323.15 0 0 -0.00864 0.00694318 0.00694318 0 0 0 1173.27 1.12654e-07 1.12653e-07 0 0 0 237.324 11.206 160.377 65.7414 -1 1 3 447 2.447 323.15 0 0 -0.00848 0.00686462 0.00686462 0 0 0 1173.92 1.1274e-07 1.12739e-07 0 0 0 237.512 11.2055 160.52 65.7865 -1 1 3 448 2.448 323.15 0 0 -0.00832 0.00678607 0.00678607 0 0 0 1174.57 1.12826e-07 1.12825e-07 0 0 0 237.7 11.2051 160.663 65.8317 -1 1 3 449 2.449 323.15 0 0 -0.00816 0.00670752 0.00670752 0 0 0 1175.21 1.12912e-07 1.12911e-07 0 0 0 237.888 11.2048 160.806 65.8768 -1 1 3 450 2.45 323.15 0 0 -0.008 0.00662896 0.00662896 0 0 0 1175.86 1.12999e-07 1.12998e-07 0 0 0 238.076 11.2046 160.949 65.9219 -1 1 3 451 2.451 323.15 0 0 -0.00784 0.00655041 0.00655041 0 0 0 1176.51 1.13085e-07 1.13084e-07 0 0 0 238.264 11.2044 161.093 65.967 -1 1 3 452 2.452 323.15 0 0 -0.00768 0.00647185 0.00647185 0 0 0 1177.15 1.13171e-07 1.1317e-07 0 0 0 238.452 11.2043 161.236 66.0122 -1 1 3 453 2.453 323.15 0 0 -0.00752 0.0063933 0.0063933 0 0 0 1177.8 1.13258e-07 1.13257e-07 0 0 0 238.641 11.2043 161.379 66.0573 -1 1 3 454 2.454 323.15 0 0 -0.00736 0.00631474 0.00631474 0 0 0 1178.45 1.13344e-07 1.13343e-07 0 0 0 238.829 11.2043 161.522 66.1024 -1 1 3 455 2.455 323.15 0 0 -0.0072 0.00623619 0.00623619 0 0 0 1179.09 1.1343e-07 1.13429e-07 0 0 0 239.018 11.2045 161.666 66.1476 -1 1 3 456 2.456 323.15 0 0 -0.00704 0.00615763 0.00615763 0 0 0 1179.74 1.13517e-07 1.13516e-07 0 0 0 239.206 11.2047 161.809 66.1927 -1 1 3 457 2.457 323.15 0 0 -0.00688 0.00607908 0.00607908 0 0 0 1180.39 1.13603e-07 1.13602e-07 0 0 0 239.395 11.2049 161.953 66.2378 -1 1 3 458 2.458 323.15 0 0 -0.00672 0.00600052 0.00600052 0 0 0 1181.03 1.13689e-07 1.13688e-07 0 0 0 239.584 11.2053 162.096 66.2829 -1 1 3 459 2.459 323.15 0 0 -0.00656 0.00592197 0.00592197 0 0 0 1181.68 1.13775e-07 1.13774e-07 0 0 0 239.773 11.2057 162.239 66.3281 -1 1 3 460 2.46 323.15 0 0 -0.0064 0.00584341 0.00584341 0 0 0 1182.32 1.13861e-07 1.13861e-07 0 0 0 239.962 11.2061 162.383 66.3732 -1 1 3 461 2.461 323.15 0 0 -0.00624 0.00576486 0.00576486 0 0 0 1182.97 1.13948e-07 1.13947e-07 0 0 0 240.152 11.2067 162.527 66.4183 -1 1 3 462 2.462 323.15 0 0 -0.00608 0.0056863 0.0056863 0 0 0 1183.61 1.14034e-07 1.14033e-07 0 0 0 240.341 11.2073 162.67 66.4635 -1 1 3 463 2.463 323.15 0 0 -0.00592 0.00560774 0.00560774 0 0 0 1184.26 1.14121e-07 1.1412e-07 0 0 0 240.53 11.208 162.814 66.5086 -1 1 3 464 2.464 323.15 0 0 -0.00576 0.00552919 0.00552919 0 0 0 1184.91 1.14207e-07 1.14206e-07 0 0 0 240.72 11.2088 162.957 66.5537 -1 1 3 465 2.465 323.15 0 0 -0.0056 0.00545063 0.00545063 0 0 0 1185.55 1.14293e-07 1.14292e-07 0 0 0 240.909 11.2096 163.101 66.5989 -1 1 3 466 2.466 323.15 0 0 -0.00544 0.00537207 0.00537207 0 0 0 1186.2 1.14379e-07 1.14378e-07 0 0 0 241.099 11.2106 163.245 66.644 -1 1 3 467 2.467 323.15 0 0 -0.00528 0.00529352 0.00529352 0 0 0 1186.84 1.14466e-07 1.14465e-07 0 0 0 241.289 11.2115 163.388 66.6891 -1 1 3 468 2.468 323.15 0 0 -0.00512 0.00521496 0.00521496 0 0 0 1187.49 1.14552e-07 1.14551e-07 0 0 0 241.479 11.2126 163.532 66.7343 -1 1 3 469 2.469 323.15 0 0 -0.00496 0.0051364 0.0051364 0 0 0 1188.13 1.14638e-07 1.14637e-07 0 0 0 241.669 11.2137 163.676 66.7794 -1 1 3 470 2.47 323.15 0 0 -0.0048 0.00505784 0.00505784 0 0 0 1188.78 1.14724e-07 1.14723e-07 0 0 0 241.859 11.215 163.82 66.8245 -1 1 3 471 2.471 323.15 0 0 -0.00464 0.00497929 0.00497929 0 0 0 1189.42 1.1481e-07 1.14809e-07 0 0 0 242.049 11.2162 163.964 66.8697 -1 1 3 472 2.472 323.15 0 0 -0.00448 0.00490073 0.00490073 0 0 0 1190.07 1.14897e-07 1.14896e-07 0 0 0 242.24 11.2176 164.107 66.9148 -1 1 3 473 2.473 323.15 0 0 -0.00432 0.00482217 0.00482217 0 0 0 1190.71 1.14983e-07 1.14982e-07 0 0 0 242.43 11.219 164.251 66.9599 -1 1 3 474 2.474 323.15 0 0 -0.00416 0.00474361 0.00474361 0 0 0 1191.36 1.15069e-07 1.15068e-07 0 0 0 242.621 11.2205 164.395 67.0051 -1 1 3 475 2.475 323.15 0 0 -0.004 0.00466505 0.00466505 0 0 0 1192 1.15155e-07 1.15154e-07 0 0 0 242.812 11.2221 164.539 67.0502 -1 1 3 476 2.476 323.15 0 0 -0.00384 0.00458649 0.00458649 0 0 0 1192.65 1.15241e-07 1.15241e-07 0 0 0 243.002 11.2237 164.683 67.0954 -1 1 3 477 2.477 323.15 0 0 -0.00368 0.00450793 0.00450793 0 0 0 1193.29 1.15328e-07 1.15327e-07 0 0 0 243.193 11.2254 164.827 67.1405 -1 1 3 478 2.478 323.15 0 0 -0.00352 0.00442937 0.00442937 0 0 0 1193.94 1.15414e-07 1.15413e-07 0 0 0 243.384 11.2272 164.971 67.1856 -1 1 3 479 2.479 323.15 0 0 -0.00336 0.00435082 0.00435082 0 0 0 1194.58 1.155e-07 1.15499e-07 0 0 0 243.575 11.2291 165.115 67.2308 -1 1 3 480 2.48 323.15 0 0 -0.0032 0.00427226 0.00427226 0 0 0 1195.22 1.15586e-07 1.15586e-07 0 0 0 243.766 11.231 165.26 67.2759 -1 1 3 481 2.481 323.15 0 0 -0.00304 0.0041937 0.0041937 0 0 0 1195.87 1.15673e-07 1.15672e-07 0 0 0 243.958 11.233 165.404 67.321 -1 1 3 482 2.482 323.15 0 0 -0.00288 0.00411514 0.00411514 0 0 0 1196.51 1.15759e-07 1.15759e-07 0 0 0 244.149 11.2351 165.548 67.3662 -1 1 3 483 2.483 323.15 0 0 -0.00272 0.00403658 0.00403658 0 0 0 1197.16 1.15845e-07 1.15845e-07 0 0 0 244.341 11.2372 165.692 67.4113 -1 1 3 484 2.484 323.15 0 0 -0.00256 0.00395802 0.00395802 0 0 0 1197.8 1.15932e-07 1.15931e-07 0 0 0 244.532 11.2395 165.836 67.4565 -1 1 3 485 2.485 323.15 0 0 -0.0024 0.00387945 0.00387945 0 0 0 1198.44 1.16018e-07 1.16018e-07 0 0 0 244.724 11.2417 165.981 67.5016 -1 1 3 486 2.486 323.15 0 0 -0.00224 0.00380089 0.00380089 0 0 0 1199.09 1.16104e-07 1.16104e-07 0 0 0 244.916 11.2441 166.125 67.5467 -1 1 3 487 2.487 323.15 0 0 -0.00208 0.00372233 0.00372233 0 0 0 1199.73 1.16191e-07 1.1619e-07 0 0 0 245.108 11.2466 166.269 67.5919 -1 1 3 488 2.488 323.15 0 0 -0.00192 0.00364377 0.00364377 0 0 0 1200.37 1.16277e-07 1.16276e-07 0 0 0 245.3 11.2491 166.414 67.637 -1 1 3 489 2.489 323.15 0 0 -0.00176 0.00356521 0.00356521 0 0 0 1201.02 1.16363e-07 1.16362e-07 0 0 0 245.492 11.2516 166.558 67.6822 -1 1 3 490 2.49 323.15 0 0 -0.0016 0.00348665 0.00348665 0 0 0 1201.66 1.16449e-07 1.16449e-07 0 0 0 245.684 11.2543 166.702 67.7273 -1 1 3 491 2.491 323.15 0 0 -0.00144 0.00340809 0.00340809 0 0 0 1202.3 1.16535e-07 1.16535e-07 0 0 0 245.876 11.257 166.847 67.7724 -1 1 3 492 2.492 323.15 0 0 -0.00128 0.00332952 0.00332952 0 0 0 1202.95 1.16622e-07 1.16621e-07 0 0 0 246.069 11.2598 166.991 67.8176 -1 1 3 493 2.493 323.15 0 0 -0.00112 0.00325096 0.00325096 0 0 0 1203.59 1.16708e-07 1.16707e-07 0 0 0 246.261 11.2627 167.136 67.8627 -1 1 3 494 2.494 323.15 0 0 -0.00096 0.0031724 0.0031724 0 0 0 1204.23 1.16794e-07 1.16794e-07 0 0 0 246.454 11.2656 167.28 67.9079 -1 1 3 495 2.495 323.15 0 0 -0.0008 0.00309384 0.00309384 0 0 0 1204.88 1.16881e-07 1.1688e-07 0 0 0 246.647 11.2687 167.425 67.953 -1 1 3 496 2.496 323.15 0 0 -0.00064 0.00301528 0.00301528 0 0 0 1205.52 1.16967e-07 1.16967e-07 0 0 0 246.839 11.2718 167.569 67.9982 -1 1 3 497 2.497 323.15 0 0 -0.00048 0.00293671 0.00293671 0 0 0 1206.16 1.17054e-07 1.17053e-07 0 0 0 247.032 11.2749 167.714 68.0433 -1 1 3 498 2.498 323.15 0 0 -0.00032 0.00285815 0.00285815 0 0 0 1206.81 1.1714e-07 1.1714e-07 0 0 0 247.225 11.2782 167.859 68.0885 -1 1 3 499 2.499 323.15 0 0 -0.00016 0.00277959 0.00277959 0 0 0 1207.45 1.17227e-07 1.17226e-07 0 0 0 247.418 11.2815 168.003 68.1336 -1 1 3 500 2.5 323.15 0 0 -3.10516e-16 0.00270102 0.00270102 0 0 0 1208.09 1.17313e-07 1.17313e-07 0 0 0 247.612 11.2848 168.148 68.1787 -1 1 3 501 2.501 323.15 0 0 0.00016 0.00262246 0.00262246 0 0 0 1208.73 1.17399e-07 1.17399e-07 0 0 0 247.805 11.2883 168.293 68.2239 -1 1 3 502 2.502 323.15 0 0 0.00032 0.0025439 0.0025439 0 0 0 1209.38 1.17486e-07 1.17485e-07 0 0 0 247.999 11.2918 168.438 68.269 -1 1 3 503 2.503 323.15 0 0 0.00048 0.00246533 0.00246533 0 0 0 1210.02 1.17572e-07 1.17571e-07 0 0 0 248.192 11.2954 168.582 68.3142 -1 1 3 504 2.504 323.15 0 0 0.00064 0.00238677 0.00238677 0 0 0 1210.66 1.17658e-07 1.17658e-07 0 0 0 248.386 11.2991 168.727 68.3593 -1 1 3 505 2.505 323.15 0 0 0.0008 0.0023082 0.0023082 0 0 0 1211.3 1.17744e-07 1.17744e-07 0 0 0 248.579 11.3028 168.872 68.4045 -1 1 3 506 2.506 323.15 0 0 0.00096 0.00222964 0.00222964 0 0 0 1211.94 1.17831e-07 1.1783e-07 0 0 0 248.773 11.3067 169.017 68.4496 -1 1 3 507 2.507 323.15 0 0 0.00112 0.00215107 0.00215107 0 0 0 1212.59 1.17917e-07 1.17916e-07 0 0 0 248.967 11.3105 169.162 68.4948 -1 1 3 508 2.508 323.15 0 0 0.00128 0.00207251 0.00207251 0 0 0 1213.23 1.18004e-07 1.18003e-07 0 0 0 249.161 11.3145 169.307 68.5399 -1 1 3 509 2.509 323.15 0 0 0.00144 0.00199394 0.00199394 0 0 0 1213.87 1.1809e-07 1.18089e-07 0 0 0 249.356 11.3185 169.452 68.5851 -1 1 3 510 2.51 323.15 0 0 0.0016 0.00191538 0.00191538 0 0 0 1214.51 1.18176e-07 1.18176e-07 0 0 0 249.55 11.3226 169.597 68.6302 -1 1 3 511 2.511 323.15 0 0 0.00176 0.00183681 0.00183681 0 0 0 1215.15 1.18263e-07 1.18262e-07 0 0 0 249.744 11.3268 169.742 68.6754 -1 1 3 512 2.512 323.15 0 0 0.00192 0.00175825 0.00175825 0 0 0 1215.79 1.18349e-07 1.18348e-07 0 0 0 249.939 11.3311 169.887 68.7205 -1 1 3 513 2.513 323.15 0 0 0.00208 0.00167968 0.00167968 0 0 0 1216.44 1.18435e-07 1.18435e-07 0 0 0 250.133 11.3354 170.032 68.7657 -1 1 3 514 2.514 323.15 0 0 0.00224 0.00160112 0.00160112 0 0 0 1217.08 1.18522e-07 1.18521e-07 0 0 0 250.328 11.3398 170.177 68.8108 -1 1 3 515 2.515 323.15 0 0 0.0024 0.00152255 0.00152255 0 0 0 1217.72 1.18608e-07 1.18608e-07 0 0 0 250.523 11.3443 170.322 68.856 -1 1 3 516 2.516 323.15 0 0 0.00256 0.00144398 0.00144398 0 0 0 1218.36 1.18695e-07 1.18694e-07 0 0 0 250.718 11.3488 170.468 68.9011 -1 1 3 517 2.517 323.15 0 0 0.00272 0.00136542 0.00136542 0 0 0 1219 1.18781e-07 1.1878e-07 0 0 0 250.913 11.3534 170.613 68.9463 -1 1 3 518 2.518 323.15 0 0 0.00288 0.00128685 0.00128685 0 0 0 1219.64 1.18867e-07 1.18867e-07 0 0 0 251.108 11.3581 170.758 68.9914 -1 1 3 519 2.519 323.15 0 0 0.00304 0.00120828 0.00120828 0 0 0 1220.28 1.18954e-07 1.18953e-07 0 0 0 251.303 11.3629 170.903 69.0366 -1 1 3 520 2.52 323.15 0 0 0.0032 0.00112972 0.00112972 0 0 0 1220.92 1.1904e-07 1.19039e-07 0 0 0 251.498 11.3677 171.049 69.0817 -1 1 3 521 2.521 323.15 0 0 0.00336 0.00105115 0.00105115 0 0 0 1221.56 1.19126e-07 1.19126e-07 0 0 0 251.694 11.3726 171.194 69.1269 -1 1 3 522 2.522 323.15 0 0 0.00352 0.00097258 0.00097258 0 0 0 1222.21 1.19213e-07 1.19212e-07 0 0 0 251.889 11.3776 171.339 69.1721 -1 1 3 523 2.523 323.15 0 0 0.00368 0.000894013 0.000894013 0 0 0 1222.85 1.19299e-07 1.19299e-07 0 0 0 252.085 11.3826 171.485 69.2172 -1 1 3 524 2.524 323.15 0 0 0.00384 0.000815445 0.000815445 0 0 0 1223.49 1.19385e-07 1.19385e-07 0 0 0 252.28 11.3877 171.63 69.2624 -1 1 3 525 2.525 323.15 0 0 0.004 0.000736877 0.000736877 0 0 0 1224.13 1.19472e-07 1.19472e-07 0 0 0 252.476 11.3929 171.776 69.3075 -1 1 3 526 2.526 323.15 0 0 0.00416 0.000658309 0.000658309 0 0 0 1224.77 1.19558e-07 1.19558e-07 0 0 0 252.672 11.3982 171.921 69.3527 -1 1 3 527 2.527 323.15 0 0 0.00432 0.00057974 0.00057974 0 0 0 1225.41 1.19644e-07 1.19644e-07 0 0 0 252.868 11.4035 172.067 69.3978 -1 1 3 528 2.528 323.15 0 0 0.00448 0.000501172 0.000501172 0 0 0 1226.05 1.19731e-07 1.1973e-07 0 0 0 253.064 11.4089 172.212 69.443 -1 1 3 529 2.529 323.15 0 0 0.00464 0.000422603 0.000422603 0 0 0 1226.69 1.19817e-07 1.19817e-07 0 0 0 253.26 11.4144 172.358 69.4881 -1 1 3 530 2.53 323.15 0 0 0.0048 0.000344034 0.000344034 0 0 0 1227.33 1.19903e-07 1.19903e-07 0 0 0 253.457 11.42 172.503 69.5333 -1 1 3 531 2.531 323.15 0 0 0.00496 0.000265465 0.000265465 0 0 0 1227.97 1.19989e-07 1.19989e-07 0 0 0 253.653 11.4256 172.649 69.5785 -1 1 3 532 2.532 323.15 0 0 0.00512 0.000186896 0.000186896 0 0 0 1228.61 1.20075e-07 1.20075e-07 0 0 0 253.85 11.4313 172.795 69.6236 -1 1 3 533 2.533 323.15 0 0 0.00528 0.000108326 0.000108326 0 0 0 1229.25 1.20161e-07 1.20161e-07 0 0 0 254.046 11.4371 172.94 69.6688 -1 1 3 534 2.534 323.15 0 0 0.00544 2.97564e-05 2.97564e-05 0 0 0 1229.89 1.20248e-07 1.20247e-07 0 0 0 254.243 11.4429 173.086 69.7139 -1 1 3 535 2.535 323.15 0 0 0.0056 -4.88134e-05 -4.88134e-05 0 0 0 1230.53 1.20334e-07 1.20334e-07 0 0 0 254.44 11.4489 173.232 69.7591 -1 1 3 536 2.536 323.15 0 0 0.00576 -0.000127383 -0.000127383 0 0 0 1231.17 1.20421e-07 1.2042e-07 0 0 0 254.637 11.4548 173.378 69.8042 -1 1 3 537 2.537 323.15 0 0 0.00592 -0.000205954 -0.000205954 0 0 0 1231.81 1.20507e-07 1.20506e-07 0 0 0 254.834 11.4609 173.524 69.8494 -1 1 3 538 2.538 323.15 0 0 0.00608 -0.000284524 -0.000284524 0 0 0 1232.45 1.20593e-07 1.20593e-07 0 0 0 255.031 11.467 173.669 69.8946 -1 1 3 539 2.539 323.15 0 0 0.00624 -0.000363095 -0.000363095 0 0 0 1233.09 1.20679e-07 1.20679e-07 0 0 0 255.228 11.4733 173.815 69.9397 -1 1 3 540 2.54 323.15 0 0 0.0064 -0.000441665 -0.000441665 0 0 0 1233.72 1.20766e-07 1.20765e-07 0 0 0 255.426 11.4795 173.961 69.9849 -1 1 3 541 2.541 323.15 0 0 0.00656 -0.000520236 -0.000520236 0 0 0 1234.36 1.20852e-07 1.20851e-07 0 0 0 255.623 11.4859 174.107 70.03 -1 1 3 542 2.542 323.15 0 0 0.00672 -0.000598807 -0.000598807 0 0 0 1235 1.20938e-07 1.20937e-07 0 0 0 255.821 11.4923 174.253 70.0752 -1 1 3 543 2.543 323.15 0 0 0.00688 -0.000677378 -0.000677378 0 0 0 1235.64 1.21024e-07 1.21023e-07 0 0 0 256.018 11.4988 174.399 70.1204 -1 1 3 544 2.544 323.15 0 0 0.00704 -0.00075595 -0.00075595 0 0 0 1236.28 1.2111e-07 1.2111e-07 0 0 0 256.216 11.5054 174.545 70.1655 -1 1 3 545 2.545 323.15 0 0 0.0072 -0.000834522 -0.000834522 0 0 0 1236.92 1.21197e-07 1.21196e-07 0 0 0 256.414 11.512 174.691 70.2107 -1 1 3 546 2.546 323.15 0 0 0.00736 -0.000913093 -0.000913093 0 0 0 1237.56 1.21283e-07 1.21282e-07 0 0 0 256.612 11.5188 174.837 70.2559 -1 1 3 547 2.547 323.15 0 0 0.00752 -0.000991665 -0.000991665 0 0 0 1238.2 1.21369e-07 1.21369e-07 0 0 0 256.81 11.5255 174.983 70.301 -1 1 3 548 2.548 323.15 0 0 0.00768 -0.00107024 -0.00107024 0 0 0 1238.84 1.21456e-07 1.21455e-07 0 0 0 257.008 11.5324 175.129 70.3462 -1 1 3 549 2.549 323.15 0 0 0.00784 -0.00114881 -0.00114881 0 0 0 1239.47 1.21542e-07 1.21541e-07 0 0 0 257.206 11.5393 175.276 70.3913 -1 1 3 550 2.55 323.15 0 0 0.008 -0.00122738 -0.00122738 0 0 0 1240.11 1.21628e-07 1.21627e-07 0 0 0 257.405 11.5463 175.422 70.4365 -1 1 3 551 2.551 323.15 0 0 0.00816 -0.00130595 -0.00130595 0 0 0 1240.75 1.21714e-07 1.21714e-07 0 0 0 257.603 11.5534 175.568 70.4817 -1 1 3 552 2.552 323.15 0 0 0.00832 -0.00138453 -0.00138453 0 0 0 1241.39 1.21801e-07 1.218e-07 0 0 0 257.802 11.5606 175.714 70.5268 -1 1 3 553 2.553 323.15 0 0 0.00848 -0.0014631 -0.0014631 0 0 0 1242.03 1.21887e-07 1.21886e-07 0 0 0 258 11.5678 175.861 70.572 -1 1 3 554 2.554 323.15 0 0 0.00864 -0.00154167 -0.00154167 0 0 0 1242.67 1.21974e-07 1.21973e-07 0 0 0 258.199 11.5751 176.007 70.6172 -1 1 3 555 2.555 323.15 0 0 0.0088 -0.00162025 -0.00162025 0 0 0 1243.3 1.2206e-07 1.22059e-07 0 0 0 258.398 11.5825 176.153 70.6623 -1 1 3 556 2.556 323.15 0 0 0.00896 -0.00169882 -0.00169882 0 0 0 1243.94 1.22146e-07 1.22146e-07 0 0 0 258.597 11.5899 176.3 70.7075 -1 1 3 557 2.557 323.15 0 0 0.00912 -0.00177739 -0.00177739 0 0 0 1244.58 1.22232e-07 1.22232e-07 0 0 0 258.796 11.5974 176.446 70.7527 -1 1 3 558 2.558 323.15 0 0 0.00928 -0.00185597 -0.00185597 0 0 0 1245.22 1.22318e-07 1.22318e-07 0 0 0 258.995 11.605 176.592 70.7978 -1 1 3 559 2.559 323.15 0 0 0.00944 -0.00193454 -0.00193454 0 0 0 1245.86 1.22405e-07 1.22404e-07 0 0 0 259.195 11.6127 176.739 70.843 -1 1 3 560 2.56 323.15 0 0 0.0096 -0.00201312 -0.00201312 0 0 0 1246.49 1.22491e-07 1.2249e-07 0 0 0 259.394 11.6204 176.885 70.8882 -1 1 3 561 2.561 323.15 0 0 0.00976 -0.00209169 -0.00209169 0 0 0 1247.13 1.22577e-07 1.22576e-07 0 0 0 259.593 11.6282 177.032 70.9333 -1 1 3 562 2.562 323.15 0 0 0.00992 -0.00217027 -0.00217027 0 0 0 1247.77 1.22664e-07 1.22663e-07 0 0 0 259.793 11.6361 177.178 70.9785 -1 1 3 563 2.563 323.15 0 0 0.01008 -0.00224884 -0.00224884 0 0 0 1248.41 1.2275e-07 1.22749e-07 0 0 0 259.993 11.644 177.325 71.0237 -1 1 3 564 2.564 323.15 0 0 0.01024 -0.00232742 -0.00232742 0 0 0 1249.04 1.22836e-07 1.22836e-07 0 0 0 260.193 11.6521 177.472 71.0688 -1 1 3 565 2.565 323.15 0 0 0.0104 -0.00240599 -0.00240599 0 0 0 1249.68 1.22923e-07 1.22922e-07 0 0 0 260.392 11.6602 177.618 71.114 -1 1 3 566 2.566 323.15 0 0 0.01056 -0.00248457 -0.00248457 0 0 0 1250.32 1.23009e-07 1.23008e-07 0 0 0 260.592 11.6683 177.765 71.1592 -1 1 3 567 2.567 323.15 0 0 0.01072 -0.00256314 -0.00256314 0 0 0 1250.96 1.23095e-07 1.23094e-07 0 0 0 260.793 11.6766 177.912 71.2043 -1 1 3 568 2.568 323.15 0 0 0.01088 -0.00264172 -0.00264172 0 0 0 1251.59 1.23181e-07 1.23181e-07 0 0 0 260.993 11.6849 178.058 71.2495 -1 1 3 569 2.569 323.15 0 0 0.01104 -0.00272029 -0.00272029 0 0 0 1252.23 1.23267e-07 1.23267e-07 0 0 0 261.193 11.6933 178.205 71.2947 -1 1 3 570 2.57 323.15 0 0 0.0112 -0.00279887 -0.00279887 0 0 0 1252.87 1.23354e-07 1.23353e-07 0 0 0 261.393 11.7017 178.352 71.3399 -1 1 3 571 2.571 323.15 0 0 0.01136 -0.00287745 -0.00287745 0 0 0 1253.5 1.2344e-07 1.23439e-07 0 0 0 261.594 11.7102 178.499 71.385 -1 1 3 572 2.572 323.15 0 0 0.01152 -0.00295602 -0.00295602 0 0 0 1254.14 1.23526e-07 1.23525e-07 0 0 0 261.795 11.7188 178.646 71.4302 -1 1 3 573 2.573 323.15 0 0 0.01168 -0.0030346 -0.0030346 0 0 0 1254.78 1.23612e-07 1.23611e-07 0 0 0 261.995 11.7275 178.792 71.4754 -1 1 3 574 2.574 323.15 0 0 0.01184 -0.00311317 -0.00311317 0 0 0 1255.41 1.23698e-07 1.23698e-07 0 0 0 262.196 11.7363 178.939 71.5205 -1 1 3 575 2.575 323.15 0 0 0.012 -0.00319175 -0.00319175 0 0 0 1256.05 1.23785e-07 1.23784e-07 0 0 0 262.397 11.7451 179.086 71.5657 -1 1 3 576 2.576 323.15 0 0 0.01216 -0.00327033 -0.00327033 0 0 0 1256.69 1.23871e-07 1.2387e-07 0 0 0 262.598 11.754 179.233 71.6109 -1 1 3 577 2.577 323.15 0 0 0.01232 -0.00334891 -0.00334891 0 0 0 1257.32 1.23957e-07 1.23957e-07 0 0 0 262.799 11.763 179.38 71.6561 -1 1 3 578 2.578 323.15 0 0 0.01248 -0.00342748 -0.00342748 0 0 0 1257.96 1.24044e-07 1.24043e-07 0 0 0 263 11.772 179.527 71.7012 -1 1 3 579 2.579 323.15 0 0 0.01264 -0.00350606 -0.00350606 0 0 0 1258.59 1.2413e-07 1.24129e-07 0 0 0 263.202 11.7811 179.674 71.7464 -1 1 3 580 2.58 323.15 0 0 0.0128 -0.00358464 -0.00358464 0 0 0 1259.23 1.24216e-07 1.24215e-07 0 0 0 263.403 11.7903 179.821 71.7916 -1 1 3 581 2.581 323.15 0 0 0.01296 -0.00366322 -0.00366322 0 0 0 1259.87 1.24302e-07 1.24301e-07 0 0 0 263.605 11.7995 179.968 71.8368 -1 1 3 582 2.582 323.15 0 0 0.01312 -0.00374179 -0.00374179 0 0 0 1260.5 1.24388e-07 1.24388e-07 0 0 0 263.806 11.8089 180.115 71.8819 -1 1 3 583 2.583 323.15 0 0 0.01328 -0.00382037 -0.00382037 0 0 0 1261.14 1.24474e-07 1.24474e-07 0 0 0 264.008 11.8183 180.263 71.9271 -1 1 3 584 2.584 323.15 0 0 0.01344 -0.00389895 -0.00389895 0 0 0 1261.77 1.24561e-07 1.2456e-07 0 0 0 264.21 11.8277 180.41 71.9723 -1 1 3 585 2.585 323.15 0 0 0.0136 -0.00397753 -0.00397753 0 0 0 1262.41 1.24647e-07 1.24647e-07 0 0 0 264.412 11.8373 180.557 72.0175 -1 1 3 586 2.586 323.15 0 0 0.01376 -0.00405611 -0.00405611 0 0 0 1263.05 1.24734e-07 1.24733e-07 0 0 0 264.614 11.8469 180.704 72.0626 -1 1 3 587 2.587 323.15 0 0 0.01392 -0.00413469 -0.00413469 0 0 0 1263.68 1.2482e-07 1.24819e-07 0 0 0 264.816 11.8566 180.852 72.1078 -1 1 3 588 2.588 323.15 0 0 0.01408 -0.00421327 -0.00421327 0 0 0 1264.32 1.24906e-07 1.24905e-07 0 0 0 265.018 11.8664 180.999 72.153 -1 1 3 589 2.589 323.15 0 0 0.01424 -0.00429185 -0.00429185 0 0 0 1264.95 1.24992e-07 1.24992e-07 0 0 0 265.221 11.8762 181.146 72.1982 -1 1 3 590 2.59 323.15 0 0 0.0144 -0.00437042 -0.00437042 0 0 0 1265.59 1.25078e-07 1.25078e-07 0 0 0 265.423 11.8861 181.294 72.2433 -1 1 3 591 2.591 323.15 0 0 0.01456 -0.004449 -0.004449 0 0 0 1266.22 1.25165e-07 1.25164e-07 0 0 0 265.626 11.8961 181.441 72.2885 -1 1 3 592 2.592 323.15 0 0 0.01472 -0.00452758 -0.00452758 0 0 0 1266.86 1.25251e-07 1.2525e-07 0 0 0 265.828 11.9061 181.588 72.3337 -1 1 3 593 2.593 323.15 0 0 0.01488 -0.00460616 -0.00460616 0 0 0 1267.49 1.25337e-07 1.25337e-07 0 0 0 266.031 11.9163 181.736 72.3789 -1 1 3 594 2.594 323.15 0 0 0.01504 -0.00468474 -0.00468474 0 0 0 1268.13 1.25423e-07 1.25423e-07 0 0 0 266.234 11.9265 181.883 72.4241 -1 1 3 595 2.595 323.15 0 0 0.0152 -0.00476332 -0.00476332 0 0 0 1268.76 1.25509e-07 1.25509e-07 0 0 0 266.437 11.9367 182.031 72.4692 -1 1 3 596 2.596 323.15 0 0 0.01536 -0.0048419 -0.0048419 0 0 0 1269.4 1.25596e-07 1.25595e-07 0 0 0 266.64 11.9471 182.178 72.5144 -1 1 3 597 2.597 323.15 0 0 0.01552 -0.00492049 -0.00492049 0 0 0 1270.03 1.25682e-07 1.25682e-07 0 0 0 266.843 11.9575 182.326 72.5596 -1 1 3 598 2.598 323.15 0 0 0.01568 -0.00499907 -0.00499907 0 0 0 1270.67 1.25768e-07 1.25768e-07 0 0 0 267.046 11.968 182.473 72.6048 -1 1 3 599 2.599 323.15 0 0 0.01584 -0.00507765 -0.00507765 0 0 0 1271.3 1.25855e-07 1.25854e-07 0 0 0 267.25 11.9786 182.621 72.65 -1 1 3 600 2.6 323.15 0 0 0.016 -0.00515623 -0.00515623 0 0 0 1271.94 1.25941e-07 1.2594e-07 0 0 0 267.453 11.9892 182.769 72.6951 -1 1 3 601 2.601 323.15 0 0 0.01616 -0.00523481 -0.00523481 0 0 0 1272.57 1.26027e-07 1.26027e-07 0 0 0 267.657 11.9999 182.916 72.7403 -1 1 3 602 2.602 323.15 0 0 0.01632 -0.00531339 -0.00531339 0 0 0 1273.21 1.26114e-07 1.26113e-07 0 0 0 267.86 12.0107 183.064 72.7855 -1 1 3 603 2.603 323.15 0 0 0.01648 -0.00539197 -0.00539197 0 0 0 1273.84 1.262e-07 1.26199e-07 0 0 0 268.064 12.0215 183.212 72.8307 -1 1 3 604 2.604 323.15 0 0 0.01664 -0.00547055 -0.00547055 0 0 0 1274.48 1.26286e-07 1.26285e-07 0 0 0 268.268 12.0325 183.36 72.8759 -1 1 3 605 2.605 323.15 0 0 0.0168 -0.00554914 -0.00554914 0 0 0 1275.11 1.26372e-07 1.26372e-07 0 0 0 268.472 12.0435 183.507 72.9211 -1 1 3 606 2.606 323.15 0 0 0.01696 -0.00562772 -0.00562772 0 0 0 1275.74 1.26458e-07 1.26458e-07 0 0 0 268.676 12.0545 183.655 72.9662 -1 1 3 607 2.607 323.15 0 0 0.01712 -0.0057063 -0.0057063 0 0 0 1276.38 1.26545e-07 1.26544e-07 0 0 0 268.88 12.0657 183.803 73.0114 -1 1 3 608 2.608 323.15 0 0 0.01728 -0.00578488 -0.00578488 0 0 0 1277.01 1.26631e-07 1.2663e-07 0 0 0 269.084 12.0769 183.951 73.0566 -1 1 3 609 2.609 323.15 0 0 0.01744 -0.00586347 -0.00586347 0 0 0 1277.65 1.26717e-07 1.26716e-07 0 0 0 269.289 12.0882 184.099 73.1018 -1 1 3 610 2.61 323.15 0 0 0.0176 -0.00594205 -0.00594205 0 0 0 1278.28 1.26804e-07 1.26803e-07 0 0 0 269.493 12.0995 184.247 73.147 -1 1 3 611 2.611 323.15 0 0 0.01776 -0.00602063 -0.00602063 0 0 0 1278.91 1.2689e-07 1.26889e-07 0 0 0 269.698 12.111 184.395 73.1922 -1 1 3 612 2.612 323.15 0 0 0.01792 -0.00609921 -0.00609921 0 0 0 1279.55 1.26976e-07 1.26976e-07 0 0 0 269.902 12.1225 184.543 73.2373 -1 1 3 613 2.613 323.15 0 0 0.01808 -0.0061778 -0.0061778 0 0 0 1280.18 1.27063e-07 1.27062e-07 0 0 0 270.107 12.1341 184.691 73.2825 -1 1 3 614 2.614 323.15 0 0 0.01824 -0.00625638 -0.00625638 0 0 0 1280.82 1.27149e-07 1.27148e-07 0 0 0 270.312 12.1457 184.839 73.3277 -1 1 3 615 2.615 323.15 0 0 0.0184 -0.00633496 -0.00633496 0 0 0 1281.45 1.27235e-07 1.27235e-07 0 0 0 270.517 12.1574 184.987 73.3729 -1 1 3 616 2.616 323.15 0 0 0.01856 -0.00641355 -0.00641355 0 0 0 1282.08 1.27322e-07 1.27321e-07 0 0 0 270.722 12.1692 185.135 73.4181 -1 1 3 617 2.617 323.15 0 0 0.01872 -0.00649213 -0.00649213 0 0 0 1282.72 1.27408e-07 1.27407e-07 0 0 0 270.927 12.1811 185.283 73.4633 -1 1 3 618 2.618 323.15 0 0 0.01888 -0.00657072 -0.00657072 0 0 0 1283.35 1.27494e-07 1.27493e-07 0 0 0 271.133 12.193 185.431 73.5085 -1 1 3 619 2.619 323.15 0 0 0.01904 -0.0066493 -0.0066493 0 0 0 1283.98 1.2758e-07 1.2758e-07 0 0 0 271.338 12.2051 185.579 73.5536 -1 1 3 620 2.62 323.15 0 0 0.0192 -0.00672788 -0.00672788 0 0 0 1284.62 1.27666e-07 1.27666e-07 0 0 0 271.544 12.2171 185.728 73.5988 -1 1 3 621 2.621 323.15 0 0 0.01936 -0.00680647 -0.00680647 0 0 0 1285.25 1.27752e-07 1.27752e-07 0 0 0 271.749 12.2293 185.876 73.644 -1 1 3 622 2.622 323.15 0 0 0.01952 -0.00688505 -0.00688505 0 0 0 1285.88 1.27838e-07 1.27838e-07 0 0 0 271.955 12.2415 186.024 73.6892 -1 1 3 623 2.623 323.15 0 0 0.01968 -0.00696364 -0.00696364 0 0 0 1286.51 1.27924e-07 1.27924e-07 0 0 0 272.161 12.2538 186.172 73.7344 -1 1 3 624 2.624 323.15 0 0 0.01984 -0.00704222 -0.00704222 0 0 0 1287.15 1.28011e-07 1.2801e-07 0 0 0 272.366 12.2662 186.321 73.7796 -1 1 3 625 2.625 323.15 0 0 0.02 -0.00712081 -0.00712081 0 0 0 1287.78 1.28097e-07 1.28097e-07 0 0 0 272.572 12.2787 186.469 73.8248 -1 1 3 626 2.626 323.15 0 0 0.02016 -0.00719939 -0.00719939 0 0 0 1288.41 1.28183e-07 1.28183e-07 0 0 0 272.779 12.2912 186.617 73.87 -1 1 3 627 2.627 323.15 0 0 0.02032 -0.00727798 -0.00727798 0 0 0 1289.05 1.2827e-07 1.28269e-07 0 0 0 272.985 12.3038 186.766 73.9152 -1 1 3 628 2.628 323.15 0 0 0.02048 -0.00735657 -0.00735657 0 0 0 1289.68 1.28356e-07 1.28355e-07 0 0 0 273.191 12.3165 186.914 73.9603 -1 1 3 629 2.629 323.15 0 0 0.02064 -0.00743515 -0.00743515 0 0 0 1290.31 1.28442e-07 1.28442e-07 0 0 0 273.397 12.3292 187.063 74.0055 -1 1 3 630 2.63 323.15 0 0 0.0208 -0.00751374 -0.00751374 0 0 0 1290.94 1.28528e-07 1.28528e-07 0 0 0 273.604 12.342 187.211 74.0507 -1 1 3 631 2.631 323.15 0 0 0.02096 -0.00759232 -0.00759232 0 0 0 1291.58 1.28615e-07 1.28614e-07 0 0 0 273.811 12.3549 187.36 74.0959 -1 1 3 632 2.632 323.15 0 0 0.02112 -0.00767091 -0.00767091 0 0 0 1292.21 1.28701e-07 1.28701e-07 0 0 0 274.017 12.3679 187.508 74.1411 -1 1 3 633 2.633 323.15 0 0 0.02128 -0.0077495 -0.0077495 0 0 0 1292.84 1.28788e-07 1.28787e-07 0 0 0 274.224 12.3809 187.657 74.1863 -1 1 3 634 2.634 323.15 0 0 0.02144 -0.00782808 -0.00782808 0 0 0 1293.47 1.28874e-07 1.28874e-07 0 0 0 274.431 12.394 187.805 74.2315 -1 1 3 635 2.635 323.15 0 0 0.0216 -0.00790667 -0.00790667 0 0 0 1294.1 1.2896e-07 1.2896e-07 0 0 0 274.638 12.4072 187.954 74.2767 -1 1 3 636 2.636 323.15 0 0 0.02176 -0.00798526 -0.00798526 0 0 0 1294.74 1.29046e-07 1.29046e-07 0 0 0 274.845 12.4204 188.103 74.3219 -1 1 3 637 2.637 323.15 0 0 0.02192 -0.00806384 -0.00806384 0 0 0 1295.37 1.29133e-07 1.29132e-07 0 0 0 275.052 12.4337 188.251 74.3671 -1 1 3 638 2.638 323.15 0 0 0.02208 -0.00814243 -0.00814243 0 0 0 1296 1.29219e-07 1.29219e-07 0 0 0 275.26 12.4471 188.4 74.4123 -1 1 3 639 2.639 323.15 0 0 0.02224 -0.00822102 -0.00822102 0 0 0 1296.63 1.29305e-07 1.29305e-07 0 0 0 275.467 12.4606 188.549 74.4575 -1 1 3 640 2.64 323.15 0 0 0.0224 -0.00829961 -0.00829961 0 0 0 1297.26 1.29391e-07 1.29391e-07 0 0 0 275.675 12.4741 188.698 74.5026 -1 1 3 641 2.641 323.15 0 0 0.02256 -0.0083782 -0.0083782 0 0 0 1297.89 1.29477e-07 1.29477e-07 0 0 0 275.882 12.4877 188.847 74.5478 -1 1 3 642 2.642 323.15 0 0 0.02272 -0.00845678 -0.00845678 0 0 0 1298.53 1.29564e-07 1.29564e-07 0 0 0 276.09 12.5014 188.995 74.593 -1 1 3 643 2.643 323.15 0 0 0.02288 -0.00853537 -0.00853537 0 0 0 1299.16 1.2965e-07 1.2965e-07 0 0 0 276.298 12.5152 189.144 74.6382 -1 1 3 644 2.644 323.15 0 0 0.02304 -0.00861396 -0.00861396 0 0 0 1299.79 1.29737e-07 1.29736e-07 0 0 0 276.506 12.529 189.293 74.6834 -1 1 3 645 2.645 323.15 0 0 0.0232 -0.00869255 -0.00869255 0 0 0 1300.42 1.29823e-07 1.29823e-07 0 0 0 276.714 12.5429 189.442 74.7286 -1 1 3 646 2.646 323.15 0 0 0.02336 -0.00877114 -0.00877114 0 0 0 1301.05 1.29909e-07 1.29909e-07 0 0 0 276.922 12.5569 189.591 74.7738 -1 1 3 647 2.647 323.15 0 0 0.02352 -0.00884973 -0.00884973 0 0 0 1301.68 1.29995e-07 1.29995e-07 0 0 0 277.13 12.5709 189.74 74.819 -1 1 3 648 2.648 323.15 0 0 0.02368 -0.00892831 -0.00892831 0 0 0 1302.31 1.30082e-07 1.30082e-07 0 0 0 277.338 12.5851 189.889 74.8642 -1 1 3 649 2.649 323.15 0 0 0.02384 -0.0090069 -0.0090069 0 0 0 1302.95 1.30168e-07 1.30168e-07 0 0 0 277.547 12.5993 190.038 74.9094 -1 1 3 650 2.65 323.15 0 0 0.024 -0.00908549 -0.00908549 0 0 0 1303.58 1.30254e-07 1.30255e-07 0 0 0 277.755 12.6135 190.187 74.9546 -1 1 3 651 2.651 323.15 0 0 0.02416 -0.00916408 -0.00916408 0 0 0 1304.21 1.30341e-07 1.30341e-07 0 0 0 277.964 12.6279 190.336 74.9998 -1 1 3 652 2.652 323.15 0 0 0.02432 -0.00924267 -0.00924267 0 0 0 1304.84 1.30427e-07 1.30427e-07 0 0 0 278.173 12.6423 190.485 75.045 -1 1 3 653 2.653 323.15 0 0 0.02448 -0.00932126 -0.00932126 0 0 0 1305.47 1.30513e-07 1.30514e-07 0 0 0 278.381 12.6568 190.634 75.0902 -1 1 3 654 2.654 323.15 0 0 0.02464 -0.00939985 -0.00939985 0 0 0 1306.1 1.306e-07 1.306e-07 0 0 0 278.59 12.6713 190.784 75.1354 -1 1 3 655 2.655 323.15 0 0 0.0248 -0.00947844 -0.00947844 0 0 0 1306.73 1.30686e-07 1.30686e-07 0 0 0 278.799 12.6859 190.933 75.1806 -1 1 3 656 2.656 323.15 0 0 0.02496 -0.00955703 -0.00955703 0 0 0 1307.36 1.30772e-07 1.30772e-07 0 0 0 279.008 12.7006 191.082 75.2258 -1 1 3 657 2.657 323.15 0 0 0.02512 -0.00963562 -0.00963562 0 0 0 1307.99 1.30859e-07 1.30859e-07 0 0 0 279.218 12.7154 191.231 75.271 -1 1 3 658 2.658 323.15 0 0 0.02528 -0.00971421 -0.00971421 0 0 0 1308.62 1.30945e-07 1.30945e-07 0 0 0 279.427 12.7303 191.381 75.3162 -1 1 3 659 2.659 323.15 0 0 0.02544 -0.0097928 -0.0097928 0 0 0 1309.25 1.31031e-07 1.31032e-07 0 0 0 279.636 12.7452 191.53 75.3614 -1 1 3 660 2.66 323.15 0 0 0.0256 -0.00987139 -0.00987139 0 0 0 1309.88 1.31118e-07 1.31118e-07 0 0 0 279.846 12.7602 191.679 75.4066 -1 1 3 661 2.661 323.15 0 0 0.02576 -0.00994998 -0.00994998 0 0 0 1310.51 1.31204e-07 1.31204e-07 0 0 0 280.056 12.7752 191.829 75.4518 -1 1 3 662 2.662 323.15 0 0 0.02592 -0.0100286 -0.0100286 0 0 0 1311.14 1.3129e-07 1.3129e-07 0 0 0 280.265 12.7904 191.978 75.497 -1 1 3 663 2.663 323.15 0 0 0.02608 -0.0101072 -0.0101072 0 0 0 1311.77 1.31376e-07 1.31377e-07 0 0 0 280.475 12.8056 192.127 75.5422 -1 1 3 664 2.664 323.15 0 0 0.02624 -0.0101858 -0.0101858 0 0 0 1312.4 1.31462e-07 1.31463e-07 0 0 0 280.685 12.8209 192.277 75.5874 -1 1 3 665 2.665 323.15 0 0 0.0264 -0.0102644 -0.0102644 0 0 0 1313.03 1.31549e-07 1.31549e-07 0 0 0 280.895 12.8362 192.426 75.6326 -1 1 3 666 2.666 323.15 0 0 0.02656 -0.0103429 -0.0103429 0 0 0 1313.66 1.31635e-07 1.31635e-07 0 0 0 281.105 12.8516 192.576 75.6778 -1 1 3 667 2.667 323.15 0 0 0.02672 -0.0104215 -0.0104215 0 0 0 1314.29 1.31721e-07 1.31722e-07 0 0 0 281.315 12.8671 192.725 75.723 -1 1 3 668 2.668 323.15 0 0 0.02688 -0.0105001 -0.0105001 0 0 0 1314.92 1.31807e-07 1.31808e-07 0 0 0 281.526 12.8827 192.875 75.7682 -1 1 3 669 2.669 323.15 0 0 0.02704 -0.0105787 -0.0105787 0 0 0 1315.55 1.31894e-07 1.31894e-07 0 0 0 281.736 12.8984 193.024 75.8134 -1 1 3 670 2.67 323.15 0 0 0.0272 -0.0106573 -0.0106573 0 0 0 1316.18 1.3198e-07 1.3198e-07 0 0 0 281.947 12.9141 193.174 75.8586 -1 1 3 671 2.671 323.15 0 0 0.02736 -0.0107359 -0.0107359 0 0 0 1316.81 1.32066e-07 1.32067e-07 0 0 0 282.157 12.9299 193.324 75.9038 -1 1 3 672 2.672 323.15 0 0 0.02752 -0.0108145 -0.0108145 0 0 0 1317.44 1.32153e-07 1.32153e-07 0 0 0 282.368 12.9457 193.473 75.949 -1 1 3 673 2.673 323.15 0 0 0.02768 -0.0108931 -0.0108931 0 0 0 1318.07 1.32239e-07 1.3224e-07 0 0 0 282.579 12.9617 193.623 75.9942 -1 1 3 674 2.674 323.15 0 0 0.02784 -0.0109717 -0.0109717 0 0 0 1318.7 1.32325e-07 1.32326e-07 0 0 0 282.79 12.9777 193.773 76.0394 -1 1 3 675 2.675 323.15 0 0 0.028 -0.0110503 -0.0110503 0 0 0 1319.33 1.32412e-07 1.32412e-07 0 0 0 283.001 12.9938 193.923 76.0846 -1 1 3 676 2.676 323.15 0 0 0.02816 -0.0111289 -0.0111289 0 0 0 1319.96 1.32498e-07 1.32498e-07 0 0 0 283.212 13.0099 194.072 76.1298 -1 1 3 677 2.677 323.15 0 0 0.02832 -0.0112075 -0.0112075 0 0 0 1320.59 1.32584e-07 1.32584e-07 0 0 0 283.423 13.0261 194.222 76.175 -1 1 3 678 2.678 323.15 0 0 0.02848 -0.0112861 -0.0112861 0 0 0 1321.22 1.32671e-07 1.32671e-07 0 0 0 283.635 13.0424 194.372 76.2203 -1 1 3 679 2.679 323.15 0 0 0.02864 -0.0113646 -0.0113646 0 0 0 1321.84 1.32757e-07 1.32757e-07 0 0 0 283.846 13.0588 194.522 76.2655 -1 1 3 680 2.68 323.15 0 0 0.0288 -0.0114432 -0.0114432 0 0 0 1322.47 1.32843e-07 1.32843e-07 0 0 0 284.058 13.0753 194.672 76.3107 -1 1 3 681 2.681 323.15 0 0 0.02896 -0.0115218 -0.0115218 0 0 0 1323.1 1.3293e-07 1.3293e-07 0 0 0 284.269 13.0918 194.822 76.3559 -1 1 3 682 2.682 323.15 0 0 0.02912 -0.0116004 -0.0116004 0 0 0 1323.73 1.33016e-07 1.33016e-07 0 0 0 284.481 13.1084 194.972 76.4011 -1 1 3 683 2.683 323.15 0 0 0.02928 -0.011679 -0.011679 0 0 0 1324.36 1.33102e-07 1.33102e-07 0 0 0 284.693 13.125 195.122 76.4463 -1 1 3 684 2.684 323.15 0 0 0.02944 -0.0117576 -0.0117576 0 0 0 1324.99 1.33189e-07 1.33189e-07 0 0 0 284.905 13.1418 195.272 76.4915 -1 1 3 685 2.685 323.15 0 0 0.0296 -0.0118362 -0.0118362 0 0 0 1325.62 1.33275e-07 1.33275e-07 0 0 0 285.117 13.1586 195.422 76.5367 -1 1 3 686 2.686 323.15 0 0 0.02976 -0.0119148 -0.0119148 0 0 0 1326.24 1.33361e-07 1.33361e-07 0 0 0 285.329 13.1755 195.572 76.5819 -1 1 3 687 2.687 323.15 0 0 0.02992 -0.0119934 -0.0119934 0 0 0 1326.87 1.33447e-07 1.33448e-07 0 0 0 285.541 13.1924 195.722 76.6271 -1 1 3 688 2.688 323.15 0 0 0.03008 -0.012072 -0.012072 0 0 0 1327.5 1.33534e-07 1.33534e-07 0 0 0 285.754 13.2094 195.872 76.6723 -1 1 3 689 2.689 323.15 0 0 0.03024 -0.0121506 -0.0121506 0 0 0 1328.13 1.3362e-07 1.3362e-07 0 0 0 285.966 13.2265 196.022 76.7175 -1 1 3 690 2.69 323.15 0 0 0.0304 -0.0122292 -0.0122292 0 0 0 1328.76 1.33706e-07 1.33706e-07 0 0 0 286.179 13.2437 196.172 76.7627 -1 1 3 691 2.691 323.15 0 0 0.03056 -0.0123078 -0.0123078 0 0 0 1329.39 1.33792e-07 1.33792e-07 0 0 0 286.391 13.261 196.322 76.808 -1 1 3 692 2.692 323.15 0 0 0.03072 -0.0123864 -0.0123864 0 0 0 1330.01 1.33878e-07 1.33878e-07 0 0 0 286.604 13.2783 196.473 76.8532 -1 1 3 693 2.693 323.15 0 0 0.03088 -0.012465 -0.012465 0 0 0 1330.64 1.33965e-07 1.33965e-07 0 0 0 286.817 13.2957 196.623 76.8984 -1 1 3 694 2.694 323.15 0 0 0.03104 -0.0125436 -0.0125436 0 0 0 1331.27 1.34051e-07 1.34051e-07 0 0 0 287.03 13.3131 196.773 76.9436 -1 1 3 695 2.695 323.15 0 0 0.0312 -0.0126222 -0.0126222 0 0 0 1331.9 1.34137e-07 1.34137e-07 0 0 0 287.243 13.3307 196.924 76.9888 -1 1 3 696 2.696 323.15 0 0 0.03136 -0.0127008 -0.0127008 0 0 0 1332.53 1.34223e-07 1.34223e-07 0 0 0 287.456 13.3483 197.074 77.034 -1 1 3 697 2.697 323.15 0 0 0.03152 -0.0127794 -0.0127794 0 0 0 1333.15 1.3431e-07 1.3431e-07 0 0 0 287.669 13.3659 197.224 77.0792 -1 1 3 698 2.698 323.15 0 0 0.03168 -0.012858 -0.012858 0 0 0 1333.78 1.34396e-07 1.34396e-07 0 0 0 287.883 13.3837 197.375 77.1244 -1 1 3 699 2.699 323.15 0 0 0.03184 -0.0129366 -0.0129366 0 0 0 1334.41 1.34483e-07 1.34483e-07 0 0 0 288.096 13.4015 197.525 77.1696 -1 1 3 700 2.7 323.15 0 0 0.032 -0.0130152 -0.0130152 0 0 0 1335.04 1.34569e-07 1.34569e-07 0 0 0 288.31 13.4194 197.675 77.2149 -1 1 3 701 2.701 323.15 0 0 0.03216 -0.0130938 -0.0130938 0 0 0 1335.66 1.34655e-07 1.34655e-07 0 0 0 288.523 13.4374 197.826 77.2601 -1 1 3 702 2.702 323.15 0 0 0.03232 -0.0131723 -0.0131723 0 0 0 1336.29 1.34741e-07 1.34741e-07 0 0 0 288.737 13.4554 197.976 77.3053 -1 1 3 703 2.703 323.15 0 0 0.03248 -0.0132509 -0.0132509 0 0 0 1336.92 1.34827e-07 1.34827e-07 0 0 0 288.951 13.4735 198.127 77.3505 -1 1 3 704 2.704 323.15 0 0 0.03264 -0.0133295 -0.0133295 0 0 0 1337.55 1.34913e-07 1.34913e-07 0 0 0 289.165 13.4917 198.278 77.3957 -1 1 3 705 2.705 323.15 0 0 0.0328 -0.0134081 -0.0134081 0 0 0 1338.17 1.35e-07 1.35e-07 0 0 0 289.379 13.51 198.428 77.4409 -1 1 3 706 2.706 323.15 0 0 0.03296 -0.0134867 -0.0134867 0 0 0 1338.8 1.35086e-07 1.35086e-07 0 0 0 289.593 13.5283 198.579 77.4861 -1 1 3 707 2.707 323.15 0 0 0.03312 -0.0135653 -0.0135653 0 0 0 1339.43 1.35172e-07 1.35172e-07 0 0 0 289.807 13.5467 198.729 77.5314 -1 1 3 708 2.708 323.15 0 0 0.03328 -0.0136439 -0.0136439 0 0 0 1340.05 1.35258e-07 1.35258e-07 0 0 0 290.022 13.5652 198.88 77.5766 -1 1 3 709 2.709 323.15 0 0 0.03344 -0.0137225 -0.0137225 0 0 0 1340.68 1.35345e-07 1.35345e-07 0 0 0 290.236 13.5838 199.031 77.6218 -1 1 3 710 2.71 323.15 0 0 0.0336 -0.0138011 -0.0138011 0 0 0 1341.31 1.35431e-07 1.35431e-07 0 0 0 290.451 13.6024 199.181 77.667 -1 1 3 711 2.711 323.15 0 0 0.03376 -0.0138797 -0.0138797 0 0 0 1341.93 1.35517e-07 1.35517e-07 0 0 0 290.665 13.6211 199.332 77.7122 -1 1 3 712 2.712 323.15 0 0 0.03392 -0.0139583 -0.0139583 0 0 0 1342.56 1.35603e-07 1.35603e-07 0 0 0 290.88 13.6399 199.483 77.7574 -1 1 3 713 2.713 323.15 0 0 0.03408 -0.0140369 -0.0140369 0 0 0 1343.19 1.3569e-07 1.3569e-07 0 0 0 291.095 13.6587 199.634 77.8027 -1 1 3 714 2.714 323.15 0 0 0.03424 -0.0141155 -0.0141155 0 0 0 1343.81 1.35776e-07 1.35776e-07 0 0 0 291.31 13.6776 199.785 77.8479 -1 1 3 715 2.715 323.15 0 0 0.0344 -0.0141941 -0.0141941 0 0 0 1344.44 1.35862e-07 1.35863e-07 0 0 0 291.525 13.6966 199.935 77.8931 -1 1 3 716 2.716 323.15 0 0 0.03456 -0.0142727 -0.0142727 0 0 0 1345.07 1.35948e-07 1.35949e-07 0 0 0 291.74 13.7157 200.086 77.9383 -1 1 3 717 2.717 323.15 0 0 0.03472 -0.0143513 -0.0143513 0 0 0 1345.69 1.36035e-07 1.36035e-07 0 0 0 291.956 13.7348 200.237 77.9835 -1 1 3 718 2.718 323.15 0 0 0.03488 -0.0144299 -0.0144299 0 0 0 1346.32 1.36121e-07 1.36121e-07 0 0 0 292.171 13.754 200.388 78.0287 -1 1 3 719 2.719 323.15 0 0 0.03504 -0.0145085 -0.0145085 0 0 0 1346.95 1.36208e-07 1.36208e-07 0 0 0 292.386 13.7733 200.539 78.074 -1 1 3 720 2.72 323.15 0 0 0.0352 -0.0145871 -0.0145871 0 0 0 1347.57 1.36294e-07 1.36294e-07 0 0 0 292.602 13.7926 200.69 78.1192 -1 1 3 721 2.721 323.15 0 0 0.03536 -0.0146657 -0.0146657 0 0 0 1348.2 1.3638e-07 1.3638e-07 0 0 0 292.818 13.8121 200.841 78.1644 -1 1 3 722 2.722 323.15 0 0 0.03552 -0.0147443 -0.0147443 0 0 0 1348.82 1.36467e-07 1.36467e-07 0 0 0 293.033 13.8316 200.992 78.2096 -1 1 3 723 2.723 323.15 0 0 0.03568 -0.0148229 -0.0148229 0 0 0 1349.45 1.36553e-07 1.36553e-07 0 0 0 293.249 13.8511 201.143 78.2548 -1 1 3 724 2.724 323.15 0 0 0.03584 -0.0149015 -0.0149015 0 0 0 1350.08 1.36639e-07 1.36639e-07 0 0 0 293.465 13.8708 201.294 78.3001 -1 1 3 725 2.725 323.15 0 0 0.036 -0.0149801 -0.0149801 0 0 0 1350.7 1.36726e-07 1.36726e-07 0 0 0 293.681 13.8905 201.445 78.3453 -1 1 3 726 2.726 323.15 0 0 0.03616 -0.0150587 -0.0150587 0 0 0 1351.33 1.36812e-07 1.36812e-07 0 0 0 293.897 13.9103 201.597 78.3905 -1 1 3 727 2.727 323.15 0 0 0.03632 -0.0151373 -0.0151373 0 0 0 1351.95 1.36898e-07 1.36898e-07 0 0 0 294.114 13.9301 201.748 78.4357 -1 1 3 728 2.728 323.15 0 0 0.03648 -0.0152159 -0.0152159 0 0 0 1352.58 1.36985e-07 1.36985e-07 0 0 0 294.33 13.9501 201.899 78.4809 -1 1 3 729 2.729 323.15 0 0 0.03664 -0.0152945 -0.0152945 0 0 0 1353.21 1.37071e-07 1.37071e-07 0 0 0 294.546 13.9701 202.05 78.5262 -1 1 3 730 2.73 323.15 0 0 0.0368 -0.0153731 -0.0153731 0 0 0 1353.83 1.37158e-07 1.37158e-07 0 0 0 294.763 13.9902 202.202 78.5714 -1 1 3 731 2.731 323.15 0 0 0.03696 -0.0154517 -0.0154517 0 0 0 1354.46 1.37244e-07 1.37244e-07 0 0 0 294.98 14.0103 202.353 78.6166 -1 1 3 732 2.732 323.15 0 0 0.03712 -0.0155303 -0.0155303 0 0 0 1355.08 1.3733e-07 1.37331e-07 0 0 0 295.196 14.0305 202.504 78.6618 -1 1 3 733 2.733 323.15 0 0 0.03728 -0.0156089 -0.0156089 0 0 0 1355.71 1.37416e-07 1.37417e-07 0 0 0 295.413 14.0508 202.655 78.707 -1 1 3 734 2.734 323.15 0 0 0.03744 -0.0156875 -0.0156875 0 0 0 1356.33 1.37503e-07 1.37504e-07 0 0 0 295.63 14.0712 202.807 78.7523 -1 1 3 735 2.735 323.15 0 0 0.0376 -0.0157661 -0.0157661 0 0 0 1356.96 1.3759e-07 1.3759e-07 0 0 0 295.847 14.0916 202.958 78.7975 -1 1 3 736 2.736 323.15 0 0 0.03776 -0.0158447 -0.0158447 0 0 0 1357.58 1.37676e-07 1.37676e-07 0 0 0 296.065 14.1122 203.11 78.8427 -1 1 3 737 2.737 323.15 0 0 0.03792 -0.0159233 -0.0159233 0 0 0 1358.21 1.37763e-07 1.37763e-07 0 0 0 296.282 14.1327 203.261 78.8879 -1 1 3 738 2.738 323.15 0 0 0.03808 -0.016002 -0.016002 0 0 0 1358.83 1.37849e-07 1.37849e-07 0 0 0 296.499 14.1534 203.413 78.9332 -1 1 3 739 2.739 323.15 0 0 0.03824 -0.0160806 -0.0160806 0 0 0 1359.46 1.37936e-07 1.37936e-07 0 0 0 296.717 14.1741 203.564 78.9784 -1 1 3 740 2.74 323.15 0 0 0.0384 -0.0161592 -0.0161592 0 0 0 1360.08 1.38022e-07 1.38022e-07 0 0 0 296.934 14.1949 203.716 79.0236 -1 1 3 741 2.741 323.15 0 0 0.03856 -0.0162378 -0.0162378 0 0 0 1360.71 1.38108e-07 1.38108e-07 0 0 0 297.152 14.2158 203.867 79.0688 -1 1 3 742 2.742 323.15 0 0 0.03872 -0.0163164 -0.0163164 0 0 0 1361.33 1.38194e-07 1.38194e-07 0 0 0 297.37 14.2368 204.019 79.1141 -1 1 3 743 2.743 323.15 0 0 0.03888 -0.016395 -0.016395 0 0 0 1361.96 1.38281e-07 1.38281e-07 0 0 0 297.587 14.2578 204.17 79.1593 -1 1 3 744 2.744 323.15 0 0 0.03904 -0.0164736 -0.0164736 0 0 0 1362.58 1.38367e-07 1.38367e-07 0 0 0 297.805 14.2789 204.322 79.2045 -1 1 3 745 2.745 323.15 0 0 0.0392 -0.0165522 -0.0165522 0 0 0 1363.21 1.38454e-07 1.38454e-07 0 0 0 298.024 14.3001 204.474 79.2497 -1 1 3 746 2.746 323.15 0 0 0.03936 -0.0166308 -0.0166308 0 0 0 1363.83 1.38541e-07 1.38541e-07 0 0 0 298.242 14.3213 204.625 79.295 -1 1 3 747 2.747 323.15 0 0 0.03952 -0.0167094 -0.0167094 0 0 0 1364.45 1.38627e-07 1.38627e-07 0 0 0 298.46 14.3426 204.777 79.3402 -1 1 3 748 2.748 323.15 0 0 0.03968 -0.016788 -0.016788 0 0 0 1365.08 1.38713e-07 1.38713e-07 0 0 0 298.678 14.364 204.929 79.3854 -1 1 3 749 2.749 323.15 0 0 0.03984 -0.0168666 -0.0168666 0 0 0 1365.7 1.388e-07 1.388e-07 0 0 0 298.897 14.3855 205.081 79.4306 -1 1 3 750 2.75 323.15 0 0 0.04 -0.0169452 -0.0169452 0 0 0 1366.33 1.38886e-07 1.38886e-07 0 0 0 299.115 14.407 205.232 79.4759 -1 1 3 751 2.751 323.15 0 0 0.04016 -0.0170238 -0.0170238 0 0 0 1366.95 1.38973e-07 1.38973e-07 0 0 0 299.334 14.4286 205.384 79.5211 -1 1 3 752 2.752 323.15 0 0 0.04032 -0.0171024 -0.0171024 0 0 0 1367.58 1.39059e-07 1.39059e-07 0 0 0 299.553 14.4503 205.536 79.5663 -1 1 3 753 2.753 323.15 0 0 0.04048 -0.017181 -0.017181 0 0 0 1368.2 1.39145e-07 1.39145e-07 0 0 0 299.772 14.472 205.688 79.6116 -1 1 3 754 2.754 323.15 0 0 0.04064 -0.0172596 -0.0172596 0 0 0 1368.82 1.39231e-07 1.39231e-07 0 0 0 299.991 14.4938 205.84 79.6568 -1 1 3 755 2.755 323.15 0 0 0.0408 -0.0173382 -0.0173382 0 0 0 1369.45 1.39318e-07 1.39318e-07 0 0 0 300.21 14.5157 205.992 79.702 -1 1 3 756 2.756 323.15 0 0 0.04096 -0.0174168 -0.0174168 0 0 0 1370.07 1.39404e-07 1.39404e-07 0 0 0 300.429 14.5377 206.144 79.7472 -1 1 3 757 2.757 323.15 0 0 0.04112 -0.0174954 -0.0174954 0 0 0 1370.69 1.3949e-07 1.3949e-07 0 0 0 300.648 14.5597 206.296 79.7925 -1 1 3 758 2.758 323.15 0 0 0.04128 -0.017574 -0.017574 0 0 0 1371.32 1.39576e-07 1.39577e-07 0 0 0 300.867 14.5819 206.448 79.8377 -1 1 3 759 2.759 323.15 0 0 0.04144 -0.0176526 -0.0176526 0 0 0 1371.94 1.39663e-07 1.39663e-07 0 0 0 301.087 14.6041 206.6 79.8829 -1 1 3 760 2.76 323.15 0 0 0.0416 -0.0177312 -0.0177312 0 0 0 1372.57 1.39749e-07 1.39749e-07 0 0 0 301.306 14.6263 206.752 79.9282 -1 1 3 761 2.761 323.15 0 0 0.04176 -0.0178099 -0.0178099 0 0 0 1373.19 1.39835e-07 1.39835e-07 0 0 0 301.526 14.6486 206.904 79.9734 -1 1 3 762 2.762 323.15 0 0 0.04192 -0.0178885 -0.0178885 0 0 0 1373.81 1.39921e-07 1.39921e-07 0 0 0 301.746 14.671 207.056 80.0186 -1 1 3 763 2.763 323.15 0 0 0.04208 -0.0179671 -0.0179671 0 0 0 1374.44 1.40007e-07 1.40008e-07 0 0 0 301.966 14.6935 207.208 80.0639 -1 1 3 764 2.764 323.15 0 0 0.04224 -0.0180457 -0.0180457 0 0 0 1375.06 1.40094e-07 1.40094e-07 0 0 0 302.186 14.7161 207.361 80.1091 -1 1 3 765 2.765 323.15 0 0 0.0424 -0.0181243 -0.0181243 0 0 0 1375.68 1.4018e-07 1.4018e-07 0 0 0 302.406 14.7387 207.513 80.1543 -1 1 3 766 2.766 323.15 0 0 0.04256 -0.0182029 -0.0182029 0 0 0 1376.31 1.40266e-07 1.40266e-07 0 0 0 302.626 14.7614 207.665 80.1995 -1 1 3 767 2.767 323.15 0 0 0.04272 -0.0182815 -0.0182815 0 0 0 1376.93 1.40352e-07 1.40352e-07 0 0 0 302.846 14.7842 207.817 80.2448 -1 1 3 768 2.768 323.15 0 0 0.04288 -0.0183601 -0.0183601 0 0 0 1377.55 1.40439e-07 1.40439e-07 0 0 0 303.067 14.807 207.969 80.29 -1 1 3 769 2.769 323.15 0 0 0.04304 -0.0184387 -0.0184387 0 0 0 1378.17 1.40525e-07 1.40525e-07 0 0 0 303.287 14.8299 208.122 80.3352 -1 1 3 770 2.77 323.15 0 0 0.0432 -0.0185173 -0.0185173 0 0 0 1378.8 1.40612e-07 1.40611e-07 0 0 0 303.508 14.8529 208.274 80.3805 -1 1 3 771 2.771 323.15 0 0 0.04336 -0.0185959 -0.0185959 0 0 0 1379.42 1.40698e-07 1.40698e-07 0 0 0 303.728 14.876 208.427 80.4257 -1 1 3 772 2.772 323.15 0 0 0.04352 -0.0186745 -0.0186745 0 0 0 1380.04 1.40784e-07 1.40784e-07 0 0 0 303.949 14.8991 208.579 80.4709 -1 1 3 773 2.773 323.15 0 0 0.04368 -0.0187531 -0.0187531 0 0 0 1380.67 1.40871e-07 1.40871e-07 0 0 0 304.17 14.9223 208.731 80.5162 -1 1 3 774 2.774 323.15 0 0 0.04384 -0.0188317 -0.0188317 0 0 0 1381.29 1.40957e-07 1.40957e-07 0 0 0 304.391 14.9456 208.884 80.5614 -1 1 3 775 2.775 323.15 0 0 0.044 -0.0189104 -0.0189104 0 0 0 1381.91 1.41044e-07 1.41044e-07 0 0 0 304.612 14.9689 209.036 80.6066 -1 1 3 776 2.776 323.15 0 0 0.04416 -0.018989 -0.018989 0 0 0 1382.53 1.4113e-07 1.41129e-07 0 0 0 304.833 14.9923 209.189 80.6519 -1 1 3 777 2.777 323.15 0 0 0.04432 -0.0190676 -0.0190676 0 0 0 1383.16 1.41216e-07 1.41216e-07 0 0 0 305.054 15.0158 209.341 80.6971 -1 1 3 778 2.778 323.15 0 0 0.04448 -0.0191462 -0.0191462 0 0 0 1383.78 1.41302e-07 1.41302e-07 0 0 0 305.276 15.0394 209.494 80.7423 -1 1 3 779 2.779 323.15 0 0 0.04464 -0.0192248 -0.0192248 0 0 0 1384.4 1.41388e-07 1.41388e-07 0 0 0 305.497 15.0631 209.646 80.7876 -1 1 3 780 2.78 323.15 0 0 0.0448 -0.0193034 -0.0193034 0 0 0 1385.02 1.41475e-07 1.41474e-07 0 0 0 305.719 15.0868 209.799 80.8328 -1 1 3 781 2.781 323.15 0 0 0.04496 -0.019382 -0.019382 0 0 0 1385.65 1.41561e-07 1.4156e-07 0 0 0 305.94 15.1106 209.952 80.8781 -1 1 3 782 2.782 323.15 0 0 0.04512 -0.0194606 -0.0194606 0 0 0 1386.27 1.41647e-07 1.41647e-07 0 0 0 306.162 15.1344 210.104 80.9233 -1 1 3 783 2.783 323.15 0 0 0.04528 -0.0195392 -0.0195392 0 0 0 1386.89 1.41733e-07 1.41733e-07 0 0 0 306.384 15.1583 210.257 80.9685 -1 1 3 784 2.784 323.15 0 0 0.04544 -0.0196178 -0.0196178 0 0 0 1387.51 1.4182e-07 1.41819e-07 0 0 0 306.606 15.1823 210.41 81.0138 -1 1 3 785 2.785 323.15 0 0 0.0456 -0.0196964 -0.0196964 0 0 0 1388.13 1.41906e-07 1.41905e-07 0 0 0 306.828 15.2064 210.562 81.059 -1 1 3 786 2.786 323.15 0 0 0.04576 -0.019775 -0.019775 0 0 0 1388.76 1.41992e-07 1.41992e-07 0 0 0 307.05 15.2306 210.715 81.1042 -1 1 3 787 2.787 323.15 0 0 0.04592 -0.0198537 -0.0198537 0 0 0 1389.38 1.42079e-07 1.42078e-07 0 0 0 307.272 15.2548 210.868 81.1495 -1 1 3 788 2.788 323.15 0 0 0.04608 -0.0199323 -0.0199323 0 0 0 1390 1.42165e-07 1.42164e-07 0 0 0 307.495 15.2791 211.021 81.1947 -1 1 3 789 2.789 323.15 0 0 0.04624 -0.0200109 -0.0200109 0 0 0 1390.62 1.42252e-07 1.42251e-07 0 0 0 307.717 15.3035 211.174 81.24 -1 1 3 790 2.79 323.15 0 0 0.0464 -0.0200895 -0.0200895 0 0 0 1391.24 1.42338e-07 1.42338e-07 0 0 0 307.94 15.3279 211.326 81.2852 -1 1 3 791 2.791 323.15 0 0 0.04656 -0.0201681 -0.0201681 0 0 0 1391.86 1.42424e-07 1.42424e-07 0 0 0 308.162 15.3524 211.479 81.3304 -1 1 3 792 2.792 323.15 0 0 0.04672 -0.0202467 -0.0202467 0 0 0 1392.49 1.42511e-07 1.4251e-07 0 0 0 308.385 15.377 211.632 81.3757 -1 1 3 793 2.793 323.15 0 0 0.04688 -0.0203253 -0.0203253 0 0 0 1393.11 1.42598e-07 1.42597e-07 0 0 0 308.608 15.4017 211.785 81.4209 -1 1 3 794 2.794 323.15 0 0 0.04704 -0.0204039 -0.0204039 0 0 0 1393.73 1.42684e-07 1.42683e-07 0 0 0 308.831 15.4264 211.938 81.4662 -1 1 3 795 2.795 323.15 0 0 0.0472 -0.0204825 -0.0204825 0 0 0 1394.35 1.4277e-07 1.42769e-07 0 0 0 309.054 15.4512 212.091 81.5114 -1 1 3 796 2.796 323.15 0 0 0.04736 -0.0205612 -0.0205612 0 0 0 1394.97 1.42856e-07 1.42855e-07 0 0 0 309.277 15.4761 212.244 81.5566 -1 1 3 797 2.797 323.15 0 0 0.04752 -0.0206398 -0.0206398 0 0 0 1395.59 1.42942e-07 1.42941e-07 0 0 0 309.5 15.501 212.397 81.6019 -1 1 3 798 2.798 323.15 0 0 0.04768 -0.0207184 -0.0207184 0 0 0 1396.21 1.43029e-07 1.43027e-07 0 0 0 309.724 15.5261 212.55 81.6471 -1 1 3 799 2.799 323.15 0 0 0.04784 -0.020797 -0.020797 0 0 0 1396.84 1.43115e-07 1.43114e-07 0 0 0 309.947 15.5511 212.704 81.6924 -1 1 3 800 2.8 323.15 0 0 0.048 -0.0208756 -0.0208756 0 0 0 1397.46 1.43202e-07 1.432e-07 0 0 0 310.171 15.5763 212.857 81.7376 -1 1 3 801 2.801 323.15 0 0 0.04816 -0.0209542 -0.0209542 0 0 0 1398.08 1.43288e-07 1.43287e-07 0 0 0 310.394 15.6016 213.01 81.7828 -1 1 3 802 2.802 323.15 0 0 0.04832 -0.0210328 -0.0210328 0 0 0 1398.7 1.43374e-07 1.43373e-07 0 0 0 310.618 15.6269 213.163 81.8281 -1 1 3 803 2.803 323.15 0 0 0.04848 -0.0211114 -0.0211114 0 0 0 1399.32 1.4346e-07 1.43459e-07 0 0 0 310.842 15.6523 213.316 81.8733 -1 1 3 804 2.804 323.15 0 0 0.04864 -0.02119 -0.02119 0 0 0 1399.94 1.43546e-07 1.43545e-07 0 0 0 311.066 15.6777 213.469 81.9186 -1 1 3 805 2.805 323.15 0 0 0.0488 -0.0212687 -0.0212687 0 0 0 1400.56 1.43632e-07 1.43631e-07 0 0 0 311.29 15.7032 213.623 81.9638 -1 1 3 806 2.806 323.15 0 0 0.04896 -0.0213473 -0.0213473 0 0 0 1401.18 1.43719e-07 1.43718e-07 0 0 0 311.514 15.7289 213.776 82.009 -1 1 3 807 2.807 323.15 0 0 0.04912 -0.0214259 -0.0214259 0 0 0 1401.8 1.43805e-07 1.43804e-07 0 0 0 311.738 15.7545 213.929 82.0543 -1 1 3 808 2.808 323.15 0 0 0.04928 -0.0215045 -0.0215045 0 0 0 1402.42 1.43891e-07 1.4389e-07 0 0 0 311.962 15.7803 214.083 82.0995 -1 1 3 809 2.809 323.15 0 0 0.04944 -0.0215831 -0.0215831 0 0 0 1403.04 1.43977e-07 1.43976e-07 0 0 0 312.187 15.8061 214.236 82.1448 -1 1 3 810 2.81 323.15 0 0 0.0496 -0.0216617 -0.0216617 0 0 0 1403.66 1.44063e-07 1.44062e-07 0 0 0 312.411 15.832 214.389 82.19 -1 1 3 811 2.811 323.15 0 0 0.04976 -0.0217403 -0.0217403 0 0 0 1404.28 1.44149e-07 1.44149e-07 0 0 0 312.636 15.858 214.543 82.2353 -1 1 3 812 2.812 323.15 0 0 0.04992 -0.0218189 -0.0218189 0 0 0 1404.9 1.44236e-07 1.44235e-07 0 0 0 312.861 15.884 214.696 82.2805 -1 1 3 813 2.813 323.15 0 0 0.05008 -0.0218976 -0.0218976 0 0 0 1405.52 1.44322e-07 1.44321e-07 0 0 0 313.086 15.9101 214.85 82.3258 -1 1 3 814 2.814 323.15 0 0 0.05024 -0.0219762 -0.0219762 0 0 0 1406.15 1.44408e-07 1.44407e-07 0 0 0 313.311 15.9363 215.003 82.371 -1 1 3 815 2.815 323.15 0 0 0.0504 -0.0220548 -0.0220548 0 0 0 1406.77 1.44494e-07 1.44493e-07 0 0 0 313.536 15.9626 215.157 82.4162 -1 1 3 816 2.816 323.15 0 0 0.05056 -0.0221334 -0.0221334 0 0 0 1407.39 1.4458e-07 1.44579e-07 0 0 0 313.761 15.9889 215.31 82.4615 -1 1 3 817 2.817 323.15 0 0 0.05072 -0.022212 -0.022212 0 0 0 1408.01 1.44667e-07 1.44666e-07 0 0 0 313.986 16.0153 215.464 82.5067 -1 1 3 818 2.818 323.15 0 0 0.05088 -0.0222906 -0.0222906 0 0 0 1408.63 1.44753e-07 1.44752e-07 0 0 0 314.211 16.0418 215.618 82.552 -1 1 3 819 2.819 323.15 0 0 0.05104 -0.0223692 -0.0223692 0 0 0 1409.25 1.44839e-07 1.44838e-07 0 0 0 314.437 16.0683 215.771 82.5972 -1 1 3 820 2.82 323.15 0 0 0.0512 -0.0224479 -0.0224479 0 0 0 1409.86 1.44925e-07 1.44924e-07 0 0 0 314.662 16.095 215.925 82.6425 -1 1 3 821 2.821 323.15 0 0 0.05136 -0.0225265 -0.0225265 0 0 0 1410.48 1.45011e-07 1.4501e-07 0 0 0 314.888 16.1217 216.079 82.6877 -1 1 3 822 2.822 323.15 0 0 0.05152 -0.0226051 -0.0226051 0 0 0 1411.1 1.45098e-07 1.45096e-07 0 0 0 315.114 16.1484 216.232 82.733 -1 1 3 823 2.823 323.15 0 0 0.05168 -0.0226837 -0.0226837 0 0 0 1411.72 1.45184e-07 1.45183e-07 0 0 0 315.339 16.1753 216.386 82.7782 -1 1 3 824 2.824 323.15 0 0 0.05184 -0.0227623 -0.0227623 0 0 0 1412.34 1.4527e-07 1.45269e-07 0 0 0 315.565 16.2022 216.54 82.8235 -1 1 3 825 2.825 323.15 0 0 0.052 -0.0228409 -0.0228409 0 0 0 1412.96 1.45357e-07 1.45355e-07 0 0 0 315.791 16.2292 216.694 82.8687 -1 1 3 826 2.826 323.15 0 0 0.05216 -0.0229195 -0.0229195 0 0 0 1413.58 1.45443e-07 1.45441e-07 0 0 0 316.018 16.2562 216.847 82.914 -1 1 3 827 2.827 323.15 0 0 0.05232 -0.0229982 -0.0229982 0 0 0 1414.2 1.4553e-07 1.45528e-07 0 0 0 316.244 16.2834 217.001 82.9592 -1 1 3 828 2.828 323.15 0 0 0.05248 -0.0230768 -0.0230768 0 0 0 1414.82 1.45616e-07 1.45614e-07 0 0 0 316.47 16.3106 217.155 83.0045 -1 1 3 829 2.829 323.15 0 0 0.05264 -0.0231554 -0.0231554 0 0 0 1415.44 1.45702e-07 1.457e-07 0 0 0 316.696 16.3378 217.309 83.0497 -1 1 3 830 2.83 323.15 0 0 0.0528 -0.023234 -0.023234 0 0 0 1416.06 1.45789e-07 1.45787e-07 0 0 0 316.923 16.3652 217.463 83.095 -1 1 3 831 2.831 323.15 0 0 0.05296 -0.0233126 -0.0233126 0 0 0 1416.68 1.45876e-07 1.45874e-07 0 0 0 317.15 16.3926 217.617 83.1402 -1 1 3 832 2.832 323.15 0 0 0.05312 -0.0233912 -0.0233912 0 0 0 1417.3 1.45962e-07 1.4596e-07 0 0 0 317.376 16.4201 217.771 83.1855 -1 1 3 833 2.833 323.15 0 0 0.05328 -0.0234699 -0.0234699 0 0 0 1417.92 1.46048e-07 1.46046e-07 0 0 0 317.603 16.4477 217.925 83.2307 -1 1 3 834 2.834 323.15 0 0 0.05344 -0.0235485 -0.0235485 0 0 0 1418.54 1.46134e-07 1.46133e-07 0 0 0 317.83 16.4753 218.079 83.276 -1 1 3 835 2.835 323.15 0 0 0.0536 -0.0236271 -0.0236271 0 0 0 1419.16 1.46221e-07 1.46219e-07 0 0 0 318.057 16.503 218.233 83.3212 -1 1 3 836 2.836 323.15 0 0 0.05376 -0.0237057 -0.0237057 0 0 0 1419.77 1.46307e-07 1.46306e-07 0 0 0 318.284 16.5308 218.387 83.3665 -1 1 3 837 2.837 323.15 0 0 0.05392 -0.0237843 -0.0237843 0 0 0 1420.39 1.46394e-07 1.46392e-07 0 0 0 318.511 16.5587 218.541 83.4117 -1 1 3 838 2.838 323.15 0 0 0.05408 -0.0238629 -0.0238629 0 0 0 1421.01 1.4648e-07 1.46479e-07 0 0 0 318.739 16.5866 218.695 83.457 -1 1 3 839 2.839 323.15 0 0 0.05424 -0.0239415 -0.0239415 0 0 0 1421.63 1.46567e-07 1.46565e-07 0 0 0 318.966 16.6146 218.849 83.5022 -1 1 3 840 2.84 323.15 0 0 0.0544 -0.0240202 -0.0240202 0 0 0 1422.25 1.46653e-07 1.46652e-07 0 0 0 319.194 16.6427 219.003 83.5475 -1 1 3 841 2.841 323.15 0 0 0.05456 -0.0240988 -0.0240988 0 0 0 1422.87 1.4674e-07 1.46738e-07 0 0 0 319.421 16.6709 219.158 83.5927 -1 1 3 842 2.842 323.15 0 0 0.05472 -0.0241774 -0.0241774 0 0 0 1423.49 1.46826e-07 1.46824e-07 0 0 0 319.649 16.6991 219.312 83.638 -1 1 3 843 2.843 323.15 0 0 0.05488 -0.024256 -0.024256 0 0 0 1424.1 1.46912e-07 1.4691e-07 0 0 0 319.877 16.7274 219.466 83.6832 -1 1 3 844 2.844 323.15 0 0 0.05504 -0.0243346 -0.0243346 0 0 0 1424.72 1.46998e-07 1.46996e-07 0 0 0 320.105 16.7557 219.62 83.7285 -1 1 3 845 2.845 323.15 0 0 0.0552 -0.0244133 -0.0244133 0 0 0 1425.34 1.47084e-07 1.47083e-07 0 0 0 320.333 16.7842 219.775 83.7737 -1 1 3 846 2.846 323.15 0 0 0.05536 -0.0244919 -0.0244919 0 0 0 1425.96 1.47171e-07 1.47169e-07 0 0 0 320.561 16.8127 219.929 83.819 -1 1 3 847 2.847 323.15 0 0 0.05552 -0.0245705 -0.0245705 0 0 0 1426.58 1.47257e-07 1.47255e-07 0 0 0 320.789 16.8413 220.083 83.8642 -1 1 3 848 2.848 323.15 0 0 0.05568 -0.0246491 -0.0246491 0 0 0 1427.2 1.47343e-07 1.47341e-07 0 0 0 321.017 16.8699 220.238 83.9095 -1 1 3 849 2.849 323.15 0 0 0.05584 -0.0247277 -0.0247277 0 0 0 1427.81 1.4743e-07 1.47428e-07 0 0 0 321.246 16.8987 220.392 83.9547 -1 1 3 850 2.85 323.15 0 0 0.056 -0.0248063 -0.0248063 0 0 0 1428.43 1.47517e-07 1.47515e-07 0 0 0 321.474 16.9275 220.547 84 -1 1 3 851 2.851 323.15 0 0 0.05616 -0.024885 -0.024885 0 0 0 1429.05 1.47603e-07 1.47601e-07 0 0 0 321.703 16.9564 220.701 84.0453 -1 1 3 852 2.852 323.15 0 0 0.05632 -0.0249636 -0.0249636 0 0 0 1429.67 1.4769e-07 1.47688e-07 0 0 0 321.932 16.9853 220.856 84.0905 -1 1 3 853 2.853 323.15 0 0 0.05648 -0.0250422 -0.0250422 0 0 0 1430.29 1.47776e-07 1.47774e-07 0 0 0 322.16 17.0143 221.01 84.1358 -1 1 3 854 2.854 323.15 0 0 0.05664 -0.0251208 -0.0251208 0 0 0 1430.9 1.47862e-07 1.4786e-07 0 0 0 322.389 17.0434 221.165 84.181 -1 1 3 855 2.855 323.15 0 0 0.0568 -0.0251994 -0.0251994 0 0 0 1431.52 1.47949e-07 1.47947e-07 0 0 0 322.618 17.0726 221.319 84.2263 -1 1 3 856 2.856 323.15 0 0 0.05696 -0.0252781 -0.0252781 0 0 0 1432.14 1.48035e-07 1.48033e-07 0 0 0 322.847 17.1019 221.474 84.2715 -1 1 3 857 2.857 323.15 0 0 0.05712 -0.0253567 -0.0253567 0 0 0 1432.76 1.48121e-07 1.48119e-07 0 0 0 323.076 17.1312 221.629 84.3168 -1 1 3 858 2.858 323.15 0 0 0.05728 -0.0254353 -0.0254353 0 0 0 1433.37 1.48208e-07 1.48206e-07 0 0 0 323.306 17.1606 221.783 84.362 -1 1 3 859 2.859 323.15 0 0 0.05744 -0.0255139 -0.0255139 0 0 0 1433.99 1.48294e-07 1.48293e-07 0 0 0 323.535 17.19 221.938 84.4073 -1 1 3 860 2.86 323.15 0 0 0.0576 -0.0255925 -0.0255925 0 0 0 1434.61 1.48381e-07 1.48379e-07 0 0 0 323.765 17.2195 222.093 84.4526 -1 1 3 861 2.861 323.15 0 0 0.05776 -0.0256712 -0.0256712 0 0 0 1435.23 1.48467e-07 1.48465e-07 0 0 0 323.994 17.2492 222.247 84.4978 -1 1 3 862 2.862 323.15 0 0 0.05792 -0.0257498 -0.0257498 0 0 0 1435.84 1.48553e-07 1.48551e-07 0 0 0 324.224 17.2788 222.402 84.5431 -1 1 3 863 2.863 323.15 0 0 0.05808 -0.0258284 -0.0258284 0 0 0 1436.46 1.48639e-07 1.48638e-07 0 0 0 324.454 17.3086 222.557 84.5883 -1 1 3 864 2.864 323.15 0 0 0.05824 -0.025907 -0.025907 0 0 0 1437.08 1.48726e-07 1.48724e-07 0 0 0 324.684 17.3384 222.712 84.6336 -1 1 3 865 2.865 323.15 0 0 0.0584 -0.0259856 -0.0259856 0 0 0 1437.7 1.48812e-07 1.4881e-07 0 0 0 324.914 17.3683 222.866 84.6789 -1 1 3 866 2.866 323.15 0 0 0.05856 -0.0260643 -0.0260643 0 0 0 1438.31 1.48898e-07 1.48896e-07 0 0 0 325.144 17.3983 223.021 84.7241 -1 1 3 867 2.867 323.15 0 0 0.05872 -0.0261429 -0.0261429 0 0 0 1438.93 1.48984e-07 1.48982e-07 0 0 0 325.374 17.4283 223.176 84.7694 -1 1 3 868 2.868 323.15 0 0 0.05888 -0.0262215 -0.0262215 0 0 0 1439.55 1.49071e-07 1.49069e-07 0 0 0 325.604 17.4584 223.331 84.8146 -1 1 3 869 2.869 323.15 0 0 0.05904 -0.0263001 -0.0263001 0 0 0 1440.16 1.49157e-07 1.49155e-07 0 0 0 325.834 17.4886 223.486 84.8599 -1 1 3 870 2.87 323.15 0 0 0.0592 -0.0263787 -0.0263787 0 0 0 1440.78 1.49243e-07 1.49242e-07 0 0 0 326.065 17.5189 223.641 84.9052 -1 1 3 871 2.871 323.15 0 0 0.05936 -0.0264574 -0.0264574 0 0 0 1441.4 1.49329e-07 1.49327e-07 0 0 0 326.296 17.5492 223.796 84.9504 -1 1 3 872 2.872 323.15 0 0 0.05952 -0.026536 -0.026536 0 0 0 1442.01 1.49416e-07 1.49414e-07 0 0 0 326.526 17.5796 223.951 84.9957 -1 1 3 873 2.873 323.15 0 0 0.05968 -0.0266146 -0.0266146 0 0 0 1442.63 1.49502e-07 1.495e-07 0 0 0 326.757 17.6101 224.106 85.0409 -1 1 3 874 2.874 323.15 0 0 0.05984 -0.0266932 -0.0266932 0 0 0 1443.25 1.49588e-07 1.49587e-07 0 0 0 326.988 17.6407 224.261 85.0862 -1 1 3 875 2.875 323.15 0 0 0.06 -0.0267718 -0.0267718 0 0 0 1443.86 1.49675e-07 1.49673e-07 0 0 0 327.219 17.6713 224.416 85.1315 -1 1 3 876 2.876 323.15 0 0 0.06016 -0.0268505 -0.0268505 0 0 0 1444.48 1.49762e-07 1.4976e-07 0 0 0 327.45 17.702 224.571 85.1767 -1 1 3 877 2.877 323.15 0 0 0.06032 -0.0269291 -0.0269291 0 0 0 1445.1 1.49848e-07 1.49846e-07 0 0 0 327.681 17.7328 224.726 85.222 -1 1 3 878 2.878 323.15 0 0 0.06048 -0.0270077 -0.0270077 0 0 0 1445.71 1.49935e-07 1.49933e-07 0 0 0 327.912 17.7636 224.881 85.2672 -1 1 3 879 2.879 323.15 0 0 0.06064 -0.0270863 -0.0270863 0 0 0 1446.33 1.50021e-07 1.50019e-07 0 0 0 328.144 17.7945 225.037 85.3125 -1 1 3 880 2.88 323.15 0 0 0.0608 -0.0271649 -0.0271649 0 0 0 1446.95 1.50107e-07 1.50105e-07 0 0 0 328.375 17.8255 225.192 85.3578 -1 1 3 881 2.881 323.15 0 0 0.06096 -0.0272436 -0.0272436 0 0 0 1447.56 1.50194e-07 1.50191e-07 0 0 0 328.607 17.8566 225.347 85.403 -1 1 3 882 2.882 323.15 0 0 0.06112 -0.0273222 -0.0273222 0 0 0 1448.18 1.5028e-07 1.50278e-07 0 0 0 328.838 17.8877 225.502 85.4483 -1 1 3 883 2.883 323.15 0 0 0.06128 -0.0274008 -0.0274008 0 0 0 1448.8 1.50366e-07 1.50364e-07 0 0 0 329.07 17.9189 225.658 85.4936 -1 1 3 884 2.884 323.15 0 0 0.06144 -0.0274794 -0.0274794 0 0 0 1449.41 1.50452e-07 1.50451e-07 0 0 0 329.302 17.9502 225.813 85.5388 -1 1 3 885 2.885 323.15 0 0 0.0616 -0.0275581 -0.0275581 0 0 0 1450.03 1.50539e-07 1.50537e-07 0 0 0 329.534 17.9815 225.968 85.5841 -1 1 3 886 2.886 323.15 0 0 0.06176 -0.0276367 -0.0276367 0 0 0 1450.64 1.50625e-07 1.50623e-07 0 0 0 329.766 18.013 226.124 85.6293 -1 1 3 887 2.887 323.15 0 0 0.06192 -0.0277153 -0.0277153 0 0 0 1451.26 1.50711e-07 1.50709e-07 0 0 0 329.998 18.0445 226.279 85.6746 -1 1 3 888 2.888 323.15 0 0 0.06208 -0.0277939 -0.0277939 0 0 0 1451.87 1.50797e-07 1.50796e-07 0 0 0 330.23 18.076 226.434 85.7199 -1 1 3 889 2.889 323.15 0 0 0.06224 -0.0278726 -0.0278726 0 0 0 1452.49 1.50884e-07 1.50882e-07 0 0 0 330.463 18.1077 226.59 85.7651 -1 1 3 890 2.89 323.15 0 0 0.0624 -0.0279512 -0.0279512 0 0 0 1453.11 1.5097e-07 1.50968e-07 0 0 0 330.695 18.1394 226.745 85.8104 -1 1 3 891 2.891 323.15 0 0 0.06256 -0.0280298 -0.0280298 0 0 0 1453.72 1.51056e-07 1.51054e-07 0 0 0 330.928 18.1712 226.901 85.8557 -1 1 3 892 2.892 323.15 0 0 0.06272 -0.0281084 -0.0281084 0 0 0 1454.34 1.51143e-07 1.51141e-07 0 0 0 331.16 18.2031 227.056 85.9009 -1 1 3 893 2.893 323.15 0 0 0.06288 -0.028187 -0.028187 0 0 0 1454.95 1.51229e-07 1.51227e-07 0 0 0 331.393 18.235 227.212 85.9462 -1 1 3 894 2.894 323.15 0 0 0.06304 -0.0282657 -0.0282657 0 0 0 1455.57 1.51315e-07 1.51313e-07 0 0 0 331.626 18.267 227.367 85.9915 -1 1 3 895 2.895 323.15 0 0 0.0632 -0.0283443 -0.0283443 0 0 0 1456.18 1.51402e-07 1.514e-07 0 0 0 331.859 18.2991 227.523 86.0367 -1 1 3 896 2.896 323.15 0 0 0.06336 -0.0284229 -0.0284229 0 0 0 1456.8 1.51488e-07 1.51486e-07 0 0 0 332.092 18.3312 227.679 86.082 -1 1 3 897 2.897 323.15 0 0 0.06352 -0.0285015 -0.0285015 0 0 0 1457.41 1.51574e-07 1.51572e-07 0 0 0 332.325 18.3635 227.834 86.1273 -1 1 3 898 2.898 323.15 0 0 0.06368 -0.0285802 -0.0285802 0 0 0 1458.03 1.5166e-07 1.51658e-07 0 0 0 332.558 18.3958 227.99 86.1725 -1 1 3 899 2.899 323.15 0 0 0.06384 -0.0286588 -0.0286588 0 0 0 1458.65 1.51746e-07 1.51744e-07 0 0 0 332.792 18.4281 228.146 86.2178 -1 1 3 900 2.9 323.15 0 0 0.064 -0.0287374 -0.0287374 0 0 0 1459.26 1.51833e-07 1.5183e-07 0 0 0 333.025 18.4606 228.301 86.2631 -1 1 3 901 2.901 323.15 0 0 0.06416 -0.028816 -0.028816 0 0 0 1459.88 1.51919e-07 1.51917e-07 0 0 0 333.259 18.4931 228.457 86.3083 -1 1 3 902 2.902 323.15 0 0 0.06432 -0.0288947 -0.0288947 0 0 0 1460.49 1.52005e-07 1.52003e-07 0 0 0 333.492 18.5257 228.613 86.3536 -1 1 3 903 2.903 323.15 0 0 0.06448 -0.0289733 -0.0289733 0 0 0 1461.11 1.52092e-07 1.52089e-07 0 0 0 333.726 18.5584 228.769 86.3989 -1 1 3 904 2.904 323.15 0 0 0.06464 -0.0290519 -0.0290519 0 0 0 1461.72 1.52178e-07 1.52176e-07 0 0 0 333.96 18.5911 228.925 86.4441 -1 1 3 905 2.905 323.15 0 0 0.0648 -0.0291305 -0.0291305 0 0 0 1462.34 1.52265e-07 1.52262e-07 0 0 0 334.194 18.6239 229.08 86.4894 -1 1 3 906 2.906 323.15 0 0 0.06496 -0.0292092 -0.0292092 0 0 0 1462.95 1.52351e-07 1.52349e-07 0 0 0 334.428 18.6568 229.236 86.5347 -1 1 3 907 2.907 323.15 0 0 0.06512 -0.0292878 -0.0292878 0 0 0 1463.57 1.52437e-07 1.52435e-07 0 0 0 334.662 18.6897 229.392 86.5799 -1 1 3 908 2.908 323.15 0 0 0.06528 -0.0293664 -0.0293664 0 0 0 1464.18 1.52523e-07 1.52521e-07 0 0 0 334.896 18.7228 229.548 86.6252 -1 1 3 909 2.909 323.15 0 0 0.06544 -0.029445 -0.029445 0 0 0 1464.79 1.52609e-07 1.52607e-07 0 0 0 335.13 18.7559 229.704 86.6705 -1 1 3 910 2.91 323.15 0 0 0.0656 -0.0295237 -0.0295237 0 0 0 1465.41 1.52695e-07 1.52693e-07 0 0 0 335.365 18.789 229.86 86.7158 -1 1 3 911 2.911 323.15 0 0 0.06576 -0.0296023 -0.0296023 0 0 0 1466.02 1.52781e-07 1.5278e-07 0 0 0 335.599 18.8223 230.016 86.761 -1 1 3 912 2.912 323.15 0 0 0.06592 -0.0296809 -0.0296809 0 0 0 1466.64 1.52867e-07 1.52866e-07 0 0 0 335.834 18.8556 230.172 86.8063 -1 1 3 913 2.913 323.15 0 0 0.06608 -0.0297595 -0.0297595 0 0 0 1467.25 1.52954e-07 1.52952e-07 0 0 0 336.069 18.889 230.328 86.8516 -1 1 3 914 2.914 323.15 0 0 0.06624 -0.0298382 -0.0298382 0 0 0 1467.87 1.5304e-07 1.53038e-07 0 0 0 336.303 18.9225 230.484 86.8968 -1 1 3 915 2.915 323.15 0 0 0.0664 -0.0299168 -0.0299168 0 0 0 1468.48 1.53127e-07 1.53125e-07 0 0 0 336.538 18.956 230.64 86.9421 -1 1 3 916 2.916 323.15 0 0 0.06656 -0.0299954 -0.0299954 0 0 0 1469.1 1.53213e-07 1.53212e-07 0 0 0 336.773 18.9896 230.796 86.9874 -1 1 3 917 2.917 323.15 0 0 0.06672 -0.0300741 -0.0300741 0 0 0 1469.71 1.53299e-07 1.53298e-07 0 0 0 337.008 19.0233 230.953 87.0326 -1 1 3 918 2.918 323.15 0 0 0.06688 -0.0301527 -0.0301527 0 0 0 1470.32 1.53386e-07 1.53384e-07 0 0 0 337.244 19.057 231.109 87.0779 -1 1 3 919 2.919 323.15 0 0 0.06704 -0.0302313 -0.0302313 0 0 0 1470.94 1.53472e-07 1.5347e-07 0 0 0 337.479 19.0909 231.265 87.1232 -1 1 3 920 2.92 323.15 0 0 0.0672 -0.0303099 -0.0303099 0 0 0 1471.55 1.53558e-07 1.53557e-07 0 0 0 337.714 19.1248 231.421 87.1685 -1 1 3 921 2.921 323.15 0 0 0.06736 -0.0303886 -0.0303886 0 0 0 1472.17 1.53645e-07 1.53643e-07 0 0 0 337.95 19.1587 231.577 87.2137 -1 1 3 922 2.922 323.15 0 0 0.06752 -0.0304672 -0.0304672 0 0 0 1472.78 1.53731e-07 1.5373e-07 0 0 0 338.185 19.1928 231.734 87.259 -1 1 3 923 2.923 323.15 0 0 0.06768 -0.0305458 -0.0305458 0 0 0 1473.39 1.53818e-07 1.53816e-07 0 0 0 338.421 19.2269 231.89 87.3043 -1 1 3 924 2.924 323.15 0 0 0.06784 -0.0306244 -0.0306244 0 0 0 1474.01 1.53904e-07 1.53903e-07 0 0 0 338.657 19.2611 232.046 87.3496 -1 1 3 925 2.925 323.15 0 0 0.068 -0.0307031 -0.0307031 0 0 0 1474.62 1.5399e-07 1.53989e-07 0 0 0 338.893 19.2954 232.203 87.3948 -1 1 3 926 2.926 323.15 0 0 0.06816 -0.0307817 -0.0307817 0 0 0 1475.24 1.54077e-07 1.54075e-07 0 0 0 339.129 19.3297 232.359 87.4401 -1 1 3 927 2.927 323.15 0 0 0.06832 -0.0308603 -0.0308603 0 0 0 1475.85 1.54163e-07 1.54161e-07 0 0 0 339.365 19.3641 232.515 87.4854 -1 1 3 928 2.928 323.15 0 0 0.06848 -0.030939 -0.030939 0 0 0 1476.46 1.54249e-07 1.54248e-07 0 0 0 339.601 19.3986 232.672 87.5307 -1 1 3 929 2.929 323.15 0 0 0.06864 -0.0310176 -0.0310176 0 0 0 1477.08 1.54335e-07 1.54334e-07 0 0 0 339.837 19.4332 232.828 87.5759 -1 1 3 930 2.93 323.15 0 0 0.0688 -0.0310962 -0.0310962 0 0 0 1477.69 1.54421e-07 1.5442e-07 0 0 0 340.074 19.4678 232.985 87.6212 -1 1 3 931 2.931 323.15 0 0 0.06896 -0.0311748 -0.0311748 0 0 0 1478.3 1.54507e-07 1.54506e-07 0 0 0 340.31 19.5025 233.141 87.6665 -1 1 3 932 2.932 323.15 0 0 0.06912 -0.0312535 -0.0312535 0 0 0 1478.92 1.54594e-07 1.54593e-07 0 0 0 340.547 19.5373 233.298 87.7118 -1 1 3 933 2.933 323.15 0 0 0.06928 -0.0313321 -0.0313321 0 0 0 1479.53 1.54679e-07 1.54678e-07 0 0 0 340.784 19.5721 233.454 87.757 -1 1 3 934 2.934 323.15 0 0 0.06944 -0.0314107 -0.0314107 0 0 0 1480.14 1.54766e-07 1.54764e-07 0 0 0 341.02 19.607 233.611 87.8023 -1 1 3 935 2.935 323.15 0 0 0.0696 -0.0314894 -0.0314894 0 0 0 1480.76 1.54852e-07 1.54851e-07 0 0 0 341.257 19.642 233.768 87.8476 -1 1 3 936 2.936 323.15 0 0 0.06976 -0.031568 -0.031568 0 0 0 1481.37 1.54938e-07 1.54937e-07 0 0 0 341.494 19.6771 233.924 87.8929 -1 1 3 937 2.937 323.15 0 0 0.06992 -0.0316466 -0.0316466 0 0 0 1481.98 1.55025e-07 1.55023e-07 0 0 0 341.731 19.7122 234.081 87.9381 -1 1 3 938 2.938 323.15 0 0 0.07008 -0.0317252 -0.0317252 0 0 0 1482.6 1.5511e-07 1.55109e-07 0 0 0 341.968 19.7474 234.238 87.9834 -1 1 3 939 2.939 323.15 0 0 0.07024 -0.0318039 -0.0318039 0 0 0 1483.21 1.55197e-07 1.55195e-07 0 0 0 342.206 19.7827 234.394 88.0287 -1 1 3 940 2.94 323.15 0 0 0.0704 -0.0318825 -0.0318825 0 0 0 1483.82 1.55283e-07 1.55281e-07 0 0 0 342.443 19.8181 234.551 88.074 -1 1 3 941 2.941 323.15 0 0 0.07056 -0.0319611 -0.0319611 0 0 0 1484.43 1.55369e-07 1.55367e-07 0 0 0 342.68 19.8535 234.708 88.1192 -1 1 3 942 2.942 323.15 0 0 0.07072 -0.0320398 -0.0320398 0 0 0 1485.05 1.55455e-07 1.55454e-07 0 0 0 342.918 19.889 234.864 88.1645 -1 1 3 943 2.943 323.15 0 0 0.07088 -0.0321184 -0.0321184 0 0 0 1485.66 1.55542e-07 1.5554e-07 0 0 0 343.156 19.9246 235.021 88.2098 -1 1 3 944 2.944 323.15 0 0 0.07104 -0.032197 -0.032197 0 0 0 1486.27 1.55628e-07 1.55626e-07 0 0 0 343.393 19.9602 235.178 88.2551 -1 1 3 945 2.945 323.15 0 0 0.0712 -0.0322757 -0.0322757 0 0 0 1486.89 1.55715e-07 1.55713e-07 0 0 0 343.631 19.996 235.335 88.3004 -1 1 3 946 2.946 323.15 0 0 0.07136 -0.0323543 -0.0323543 0 0 0 1487.5 1.558e-07 1.55799e-07 0 0 0 343.869 20.0318 235.492 88.3456 -1 1 3 947 2.947 323.15 0 0 0.07152 -0.0324329 -0.0324329 0 0 0 1488.11 1.55886e-07 1.55884e-07 0 0 0 344.107 20.0676 235.649 88.3909 -1 1 3 948 2.948 323.15 0 0 0.07168 -0.0325115 -0.0325115 0 0 0 1488.72 1.55973e-07 1.55971e-07 0 0 0 344.345 20.1036 235.806 88.4362 -1 1 3 949 2.949 323.15 0 0 0.07184 -0.0325902 -0.0325902 0 0 0 1489.34 1.56059e-07 1.56057e-07 0 0 0 344.584 20.1396 235.963 88.4815 -1 1 3 950 2.95 323.15 0 0 0.072 -0.0326688 -0.0326688 0 0 0 1489.95 1.56145e-07 1.56143e-07 0 0 0 344.822 20.1757 236.12 88.5268 -1 1 3 951 2.951 323.15 0 0 0.07216 -0.0327474 -0.0327474 0 0 0 1490.56 1.56231e-07 1.56229e-07 0 0 0 345.06 20.2118 236.277 88.572 -1 1 3 952 2.952 323.15 0 0 0.07232 -0.0328261 -0.0328261 0 0 0 1491.17 1.56317e-07 1.56315e-07 0 0 0 345.299 20.2481 236.434 88.6173 -1 1 3 953 2.953 323.15 0 0 0.07248 -0.0329047 -0.0329047 0 0 0 1491.79 1.56403e-07 1.56401e-07 0 0 0 345.538 20.2844 236.591 88.6626 -1 1 3 954 2.954 323.15 0 0 0.07264 -0.0329833 -0.0329833 0 0 0 1492.4 1.5649e-07 1.56488e-07 0 0 0 345.776 20.3207 236.748 88.7079 -1 1 3 955 2.955 323.15 0 0 0.0728 -0.033062 -0.033062 0 0 0 1493.01 1.56575e-07 1.56573e-07 0 0 0 346.015 20.3572 236.905 88.7532 -1 1 3 956 2.956 323.15 0 0 0.07296 -0.0331406 -0.0331406 0 0 0 1493.62 1.56662e-07 1.5666e-07 0 0 0 346.254 20.3937 237.062 88.7984 -1 1 3 957 2.957 323.15 0 0 0.07312 -0.0332192 -0.0332192 0 0 0 1494.23 1.56748e-07 1.56747e-07 0 0 0 346.493 20.4303 237.219 88.8437 -1 1 3 958 2.958 323.15 0 0 0.07328 -0.0332979 -0.0332979 0 0 0 1494.85 1.56834e-07 1.56832e-07 0 0 0 346.732 20.467 237.376 88.889 -1 1 3 959 2.959 323.15 0 0 0.07344 -0.0333765 -0.0333765 0 0 0 1495.46 1.5692e-07 1.56918e-07 0 0 0 346.972 20.5037 237.534 88.9343 -1 1 3 960 2.96 323.15 0 0 0.0736 -0.0334551 -0.0334551 0 0 0 1496.07 1.57006e-07 1.57005e-07 0 0 0 347.211 20.5405 237.691 88.9796 -1 1 3 961 2.961 323.15 0 0 0.07376 -0.0335338 -0.0335338 0 0 0 1496.68 1.57092e-07 1.5709e-07 0 0 0 347.45 20.5774 237.848 89.0248 -1 1 3 962 2.962 323.15 0 0 0.07392 -0.0336124 -0.0336124 0 0 0 1497.29 1.57179e-07 1.57177e-07 0 0 0 347.69 20.6144 238.005 89.0701 -1 1 3 963 2.963 323.15 0 0 0.07408 -0.033691 -0.033691 0 0 0 1497.9 1.57266e-07 1.57264e-07 0 0 0 347.929 20.6514 238.163 89.1154 -1 1 3 964 2.964 323.15 0 0 0.07424 -0.0337696 -0.0337696 0 0 0 1498.52 1.57352e-07 1.57351e-07 0 0 0 348.169 20.6885 238.32 89.1607 -1 1 3 965 2.965 323.15 0 0 0.0744 -0.0338483 -0.0338483 0 0 0 1499.13 1.57438e-07 1.57436e-07 0 0 0 348.409 20.7257 238.477 89.206 -1 1 3 966 2.966 323.15 0 0 0.07456 -0.0339269 -0.0339269 0 0 0 1499.74 1.57524e-07 1.57522e-07 0 0 0 348.649 20.7629 238.635 89.2513 -1 1 3 967 2.967 323.15 0 0 0.07472 -0.0340055 -0.0340055 0 0 0 1500.35 1.5761e-07 1.57608e-07 0 0 0 348.889 20.8003 238.792 89.2965 -1 1 3 968 2.968 323.15 0 0 0.07488 -0.0340842 -0.0340842 0 0 0 1500.96 1.57696e-07 1.57695e-07 0 0 0 349.129 20.8377 238.949 89.3418 -1 1 3 969 2.969 323.15 0 0 0.07504 -0.0341628 -0.0341628 0 0 0 1501.57 1.57782e-07 1.57781e-07 0 0 0 349.369 20.8751 239.107 89.3871 -1 1 3 970 2.97 323.15 0 0 0.0752 -0.0342414 -0.0342414 0 0 0 1502.19 1.57869e-07 1.57867e-07 0 0 0 349.609 20.9127 239.264 89.4324 -1 1 3 971 2.971 323.15 0 0 0.07536 -0.0343201 -0.0343201 0 0 0 1502.8 1.57955e-07 1.57953e-07 0 0 0 349.85 20.9503 239.422 89.4777 -1 1 3 972 2.972 323.15 0 0 0.07552 -0.0343987 -0.0343987 0 0 0 1503.41 1.58041e-07 1.5804e-07 0 0 0 350.09 20.988 239.579 89.523 -1 1 3 973 2.973 323.15 0 0 0.07568 -0.0344773 -0.0344773 0 0 0 1504.02 1.58128e-07 1.58127e-07 0 0 0 350.331 21.0257 239.737 89.5683 -1 1 3 974 2.974 323.15 0 0 0.07584 -0.034556 -0.034556 0 0 0 1504.63 1.58214e-07 1.58213e-07 0 0 0 350.572 21.0636 239.895 89.6135 -1 1 3 975 2.975 323.15 0 0 0.076 -0.0346346 -0.0346346 0 0 0 1505.24 1.583e-07 1.58299e-07 0 0 0 350.812 21.1015 240.052 89.6588 -1 1 3 976 2.976 323.15 0 0 0.07616 -0.0347132 -0.0347132 0 0 0 1505.85 1.58387e-07 1.58385e-07 0 0 0 351.053 21.1395 240.21 89.7041 -1 1 3 977 2.977 323.15 0 0 0.07632 -0.0347919 -0.0347919 0 0 0 1506.46 1.58472e-07 1.58471e-07 0 0 0 351.294 21.1775 240.367 89.7494 -1 1 3 978 2.978 323.15 0 0 0.07648 -0.0348705 -0.0348705 0 0 0 1507.07 1.58559e-07 1.58558e-07 0 0 0 351.535 21.2156 240.525 89.7947 -1 1 3 979 2.979 323.15 0 0 0.07664 -0.0349492 -0.0349492 0 0 0 1507.69 1.58645e-07 1.58644e-07 0 0 0 351.777 21.2538 240.683 89.84 -1 1 3 980 2.98 323.15 0 0 0.0768 -0.0350278 -0.0350278 0 0 0 1508.3 1.58731e-07 1.5873e-07 0 0 0 352.018 21.2921 240.84 89.8853 -1 1 3 981 2.981 323.15 0 0 0.07696 -0.0351064 -0.0351064 0 0 0 1508.91 1.58817e-07 1.58817e-07 0 0 0 352.259 21.3304 240.998 89.9305 -1 1 3 982 2.982 323.15 0 0 0.07712 -0.0351851 -0.0351851 0 0 0 1509.52 1.58904e-07 1.58903e-07 0 0 0 352.501 21.3689 241.156 89.9758 -1 1 3 983 2.983 323.15 0 0 0.07728 -0.0352637 -0.0352637 0 0 0 1510.13 1.5899e-07 1.58989e-07 0 0 0 352.742 21.4074 241.314 90.0211 -1 1 3 984 2.984 323.15 0 0 0.07744 -0.0353423 -0.0353423 0 0 0 1510.74 1.59076e-07 1.59076e-07 0 0 0 352.984 21.4459 241.472 90.0664 -1 1 3 985 2.985 323.15 0 0 0.0776 -0.035421 -0.035421 0 0 0 1511.35 1.59162e-07 1.59162e-07 0 0 0 353.226 21.4845 241.629 90.1117 -1 1 3 986 2.986 323.15 0 0 0.07776 -0.0354996 -0.0354996 0 0 0 1511.96 1.59249e-07 1.59248e-07 0 0 0 353.468 21.5233 241.787 90.157 -1 1 3 987 2.987 323.15 0 0 0.07792 -0.0355782 -0.0355782 0 0 0 1512.57 1.59335e-07 1.59334e-07 0 0 0 353.709 21.562 241.945 90.2023 -1 1 3 988 2.988 323.15 0 0 0.07808 -0.0356569 -0.0356569 0 0 0 1513.18 1.59421e-07 1.5942e-07 0 0 0 353.952 21.6009 242.103 90.2476 -1 1 3 989 2.989 323.15 0 0 0.07824 -0.0357355 -0.0357355 0 0 0 1513.79 1.59507e-07 1.59506e-07 0 0 0 354.194 21.6398 242.261 90.2928 -1 1 3 990 2.99 323.15 0 0 0.0784 -0.0358141 -0.0358141 0 0 0 1514.4 1.59593e-07 1.59592e-07 0 0 0 354.436 21.6788 242.419 90.3381 -1 1 3 991 2.991 323.15 0 0 0.07856 -0.0358928 -0.0358928 0 0 0 1515.01 1.59679e-07 1.59678e-07 0 0 0 354.678 21.7179 242.577 90.3834 -1 1 3 992 2.992 323.15 0 0 0.07872 -0.0359714 -0.0359714 0 0 0 1515.62 1.59764e-07 1.59764e-07 0 0 0 354.921 21.757 242.735 90.4287 -1 1 3 993 2.993 323.15 0 0 0.07888 -0.03605 -0.03605 0 0 0 1516.23 1.59851e-07 1.59851e-07 0 0 0 355.163 21.7963 242.893 90.474 -1 1 3 994 2.994 323.15 0 0 0.07904 -0.0361287 -0.0361287 0 0 0 1516.84 1.59937e-07 1.59937e-07 0 0 0 355.406 21.8355 243.051 90.5193 -1 1 3 995 2.995 323.15 0 0 0.0792 -0.0362073 -0.0362073 0 0 0 1517.45 1.60023e-07 1.60023e-07 0 0 0 355.649 21.8749 243.209 90.5646 -1 1 3 996 2.996 323.15 0 0 0.07936 -0.036286 -0.036286 0 0 0 1518.06 1.6011e-07 1.6011e-07 0 0 0 355.892 21.9143 243.367 90.6099 -1 1 3 997 2.997 323.15 0 0 0.07952 -0.0363646 -0.0363646 0 0 0 1518.67 1.60196e-07 1.60196e-07 0 0 0 356.134 21.9539 243.525 90.6552 -1 1 3 998 2.998 323.15 0 0 0.07968 -0.0364432 -0.0364432 0 0 0 1519.28 1.60283e-07 1.60282e-07 0 0 0 356.378 21.9934 243.684 90.7005 -1 1 3 999 2.999 323.15 0 0 0.07984 -0.0365219 -0.0365219 0 0 0 1519.89 1.60369e-07 1.60368e-07 0 0 0 356.621 22.0331 243.842 90.7457 -1 1 3 1000 3 323.15 0 0 0.08 -0.0366005 -0.0366005 0 0 0 1520.5 1.60455e-07 1.60455e-07 0 0 0 356.864 22.0728 244 90.791 +1 1 1 56 0.056 323.15 0 0 0.00448 -0.00156353 -0.00156353 0 0 0 302.566 1.988e-12 1.99569e-12 0 0 0 0.677757 0.677738 1.27668e-11 1.95618e-05 +1 1 1 57 0.057 323.15 0 0 0.00456 -0.00159147 -0.00159147 0 0 0 307.959 2.04329e-12 2.05006e-12 0 0 0 0.702178 0.702113 1.10624e-10 6.56292e-05 +1 1 1 58 0.058 323.15 0 0 0.00464 -0.00161942 -0.00161942 0 0 0 313.35 2.36488e-12 2.35343e-12 0 0 0 0.72703 0.72691 3.21376e-10 0.000120976 +1 1 1 59 0.059 323.15 0 0 0.00472 -0.00164737 -0.00164737 0 0 0 318.737 5.58724e-12 5.59329e-12 0 0 0 0.752314 0.75212 7.50875e-10 0.000193508 +1 1 1 60 0.06 323.15 0 0 0.0048 -0.00167536 -0.00167536 0 0 0 324.112 2.23794e-10 2.23805e-10 0 0 0 0.778028 0.777698 2.08347e-09 0.000329775 +1 1 1 61 0.061 323.15 0 0 0.00488 -0.00170343 -0.00170343 0 0 0 329.448 8.08868e-10 8.08862e-10 0 0 0 0.80417 0.803516 8.1532e-09 0.000653913 +1 1 1 62 0.062 323.15 0 0 0.00496 -0.00173157 -0.00173157 0 0 0 334.749 1.93482e-09 1.93482e-09 0 0 0 0.830738 0.829586 2.40954e-08 0.00115234 +1 1 1 63 0.063 323.15 0 0 0.00504 -0.00175981 -0.00175981 0 0 0 340.009 3.8408e-09 3.84079e-09 0 0 0 0.857729 0.855861 6.01221e-08 0.00186792 +1 1 1 64 0.064 323.15 0 0 0.00512 -0.00178817 -0.00178817 0 0 0 345.22 6.76512e-09 6.76513e-09 0 0 0 0.885138 0.882294 1.32868e-07 0.00284401 +1 1 1 65 0.065 323.15 0 0 0.0052 -0.00181664 -0.00181664 0 0 0 350.374 1.0913e-08 1.0913e-08 0 0 0 0.912961 0.908838 2.67421e-07 0.00412352 +1 1 1 66 0.066 323.15 0 0 0.00528 -0.00184526 -0.00184526 0 0 0 355.466 1.64283e-08 1.64283e-08 0 0 0 0.941195 0.935447 4.99357e-07 0.005748 +1 1 1 67 0.067 323.15 0 0 0.00536 -0.00187402 -0.00187402 0 0 0 360.49 2.33732e-08 2.33732e-08 0 0 0 0.969833 0.962076 8.76644e-07 0.00775687 +1 1 1 68 0.068 323.15 0 0 0.00544 -0.00190295 -0.00190295 0 0 0 365.441 3.17214e-08 3.17214e-08 0 0 0 0.998871 0.988682 1.46128e-06 0.0101868 +1 1 1 69 0.069 323.15 0 0 0.00552 -0.00193206 -0.00193206 0 0 0 370.315 4.13622e-08 4.13621e-08 0 0 0 1.0283 1.01523 2.33055e-06 0.0130711 +1 1 1 70 0.07 323.15 0 0 0.0056 -0.00196134 -0.00196134 0 0 0 375.107 5.21149e-08 5.21148e-08 0 0 0 1.05812 1.04167 3.57791e-06 0.0164397 +1 1 1 71 0.071 323.15 0 0 0.00568 -0.00199082 -0.00199082 0 0 0 379.816 6.37497e-08 6.37497e-08 0 0 0 1.08831 1.06799 5.31329e-06 0.0203185 +1 1 1 72 0.072 323.15 0 0 0.00576 -0.00202048 -0.00202048 0 0 0 384.439 7.60099e-08 7.60098e-08 0 0 0 1.11888 1.09415 7.66313e-06 0.0247296 +1 1 1 73 0.073 323.15 0 0 0.00584 -0.00205034 -0.00205034 0 0 0 388.975 8.86337e-08 8.86335e-08 0 0 0 1.14982 1.12012 1.07698e-05 0.0296915 +1 1 1 74 0.074 323.15 0 0 0.00592 -0.00208039 -0.00208039 0 0 0 393.423 1.01372e-07 1.01372e-07 0 0 0 1.18112 1.14588 1.47909e-05 0.0352188 +1 1 1 75 0.075 323.15 0 0 0.006 -0.00211065 -0.00211065 0 0 0 397.783 1.14001e-07 1.14001e-07 0 0 0 1.21277 1.17142 1.98979e-05 0.0413227 +1 1 1 76 0.076 323.15 0 0 0.00608 -0.00214109 -0.00214109 0 0 0 402.055 1.26332e-07 1.26331e-07 0 0 0 1.24476 1.19672 2.6275e-05 0.0480113 +1 1 1 77 0.077 323.15 0 0 0.00616 -0.00217174 -0.00217174 0 0 0 406.241 1.38211e-07 1.38211e-07 0 0 0 1.27709 1.22177 3.41179e-05 0.0552896 +1 1 1 78 0.078 323.15 0 0 0.00624 -0.00220257 -0.00220257 0 0 0 410.34 1.49526e-07 1.49526e-07 0 0 0 1.30975 1.24655 4.36315e-05 0.0631603 +1 1 1 79 0.079 323.15 0 0 0.00632 -0.00223359 -0.00223359 0 0 0 414.355 1.60196e-07 1.60195e-07 0 0 0 1.34274 1.27106 5.50293e-05 0.0716235 +1 1 1 80 0.08 323.15 0 0 0.0064 -0.0022648 -0.0022648 0 0 0 418.287 1.70171e-07 1.70171e-07 0 0 0 1.37605 1.2953 6.85311e-05 0.0806774 +1 1 1 81 0.081 323.15 0 0 0.00648 -0.00229619 -0.00229619 0 0 0 422.138 1.79431e-07 1.79431e-07 0 0 0 1.40966 1.31926 8.43619e-05 0.0903186 +1 1 1 82 0.082 323.15 0 0 0.00656 -0.00232776 -0.00232776 0 0 0 425.91 1.87972e-07 1.87972e-07 0 0 0 1.44359 1.34294 0.000102751 0.100542 +1 1 1 83 0.083 323.15 0 0 0.00664 -0.0023595 -0.0023595 0 0 0 429.604 1.95809e-07 1.95808e-07 0 0 0 1.47781 1.36634 0.000123929 0.111341 +1 1 1 84 0.084 323.15 0 0 0.00672 -0.00239141 -0.00239141 0 0 0 433.224 2.02968e-07 2.02968e-07 0 0 0 1.51232 1.38946 0.000148128 0.122709 +1 1 1 85 0.085 323.15 0 0 0.0068 -0.00242348 -0.00242348 0 0 0 436.771 2.09484e-07 2.09484e-07 0 0 0 1.54712 1.41231 0.000175583 0.134638 +1 1 1 86 0.086 323.15 0 0 0.00688 -0.00245571 -0.00245571 0 0 0 440.247 2.15397e-07 2.15397e-07 0 0 0 1.5822 1.43488 0.000206526 0.147118 +1 1 1 87 0.087 323.15 0 0 0.00696 -0.00248809 -0.00248809 0 0 0 443.654 2.20749e-07 2.20749e-07 0 0 0 1.61756 1.45717 0.000241187 0.160142 +1 1 1 88 0.088 323.15 0 0 0.00704 -0.00252062 -0.00252062 0 0 0 446.996 2.25585e-07 2.25585e-07 0 0 0 1.65318 1.4792 0.000279796 0.173698 +1 1 1 89 0.089 323.15 0 0 0.00712 -0.00255329 -0.00255329 0 0 0 450.273 2.29946e-07 2.29946e-07 0 0 0 1.68907 1.50097 0.000322579 0.187777 +1 1 1 90 0.09 323.15 0 0 0.0072 -0.0025861 -0.0025861 0 0 0 453.488 2.33876e-07 2.33876e-07 0 0 0 1.72522 1.52248 0.000369761 0.20237 +1 1 1 91 0.091 323.15 0 0 0.00728 -0.00261905 -0.00261905 0 0 0 456.643 2.37413e-07 2.37413e-07 0 0 0 1.76163 1.54374 0.00042156 0.217466 +1 1 1 92 0.092 323.15 0 0 0.00736 -0.00265212 -0.00265212 0 0 0 459.74 2.40596e-07 2.40596e-07 0 0 0 1.79828 1.56475 0.000478195 0.233054 +1 1 1 93 0.093 323.15 0 0 0.00744 -0.00268533 -0.00268533 0 0 0 462.78 2.43459e-07 2.43459e-07 0 0 0 1.83519 1.58552 0.000539875 0.249125 +1 1 1 94 0.094 323.15 0 0 0.00752 -0.00271865 -0.00271865 0 0 0 465.767 2.46034e-07 2.46034e-07 0 0 0 1.87233 1.60605 0.000606811 0.265669 +1 1 1 95 0.095 323.15 0 0 0.0076 -0.00275209 -0.00275209 0 0 0 468.701 2.48349e-07 2.48349e-07 0 0 0 1.90971 1.62635 0.000679205 0.282675 +1 1 1 96 0.096 323.15 0 0 0.00768 -0.00278564 -0.00278564 0 0 0 471.585 2.50433e-07 2.50433e-07 0 0 0 1.94732 1.64643 0.000757257 0.300134 +1 1 1 97 0.097 323.15 0 0 0.00776 -0.0028193 -0.0028193 0 0 0 474.42 2.52308e-07 2.52308e-07 0 0 0 1.98516 1.66628 0.00084116 0.318036 +1 1 1 98 0.098 323.15 0 0 0.00784 -0.00285307 -0.00285307 0 0 0 477.208 2.53997e-07 2.53997e-07 0 0 0 2.02322 1.68592 0.000931107 0.336372 +1 1 1 99 0.099 323.15 0 0 0.00792 -0.00288694 -0.00288694 0 0 0 479.95 2.55518e-07 2.55518e-07 0 0 0 2.06151 1.70535 0.00102728 0.355132 +1 1 1 100 0.1 323.15 0 0 0.008 -0.00292091 -0.00292091 0 0 0 482.648 2.5689e-07 2.5689e-07 0 0 0 2.10001 1.72457 0.00112986 0.374308 +1 1 1 101 0.101 323.15 0 0 0.00808 -0.00295497 -0.00295497 0 0 0 485.303 2.58128e-07 2.58129e-07 0 0 0 2.13873 1.7436 0.00123903 0.39389 +1 1 1 102 0.102 323.15 0 0 0.00816 -0.00298913 -0.00298913 0 0 0 487.917 2.59247e-07 2.59247e-07 0 0 0 2.17766 1.76243 0.00135496 0.413871 +1 1 1 103 0.103 323.15 0 0 0.00824 -0.00302337 -0.00302337 0 0 0 490.49 2.60257e-07 2.60257e-07 0 0 0 2.2168 1.78108 0.00147781 0.434241 +1 1 1 104 0.104 323.15 0 0 0.00832 -0.0030577 -0.0030577 0 0 0 493.026 2.61172e-07 2.61172e-07 0 0 0 2.25614 1.79954 0.00160775 0.454992 +1 1 1 105 0.105 323.15 0 0 0.0084 -0.00309212 -0.00309212 0 0 0 495.523 2.62e-07 2.62e-07 0 0 0 2.29568 1.81782 0.00174493 0.476117 +1 1 1 106 0.106 323.15 0 0 0.00848 -0.00312662 -0.00312662 0 0 0 497.985 2.62751e-07 2.62751e-07 0 0 0 2.33542 1.83592 0.00188952 0.497608 +1 1 1 107 0.107 323.15 0 0 0.00856 -0.00316119 -0.00316119 0 0 0 500.411 2.63432e-07 2.63432e-07 0 0 0 2.37535 1.85386 0.00204166 0.519457 +1 1 1 108 0.108 323.15 0 0 0.00864 -0.00319584 -0.00319584 0 0 0 502.804 2.64051e-07 2.64051e-07 0 0 0 2.41548 1.87162 0.0022015 0.541657 +1 1 1 109 0.109 323.15 0 0 0.00872 -0.00323057 -0.00323057 0 0 0 505.163 2.64613e-07 2.64613e-07 0 0 0 2.4558 1.88923 0.00236919 0.564201 +1 1 1 110 0.11 323.15 0 0 0.0088 -0.00326536 -0.00326536 0 0 0 507.491 2.65125e-07 2.65125e-07 0 0 0 2.49631 1.90668 0.00254485 0.587083 +1 1 1 111 0.111 323.15 0 0 0.00888 -0.00330023 -0.00330023 0 0 0 509.787 2.65592e-07 2.65592e-07 0 0 0 2.537 1.92398 0.00272864 0.610295 +1 1 1 112 0.112 323.15 0 0 0.00896 -0.00333516 -0.00333516 0 0 0 512.054 2.66018e-07 2.66018e-07 0 0 0 2.57787 1.94112 0.00292067 0.633831 +1 1 1 113 0.113 323.15 0 0 0.00904 -0.00337016 -0.00337016 0 0 0 514.291 2.66406e-07 2.66406e-07 0 0 0 2.61893 1.95812 0.00312109 0.657686 +1 1 1 114 0.114 323.15 0 0 0.00912 -0.00340522 -0.00340522 0 0 0 516.5 2.66762e-07 2.66762e-07 0 0 0 2.66016 1.97498 0.00333 0.681852 +1 1 1 115 0.115 323.15 0 0 0.0092 -0.00344034 -0.00344034 0 0 0 518.681 2.67087e-07 2.67087e-07 0 0 0 2.70157 1.99169 0.00354755 0.706325 +1 1 1 116 0.116 323.15 0 0 0.00928 -0.00347553 -0.00347553 0 0 0 520.836 2.67384e-07 2.67384e-07 0 0 0 2.74315 2.00827 0.00377384 0.731098 +1 1 1 117 0.117 323.15 0 0 0.00936 -0.00351077 -0.00351077 0 0 0 522.964 2.67657e-07 2.67657e-07 0 0 0 2.7849 2.02472 0.00400899 0.756166 +1 1 1 118 0.118 323.15 0 0 0.00944 -0.00354607 -0.00354607 0 0 0 525.068 2.67908e-07 2.67908e-07 0 0 0 2.82682 2.04104 0.00425311 0.781523 +1 1 1 119 0.119 323.15 0 0 0.00952 -0.00358142 -0.00358142 0 0 0 527.146 2.68138e-07 2.68138e-07 0 0 0 2.86891 2.05724 0.00450632 0.807165 +1 1 1 120 0.12 323.15 0 0 0.0096 -0.00361682 -0.00361682 0 0 0 529.201 2.6835e-07 2.68349e-07 0 0 0 2.91116 2.07331 0.00476873 0.833086 +1 1 1 121 0.121 323.15 0 0 0.00968 -0.00365228 -0.00365228 0 0 0 531.233 2.68544e-07 2.68544e-07 0 0 0 2.95358 2.08926 0.00504043 0.859282 +1 1 1 122 0.122 323.15 0 0 0.00976 -0.00368779 -0.00368779 0 0 0 533.242 2.68724e-07 2.68724e-07 0 0 0 2.99616 2.10509 0.00532153 0.885747 +1 1 1 123 0.123 323.15 0 0 0.00984 -0.00372335 -0.00372335 0 0 0 535.229 2.68889e-07 2.68889e-07 0 0 0 3.0389 2.12081 0.00561213 0.912478 +1 1 1 124 0.124 323.15 0 0 0.00992 -0.00375895 -0.00375895 0 0 0 537.195 2.69042e-07 2.69042e-07 0 0 0 3.08179 2.13641 0.00591233 0.939469 +1 1 1 125 0.125 323.15 0 0 0.01 -0.0037946 -0.0037946 0 0 0 539.139 2.69183e-07 2.69183e-07 0 0 0 3.12485 2.15191 0.00622221 0.966717 +1 1 1 126 0.126 323.15 0 0 0.01008 -0.0038303 -0.0038303 0 0 0 541.063 2.69314e-07 2.69314e-07 0 0 0 3.16806 2.1673 0.00654189 0.994217 +1 1 1 127 0.127 323.15 0 0 0.01016 -0.00386604 -0.00386604 0 0 0 542.968 2.69435e-07 2.69435e-07 0 0 0 3.21142 2.18258 0.00687144 1.02197 +1 1 1 128 0.128 323.15 0 0 0.01024 -0.00390183 -0.00390183 0 0 0 544.853 2.69547e-07 2.69547e-07 0 0 0 3.25493 2.19776 0.00721095 1.04996 +1 1 1 129 0.129 323.15 0 0 0.01032 -0.00393766 -0.00393766 0 0 0 546.719 2.69651e-07 2.69651e-07 0 0 0 3.29859 2.21284 0.00756051 1.07819 +1 1 1 130 0.13 323.15 0 0 0.0104 -0.00397353 -0.00397353 0 0 0 548.567 2.69747e-07 2.69747e-07 0 0 0 3.3424 2.22782 0.0079202 1.10666 +1 1 1 131 0.131 323.15 0 0 0.01048 -0.00400943 -0.00400943 0 0 0 550.397 2.69837e-07 2.69837e-07 0 0 0 3.38636 2.24271 0.00829012 1.13536 +1 1 1 132 0.132 323.15 0 0 0.01056 -0.00404538 -0.00404538 0 0 0 552.209 2.6992e-07 2.6992e-07 0 0 0 3.43047 2.2575 0.00867033 1.16429 +1 1 1 133 0.133 323.15 0 0 0.01064 -0.00408137 -0.00408137 0 0 0 554.004 2.69998e-07 2.69997e-07 0 0 0 3.47472 2.27221 0.00906091 1.19345 +1 1 1 134 0.134 323.15 0 0 0.01072 -0.00411739 -0.00411739 0 0 0 555.782 2.7007e-07 2.7007e-07 0 0 0 3.51911 2.28682 0.00946195 1.22283 +1 1 1 135 0.135 323.15 0 0 0.0108 -0.00415345 -0.00415345 0 0 0 557.544 2.70137e-07 2.70137e-07 0 0 0 3.56364 2.30134 0.00987352 1.25243 +1 1 1 136 0.136 323.15 0 0 0.01088 -0.00418955 -0.00418955 0 0 0 559.29 2.702e-07 2.702e-07 0 0 0 3.60831 2.31578 0.0102957 1.28224 +1 1 1 137 0.137 323.15 0 0 0.01096 -0.00422568 -0.00422568 0 0 0 561.021 2.70258e-07 2.70258e-07 0 0 0 3.65313 2.33013 0.0107285 1.31227 +1 1 1 138 0.138 323.15 0 0 0.01104 -0.00426185 -0.00426185 0 0 0 562.736 2.70313e-07 2.70313e-07 0 0 0 3.69808 2.3444 0.0111721 1.34251 +1 1 1 139 0.139 323.15 0 0 0.01112 -0.00429805 -0.00429805 0 0 0 564.436 2.70364e-07 2.70364e-07 0 0 0 3.74316 2.35858 0.0116265 1.37295 +1 1 1 140 0.14 323.15 0 0 0.0112 -0.00433428 -0.00433428 0 0 0 566.122 2.70412e-07 2.70412e-07 0 0 0 3.78838 2.37269 0.0120918 1.4036 +1 1 1 141 0.141 323.15 0 0 0.01128 -0.00437054 -0.00437054 0 0 0 567.793 2.70457e-07 2.70456e-07 0 0 0 3.83374 2.38672 0.012568 1.43445 +1 1 1 142 0.142 323.15 0 0 0.01136 -0.00440684 -0.00440684 0 0 0 569.45 2.70498e-07 2.70498e-07 0 0 0 3.87923 2.40067 0.0130553 1.4655 +1 1 1 143 0.143 323.15 0 0 0.01144 -0.00444316 -0.00444316 0 0 0 571.094 2.70538e-07 2.70538e-07 0 0 0 3.92485 2.41455 0.0135536 1.49675 +1 1 1 144 0.144 323.15 0 0 0.01152 -0.00447952 -0.00447952 0 0 0 572.724 2.70574e-07 2.70574e-07 0 0 0 3.97061 2.42836 0.0140631 1.52818 +1 1 1 145 0.145 323.15 0 0 0.0116 -0.0045159 -0.0045159 0 0 0 574.341 2.70609e-07 2.70609e-07 0 0 0 4.01649 2.44209 0.0145837 1.55981 +1 1 1 146 0.146 323.15 0 0 0.01168 -0.00455231 -0.00455231 0 0 0 575.945 2.70641e-07 2.70641e-07 0 0 0 4.0625 2.45575 0.0151156 1.59163 +1 1 1 147 0.147 323.15 0 0 0.01176 -0.00458876 -0.00458876 0 0 0 577.537 2.70672e-07 2.70672e-07 0 0 0 4.10864 2.46934 0.0156589 1.62364 +1 1 1 148 0.148 323.15 0 0 0.01184 -0.00462522 -0.00462522 0 0 0 579.116 2.70701e-07 2.70701e-07 0 0 0 4.15491 2.48287 0.0162135 1.65582 +1 1 1 149 0.149 323.15 0 0 0.01192 -0.00466172 -0.00466172 0 0 0 580.684 2.70728e-07 2.70728e-07 0 0 0 4.2013 2.49632 0.0167795 1.68819 +1 1 1 150 0.15 323.15 0 0 0.012 -0.00469824 -0.00469824 0 0 0 582.239 2.70753e-07 2.70753e-07 0 0 0 4.24781 2.50971 0.0173571 1.72074 +1 1 1 151 0.151 323.15 0 0 0.01208 -0.00473479 -0.00473479 0 0 0 583.783 2.70777e-07 2.70777e-07 0 0 0 4.29445 2.52304 0.0179461 1.75347 +1 1 1 152 0.152 323.15 0 0 0.01216 -0.00477137 -0.00477137 0 0 0 585.315 2.708e-07 2.708e-07 0 0 0 4.34122 2.5363 0.0185468 1.78637 +1 1 1 153 0.153 323.15 0 0 0.01224 -0.00480796 -0.00480796 0 0 0 586.836 2.70821e-07 2.70821e-07 0 0 0 4.3881 2.5495 0.0191591 1.81944 +1 1 1 154 0.154 323.15 0 0 0.01232 -0.00484459 -0.00484459 0 0 0 588.346 2.70841e-07 2.70841e-07 0 0 0 4.43511 2.56264 0.0197831 1.85269 +1 1 1 155 0.155 323.15 0 0 0.0124 -0.00488124 -0.00488124 0 0 0 589.846 2.7086e-07 2.7086e-07 0 0 0 4.48224 2.57572 0.0204188 1.8861 +1 1 1 156 0.156 323.15 0 0 0.01248 -0.00491791 -0.00491791 0 0 0 591.335 2.70878e-07 2.70878e-07 0 0 0 4.52949 2.58874 0.0210664 1.91968 +1 1 1 157 0.157 323.15 0 0 0.01256 -0.0049546 -0.0049546 0 0 0 592.813 2.70895e-07 2.70895e-07 0 0 0 4.57685 2.6017 0.0217257 1.95342 +1 1 1 158 0.158 323.15 0 0 0.01264 -0.00499132 -0.00499132 0 0 0 594.282 2.70911e-07 2.70911e-07 0 0 0 4.62434 2.61461 0.022397 1.98733 +1 1 1 159 0.159 323.15 0 0 0.01272 -0.00502806 -0.00502806 0 0 0 595.74 2.70926e-07 2.70927e-07 0 0 0 4.67194 2.62746 0.0230802 2.0214 +1 1 1 160 0.16 323.15 0 0 0.0128 -0.00506482 -0.00506482 0 0 0 597.189 2.70941e-07 2.70941e-07 0 0 0 4.71965 2.64025 0.0237754 2.05563 +1 1 1 161 0.161 323.15 0 0 0.01288 -0.0051016 -0.0051016 0 0 0 598.628 2.70954e-07 2.70954e-07 0 0 0 4.76749 2.65299 0.0244827 2.09002 +1 1 1 162 0.162 323.15 0 0 0.01296 -0.00513841 -0.00513841 0 0 0 600.057 2.70967e-07 2.70967e-07 0 0 0 4.81543 2.66567 0.025202 2.12456 +1 1 1 163 0.163 323.15 0 0 0.01304 -0.00517523 -0.00517523 0 0 0 601.477 2.70979e-07 2.70979e-07 0 0 0 4.8635 2.67831 0.0259334 2.15926 +1 1 1 164 0.164 323.15 0 0 0.01312 -0.00521208 -0.00521208 0 0 0 602.888 2.70991e-07 2.70991e-07 0 0 0 4.91167 2.69089 0.0266769 2.19411 +1 1 1 165 0.165 323.15 0 0 0.0132 -0.00524894 -0.00524894 0 0 0 604.29 2.71002e-07 2.71002e-07 0 0 0 4.95996 2.70342 0.0274327 2.22911 +1 1 1 166 0.166 323.15 0 0 0.01328 -0.00528583 -0.00528583 0 0 0 605.684 2.71013e-07 2.71013e-07 0 0 0 5.00836 2.7159 0.0282007 2.26426 +1 1 1 167 0.167 323.15 0 0 0.01336 -0.00532273 -0.00532273 0 0 0 607.068 2.71023e-07 2.71023e-07 0 0 0 5.05687 2.72833 0.028981 2.29956 +1 1 1 168 0.168 323.15 0 0 0.01344 -0.00535965 -0.00535965 0 0 0 608.444 2.71032e-07 2.71032e-07 0 0 0 5.10549 2.74071 0.0297737 2.335 +1 1 1 169 0.169 323.15 0 0 0.01352 -0.0053966 -0.0053966 0 0 0 609.812 2.71041e-07 2.71041e-07 0 0 0 5.15422 2.75305 0.0305786 2.37059 +1 1 1 170 0.17 323.15 0 0 0.0136 -0.00543356 -0.00543356 0 0 0 611.171 2.71049e-07 2.7105e-07 0 0 0 5.20306 2.76533 0.031396 2.40633 +1 1 1 171 0.171 323.15 0 0 0.01368 -0.00547054 -0.00547054 0 0 0 612.522 2.71057e-07 2.71058e-07 0 0 0 5.252 2.77758 0.0322258 2.4422 +1 1 1 172 0.172 323.15 0 0 0.01376 -0.00550753 -0.00550753 0 0 0 613.866 2.71065e-07 2.71065e-07 0 0 0 5.30106 2.78977 0.0330681 2.47822 +1 1 1 173 0.173 323.15 0 0 0.01384 -0.00554455 -0.00554455 0 0 0 615.201 2.71073e-07 2.71073e-07 0 0 0 5.35022 2.80192 0.033923 2.51438 +1 1 1 174 0.174 323.15 0 0 0.01392 -0.00558158 -0.00558158 0 0 0 616.529 2.71079e-07 2.7108e-07 0 0 0 5.39949 2.81403 0.0347903 2.55067 +1 1 1 175 0.175 323.15 0 0 0.014 -0.00561863 -0.00561863 0 0 0 617.849 2.71086e-07 2.71086e-07 0 0 0 5.44887 2.82609 0.0356703 2.5871 +1 1 1 176 0.176 323.15 0 0 0.01408 -0.00565569 -0.00565569 0 0 0 619.162 2.71093e-07 2.71093e-07 0 0 0 5.49835 2.83811 0.0365628 2.62367 +1 1 1 177 0.177 323.15 0 0 0.01416 -0.00569277 -0.00569277 0 0 0 620.467 2.71099e-07 2.71099e-07 0 0 0 5.54793 2.85009 0.037468 2.66037 +1 1 1 178 0.178 323.15 0 0 0.01424 -0.00572987 -0.00572987 0 0 0 621.765 2.71105e-07 2.71105e-07 0 0 0 5.59762 2.86203 0.038386 2.69721 +1 1 1 179 0.179 323.15 0 0 0.01432 -0.00576699 -0.00576699 0 0 0 623.055 2.7111e-07 2.7111e-07 0 0 0 5.64741 2.87392 0.0393166 2.73418 +1 1 1 180 0.18 323.15 0 0 0.0144 -0.00580412 -0.00580412 0 0 0 624.339 2.71115e-07 2.71115e-07 0 0 0 5.69731 2.88578 0.04026 2.77127 +1 1 1 181 0.181 323.15 0 0 0.01448 -0.00584126 -0.00584126 0 0 0 625.616 2.7112e-07 2.71121e-07 0 0 0 5.74731 2.89759 0.0412161 2.8085 +1 1 1 182 0.182 323.15 0 0 0.01456 -0.00587842 -0.00587842 0 0 0 626.886 2.71125e-07 2.71125e-07 0 0 0 5.79741 2.90937 0.0421851 2.84585 +1 1 1 183 0.183 323.15 0 0 0.01464 -0.0059156 -0.0059156 0 0 0 628.149 2.7113e-07 2.7113e-07 0 0 0 5.84761 2.92111 0.043167 2.88334 +1 1 1 184 0.184 323.15 0 0 0.01472 -0.00595279 -0.00595279 0 0 0 629.406 2.71135e-07 2.71135e-07 0 0 0 5.89791 2.9328 0.0441617 2.92095 +1 1 1 185 0.185 323.15 0 0 0.0148 -0.00598999 -0.00598999 0 0 0 630.656 2.71139e-07 2.71139e-07 0 0 0 5.94832 2.94447 0.0451693 2.95868 +1 1 1 186 0.186 323.15 0 0 0.01488 -0.00602721 -0.00602721 0 0 0 631.899 2.71143e-07 2.71143e-07 0 0 0 5.99882 2.95609 0.0461899 2.99654 +1 1 1 187 0.187 323.15 0 0 0.01496 -0.00606445 -0.00606445 0 0 0 633.137 2.71147e-07 2.71147e-07 0 0 0 6.04942 2.96768 0.0472234 3.03452 +1 1 1 188 0.188 323.15 0 0 0.01504 -0.00610169 -0.00610169 0 0 0 634.368 2.71151e-07 2.71151e-07 0 0 0 6.10012 2.97923 0.04827 3.07262 +1 1 1 189 0.189 323.15 0 0 0.01512 -0.00613896 -0.00613896 0 0 0 635.592 2.71154e-07 2.71154e-07 0 0 0 6.15092 2.99074 0.0493296 3.11084 +1 1 1 190 0.19 323.15 0 0 0.0152 -0.00617623 -0.00617623 0 0 0 636.811 2.71158e-07 2.71158e-07 0 0 0 6.20181 3.00222 0.0504022 3.14919 +1 1 1 191 0.191 323.15 0 0 0.01528 -0.00621352 -0.00621352 0 0 0 638.024 2.71161e-07 2.71161e-07 0 0 0 6.25281 3.01367 0.0514879 3.18765 +1 1 1 192 0.192 323.15 0 0 0.01536 -0.00625082 -0.00625082 0 0 0 639.231 2.71164e-07 2.71164e-07 0 0 0 6.3039 3.02508 0.0525867 3.22623 +1 1 1 193 0.193 323.15 0 0 0.01544 -0.00628814 -0.00628814 0 0 0 640.432 2.71167e-07 2.71167e-07 0 0 0 6.35508 3.03646 0.0536987 3.26493 +1 1 1 194 0.194 323.15 0 0 0.01552 -0.00632546 -0.00632546 0 0 0 641.627 2.7117e-07 2.7117e-07 0 0 0 6.40637 3.0478 0.0548239 3.30374 +1 1 1 195 0.195 323.15 0 0 0.0156 -0.0063628 -0.0063628 0 0 0 642.816 2.71173e-07 2.71173e-07 0 0 0 6.45774 3.05912 0.0559622 3.34267 +1 1 1 196 0.196 323.15 0 0 0.01568 -0.00640016 -0.00640016 0 0 0 644 2.71176e-07 2.71176e-07 0 0 0 6.50922 3.07039 0.0571138 3.38171 +1 1 1 197 0.197 323.15 0 0 0.01576 -0.00643752 -0.00643752 0 0 0 645.179 2.71178e-07 2.71178e-07 0 0 0 6.56078 3.08164 0.0582786 3.42086 +1 1 1 198 0.198 323.15 0 0 0.01584 -0.0064749 -0.0064749 0 0 0 646.352 2.71181e-07 2.71181e-07 0 0 0 6.61244 3.09286 0.0594567 3.46013 +1 1 1 199 0.199 323.15 0 0 0.01592 -0.00651229 -0.00651229 0 0 0 647.519 2.71183e-07 2.71183e-07 0 0 0 6.6642 3.10404 0.0606481 3.49951 +1 1 1 200 0.2 323.15 0 0 0.016 -0.00654969 -0.00654969 0 0 0 648.682 2.71185e-07 2.71185e-07 0 0 0 6.71605 3.11519 0.0618528 3.539 +1 1 1 201 0.201 323.15 0 0 0.01608 -0.0065871 -0.0065871 0 0 0 649.839 2.71187e-07 2.71187e-07 0 0 0 6.76799 3.12632 0.0630708 3.5786 +1 1 1 202 0.202 323.15 0 0 0.01616 -0.00662453 -0.00662453 0 0 0 650.99 2.71189e-07 2.71189e-07 0 0 0 6.82002 3.13741 0.0643022 3.61831 +1 1 1 203 0.203 323.15 0 0 0.01624 -0.00666197 -0.00666197 0 0 0 652.137 2.71191e-07 2.71191e-07 0 0 0 6.87215 3.14847 0.0655471 3.65813 +1 1 1 204 0.204 323.15 0 0 0.01632 -0.00669941 -0.00669941 0 0 0 653.279 2.71193e-07 2.71193e-07 0 0 0 6.92436 3.1595 0.0668053 3.69805 +1 1 1 205 0.205 323.15 0 0 0.0164 -0.00673687 -0.00673687 0 0 0 654.416 2.71195e-07 2.71195e-07 0 0 0 6.97667 3.17051 0.068077 3.73809 +1 1 1 206 0.206 323.15 0 0 0.01648 -0.00677434 -0.00677434 0 0 0 655.547 2.71197e-07 2.71197e-07 0 0 0 7.02907 3.18148 0.0693621 3.77822 +1 1 1 207 0.207 323.15 0 0 0.01656 -0.00681182 -0.00681182 0 0 0 656.674 2.71199e-07 2.71198e-07 0 0 0 7.08156 3.19243 0.0706608 3.81847 +1 1 1 208 0.208 323.15 0 0 0.01664 -0.00684931 -0.00684931 0 0 0 657.796 2.712e-07 2.712e-07 0 0 0 7.13414 3.20335 0.0719729 3.85881 +1 1 1 209 0.209 323.15 0 0 0.01672 -0.00688682 -0.00688682 0 0 0 658.914 2.71202e-07 2.71202e-07 0 0 0 7.18681 3.21424 0.0732986 3.89926 +1 1 1 210 0.21 323.15 0 0 0.0168 -0.00692433 -0.00692433 0 0 0 660.026 2.71204e-07 2.71203e-07 0 0 0 7.23956 3.22511 0.0746378 3.93982 +1 1 1 211 0.211 323.15 0 0 0.01688 -0.00696185 -0.00696185 0 0 0 661.134 2.71205e-07 2.71205e-07 0 0 0 7.29241 3.23595 0.0759906 3.98047 +1 1 1 212 0.212 323.15 0 0 0.01696 -0.00699938 -0.00699938 0 0 0 662.238 2.71206e-07 2.71206e-07 0 0 0 7.34534 3.24676 0.0773571 4.02123 +1 1 1 213 0.213 323.15 0 0 0.01704 -0.00703693 -0.00703693 0 0 0 663.337 2.71208e-07 2.71208e-07 0 0 0 7.39837 3.25754 0.0787371 4.06209 +1 1 1 214 0.214 323.15 0 0 0.01712 -0.00707448 -0.00707448 0 0 0 664.431 2.71209e-07 2.71209e-07 0 0 0 7.45148 3.2683 0.0801308 4.10305 +1 1 1 215 0.215 323.15 0 0 0.0172 -0.00711204 -0.00711204 0 0 0 665.522 2.71211e-07 2.7121e-07 0 0 0 7.50468 3.27903 0.0815381 4.1441 +1 1 1 216 0.216 323.15 0 0 0.01728 -0.00714961 -0.00714961 0 0 0 666.607 2.71212e-07 2.71212e-07 0 0 0 7.55796 3.28974 0.0829591 4.18526 +1 1 1 217 0.217 323.15 0 0 0.01736 -0.0071872 -0.0071872 0 0 0 667.689 2.71213e-07 2.71213e-07 0 0 0 7.61133 3.30042 0.0843938 4.22651 +1 1 1 218 0.218 323.15 0 0 0.01744 -0.00722479 -0.00722479 0 0 0 668.766 2.71214e-07 2.71214e-07 0 0 0 7.66479 3.31108 0.0858422 4.26787 +1 1 1 219 0.219 323.15 0 0 0.01752 -0.00726239 -0.00726239 0 0 0 669.839 2.71215e-07 2.71215e-07 0 0 0 7.71834 3.32172 0.0873044 4.30932 +1 1 1 220 0.22 323.15 0 0 0.0176 -0.0073 -0.0073 0 0 0 670.908 2.71216e-07 2.71216e-07 0 0 0 7.77197 3.33232 0.0887803 4.35086 +1 1 1 221 0.221 323.15 0 0 0.01768 -0.00733762 -0.00733762 0 0 0 671.972 2.71218e-07 2.71217e-07 0 0 0 7.82568 3.34291 0.09027 4.3925 +1 1 1 222 0.222 323.15 0 0 0.01776 -0.00737525 -0.00737525 0 0 0 673.033 2.71218e-07 2.71218e-07 0 0 0 7.87948 3.35347 0.0917736 4.43424 +1 1 1 223 0.223 323.15 0 0 0.01784 -0.00741289 -0.00741289 0 0 0 674.09 2.71219e-07 2.71219e-07 0 0 0 7.93337 3.36401 0.0932909 4.47607 +1 1 1 224 0.224 323.15 0 0 0.01792 -0.00745053 -0.00745053 0 0 0 675.142 2.7122e-07 2.7122e-07 0 0 0 7.98734 3.37452 0.094822 4.51799 +1 1 1 225 0.225 323.15 0 0 0.018 -0.00748819 -0.00748819 0 0 0 676.191 2.71221e-07 2.71221e-07 0 0 0 8.04139 3.38501 0.0963671 4.56001 +1 1 1 226 0.226 323.15 0 0 0.01808 -0.00752585 -0.00752585 0 0 0 677.236 2.71222e-07 2.71222e-07 0 0 0 8.09553 3.39548 0.0979259 4.60212 +1 1 1 227 0.227 323.15 0 0 0.01816 -0.00756352 -0.00756352 0 0 0 678.277 2.71223e-07 2.71223e-07 0 0 0 8.14975 3.40593 0.0994987 4.64432 +1 1 1 228 0.228 323.15 0 0 0.01824 -0.0076012 -0.0076012 0 0 0 679.314 2.71224e-07 2.71223e-07 0 0 0 8.20405 3.41635 0.101085 4.68661 +1 1 1 229 0.229 323.15 0 0 0.01832 -0.00763889 -0.00763889 0 0 0 680.347 2.71224e-07 2.71224e-07 0 0 0 8.25844 3.42676 0.102686 4.72899 +1 1 1 230 0.23 323.15 0 0 0.0184 -0.00767659 -0.00767659 0 0 0 681.377 2.71225e-07 2.71225e-07 0 0 0 8.31291 3.43714 0.104301 4.77147 +1 1 1 231 0.231 323.15 0 0 0.01848 -0.0077143 -0.0077143 0 0 0 682.403 2.71226e-07 2.71226e-07 0 0 0 8.36746 3.44749 0.105929 4.81403 +1 1 1 232 0.232 323.15 0 0 0.01856 -0.00775201 -0.00775201 0 0 0 683.425 2.71227e-07 2.71226e-07 0 0 0 8.42209 3.45783 0.107572 4.85669 +1 1 1 233 0.233 323.15 0 0 0.01864 -0.00778973 -0.00778973 0 0 0 684.444 2.71228e-07 2.71227e-07 0 0 0 8.4768 3.46815 0.109228 4.89943 +1 1 1 234 0.234 323.15 0 0 0.01872 -0.00782747 -0.00782747 0 0 0 685.459 2.71228e-07 2.71228e-07 0 0 0 8.5316 3.47844 0.110899 4.94226 +1 1 1 235 0.235 323.15 0 0 0.0188 -0.0078652 -0.0078652 0 0 0 686.471 2.71229e-07 2.71229e-07 0 0 0 8.58648 3.48872 0.112583 4.98518 +1 1 1 236 0.236 323.15 0 0 0.01888 -0.00790295 -0.00790295 0 0 0 687.479 2.7123e-07 2.71229e-07 0 0 0 8.64144 3.49897 0.114282 5.02818 +1 1 1 237 0.237 323.15 0 0 0.01896 -0.0079407 -0.0079407 0 0 0 688.484 2.7123e-07 2.7123e-07 0 0 0 8.69647 3.50921 0.115994 5.07127 +1 1 1 238 0.238 323.15 0 0 0.01904 -0.00797846 -0.00797846 0 0 0 689.485 2.71231e-07 2.71231e-07 0 0 0 8.75159 3.51942 0.117721 5.11445 +1 1 1 239 0.239 323.15 0 0 0.01912 -0.00801623 -0.00801623 0 0 0 690.483 2.71232e-07 2.71231e-07 0 0 0 8.80679 3.52962 0.119462 5.15771 +1 1 1 240 0.24 323.15 0 0 0.0192 -0.00805401 -0.00805401 0 0 0 691.477 2.71232e-07 2.71232e-07 0 0 0 8.86207 3.53979 0.121217 5.20106 +1 1 1 241 0.241 323.15 0 0 0.01928 -0.00809179 -0.00809179 0 0 0 692.469 2.71233e-07 2.71232e-07 0 0 0 8.91743 3.54995 0.122986 5.24449 +1 1 1 242 0.242 323.15 0 0 0.01936 -0.00812958 -0.00812958 0 0 0 693.457 2.71233e-07 2.71233e-07 0 0 0 8.97286 3.56009 0.124769 5.28801 +1 1 1 243 0.243 323.15 0 0 0.01944 -0.00816738 -0.00816738 0 0 0 694.441 2.71234e-07 2.71234e-07 0 0 0 9.02838 3.5702 0.126566 5.33161 +1 1 1 244 0.244 323.15 0 0 0.01952 -0.00820519 -0.00820519 0 0 0 695.423 2.71234e-07 2.71234e-07 0 0 0 9.08398 3.5803 0.128378 5.3753 +1 1 1 245 0.245 323.15 0 0 0.0196 -0.008243 -0.008243 0 0 0 696.401 2.71235e-07 2.71234e-07 0 0 0 9.13965 3.59038 0.130203 5.41906 +1 1 1 246 0.246 323.15 0 0 0.01968 -0.00828082 -0.00828082 0 0 0 697.376 2.71235e-07 2.71235e-07 0 0 0 9.1954 3.60044 0.132043 5.46291 +1 1 1 247 0.247 323.15 0 0 0.01976 -0.00831865 -0.00831865 0 0 0 698.348 2.71236e-07 2.71235e-07 0 0 0 9.25123 3.61049 0.133897 5.50684 +1 1 1 248 0.248 323.15 0 0 0.01984 -0.00835648 -0.00835648 0 0 0 699.317 2.71236e-07 2.71236e-07 0 0 0 9.30713 3.62051 0.135766 5.55086 +1 1 1 249 0.249 323.15 0 0 0.01992 -0.00839432 -0.00839432 0 0 0 700.283 2.71237e-07 2.71236e-07 0 0 0 9.36312 3.63052 0.137648 5.59495 +1 1 1 250 0.25 323.15 0 0 0.02 -0.00843217 -0.00843217 0 0 0 701.246 2.71237e-07 2.71237e-07 0 0 0 9.41918 3.64051 0.139545 5.63913 +1 1 1 251 0.251 323.15 0 0 0.02008 -0.00847002 -0.00847002 0 0 0 702.205 2.71238e-07 2.71237e-07 0 0 0 9.47532 3.65048 0.141456 5.68338 +1 1 1 252 0.252 323.15 0 0 0.02016 -0.00850788 -0.00850788 0 0 0 703.162 2.71238e-07 2.71238e-07 0 0 0 9.53153 3.66044 0.143381 5.72771 +1 1 1 253 0.253 323.15 0 0 0.02024 -0.00854575 -0.00854575 0 0 0 704.116 2.71239e-07 2.71238e-07 0 0 0 9.58782 3.67038 0.145321 5.77213 +1 1 1 254 0.254 323.15 0 0 0.02032 -0.00858363 -0.00858363 0 0 0 705.067 2.71239e-07 2.71238e-07 0 0 0 9.64419 3.6803 0.147275 5.81662 +1 1 1 255 0.255 323.15 0 0 0.0204 -0.00862151 -0.00862151 0 0 0 706.015 2.71239e-07 2.71239e-07 0 0 0 9.70063 3.6902 0.149243 5.86119 +1 1 1 256 0.256 323.15 0 0 0.02048 -0.00865939 -0.00865939 0 0 0 706.96 2.7124e-07 2.71239e-07 0 0 0 9.75715 3.70009 0.151226 5.90584 +1 1 1 257 0.257 323.15 0 0 0.02056 -0.00869729 -0.00869729 0 0 0 707.903 2.7124e-07 2.7124e-07 0 0 0 9.81375 3.70996 0.153223 5.95057 +1 1 1 258 0.258 323.15 0 0 0.02064 -0.00873519 -0.00873519 0 0 0 708.842 2.7124e-07 2.7124e-07 0 0 0 9.87042 3.71981 0.155234 5.99537 +1 1 1 259 0.259 323.15 0 0 0.02072 -0.00877309 -0.00877309 0 0 0 709.779 2.71241e-07 2.7124e-07 0 0 0 9.92716 3.72965 0.15726 6.04025 +1 1 1 260 0.26 323.15 0 0 0.0208 -0.008811 -0.008811 0 0 0 710.713 2.71241e-07 2.71241e-07 0 0 0 9.98398 3.73947 0.1593 6.08521 +1 1 1 261 0.261 323.15 0 0 0.02088 -0.00884892 -0.00884892 0 0 0 711.644 2.71241e-07 2.71241e-07 0 0 0 10.0409 3.74928 0.161354 6.13024 +1 1 1 262 0.262 323.15 0 0 0.02096 -0.00888685 -0.00888685 0 0 0 712.573 2.71241e-07 2.71241e-07 0 0 0 10.0978 3.75907 0.163423 6.17535 +1 1 1 263 0.263 323.15 0 0 0.02104 -0.00892478 -0.00892478 0 0 0 713.499 2.71242e-07 2.71242e-07 0 0 0 10.1549 3.76884 0.165507 6.22054 +1 1 1 264 0.264 323.15 0 0 0.02112 -0.00896271 -0.00896271 0 0 0 714.422 2.71242e-07 2.71242e-07 0 0 0 10.212 3.7786 0.167604 6.2658 +1 1 1 265 0.265 323.15 0 0 0.0212 -0.00900065 -0.00900065 0 0 0 715.342 2.71243e-07 2.71242e-07 0 0 0 10.2692 3.78835 0.169717 6.31113 +1 1 1 266 0.266 323.15 0 0 0.02128 -0.0090386 -0.0090386 0 0 0 716.26 2.71243e-07 2.71243e-07 0 0 0 10.3265 3.79807 0.171843 6.35654 +1 1 1 267 0.267 323.15 0 0 0.02136 -0.00907655 -0.00907655 0 0 0 717.175 2.71243e-07 2.71243e-07 0 0 0 10.3838 3.80779 0.173984 6.40203 +1 1 1 268 0.268 323.15 0 0 0.02144 -0.00911451 -0.00911451 0 0 0 718.088 2.71244e-07 2.71243e-07 0 0 0 10.4412 3.81749 0.17614 6.44758 +1 1 1 269 0.269 323.15 0 0 0.02152 -0.00915248 -0.00915248 0 0 0 718.998 2.71244e-07 2.71244e-07 0 0 0 10.4987 3.82717 0.17831 6.49321 +1 1 1 270 0.27 323.15 0 0 0.0216 -0.00919045 -0.00919045 0 0 0 719.906 2.71244e-07 2.71244e-07 0 0 0 10.5562 3.83684 0.180495 6.53891 +1 1 1 271 0.271 323.15 0 0 0.02168 -0.00922843 -0.00922843 0 0 0 720.811 2.71244e-07 2.71244e-07 0 0 0 10.6139 3.84649 0.182694 6.58469 +1 1 1 272 0.272 323.15 0 0 0.02176 -0.00926641 -0.00926641 0 0 0 721.714 2.71244e-07 2.71244e-07 0 0 0 10.6716 3.85613 0.184908 6.63054 +1 1 1 273 0.273 323.15 0 0 0.02184 -0.00930439 -0.00930439 0 0 0 722.614 2.71245e-07 2.71244e-07 0 0 0 10.7294 3.86576 0.187136 6.67646 +1 1 1 274 0.274 323.15 0 0 0.02192 -0.00934239 -0.00934239 0 0 0 723.512 2.71245e-07 2.71244e-07 0 0 0 10.7872 3.87537 0.189379 6.72245 +1 1 1 275 0.275 323.15 0 0 0.022 -0.00938039 -0.00938039 0 0 0 724.407 2.71245e-07 2.71245e-07 0 0 0 10.8451 3.88497 0.191636 6.76851 +1 1 1 276 0.276 323.15 0 0 0.02208 -0.00941839 -0.00941839 0 0 0 725.3 2.71245e-07 2.71245e-07 0 0 0 10.9031 3.89455 0.193908 6.81464 +1 1 1 277 0.277 323.15 0 0 0.02216 -0.0094564 -0.0094564 0 0 0 726.191 2.71246e-07 2.71245e-07 0 0 0 10.9612 3.90412 0.196195 6.86084 +1 1 1 278 0.278 323.15 0 0 0.02224 -0.00949441 -0.00949441 0 0 0 727.079 2.71246e-07 2.71246e-07 0 0 0 11.0193 3.91368 0.198496 6.90712 +1 1 1 279 0.279 323.15 0 0 0.02232 -0.00953243 -0.00953243 0 0 0 727.965 2.71246e-07 2.71246e-07 0 0 0 11.0775 3.92322 0.200812 6.95346 +1 1 1 280 0.28 323.15 0 0 0.0224 -0.00957046 -0.00957046 0 0 0 728.848 2.71246e-07 2.71246e-07 0 0 0 11.1358 3.93275 0.203142 6.99987 +1 1 1 281 0.281 323.15 0 0 0.02248 -0.00960849 -0.00960849 0 0 0 729.73 2.71246e-07 2.71246e-07 0 0 0 11.1941 3.94227 0.205487 7.04636 +1 1 1 282 0.282 323.15 0 0 0.02256 -0.00964652 -0.00964652 0 0 0 730.609 2.71247e-07 2.71246e-07 0 0 0 11.2525 3.95177 0.207847 7.09291 +1 1 1 283 0.283 323.15 0 0 0.02264 -0.00968456 -0.00968456 0 0 0 731.485 2.71247e-07 2.71246e-07 0 0 0 11.311 3.96126 0.210221 7.13953 +1 1 1 284 0.284 323.15 0 0 0.02272 -0.00972261 -0.00972261 0 0 0 732.36 2.71247e-07 2.71247e-07 0 0 0 11.3696 3.97073 0.21261 7.18621 +1 1 1 285 0.285 323.15 0 0 0.0228 -0.00976066 -0.00976066 0 0 0 733.232 2.71247e-07 2.71247e-07 0 0 0 11.4282 3.9802 0.215014 7.23297 +1 1 1 286 0.286 323.15 0 0 0.02288 -0.00979871 -0.00979871 0 0 0 734.102 2.71247e-07 2.71247e-07 0 0 0 11.4869 3.98965 0.217432 7.27979 +1 1 1 287 0.287 323.15 0 0 0.02296 -0.00983677 -0.00983677 0 0 0 734.97 2.71247e-07 2.71247e-07 0 0 0 11.5456 3.99909 0.219865 7.32669 +1 1 1 288 0.288 323.15 0 0 0.02304 -0.00987483 -0.00987483 0 0 0 735.836 2.71247e-07 2.71247e-07 0 0 0 11.6045 4.00851 0.222313 7.37364 +1 1 1 289 0.289 323.15 0 0 0.02312 -0.0099129 -0.0099129 0 0 0 736.699 2.71247e-07 2.71247e-07 0 0 0 11.6634 4.01793 0.224776 7.42067 +1 1 1 290 0.29 323.15 0 0 0.0232 -0.00995098 -0.00995098 0 0 0 737.56 2.71248e-07 2.71247e-07 0 0 0 11.7223 4.02733 0.227253 7.46776 +1 1 1 291 0.291 323.15 0 0 0.02328 -0.00998906 -0.00998906 0 0 0 738.42 2.71248e-07 2.71248e-07 0 0 0 11.7814 4.03672 0.229745 7.51492 +1 1 1 292 0.292 323.15 0 0 0.02336 -0.0100271 -0.0100271 0 0 0 739.277 2.71248e-07 2.71248e-07 0 0 0 11.8405 4.04609 0.232252 7.56215 +1 1 1 293 0.293 323.15 0 0 0.02344 -0.0100652 -0.0100652 0 0 0 740.132 2.71248e-07 2.71248e-07 0 0 0 11.8997 4.05546 0.234773 7.60944 +1 1 1 294 0.294 323.15 0 0 0.02352 -0.0101033 -0.0101033 0 0 0 740.985 2.71248e-07 2.71248e-07 0 0 0 11.9589 4.06481 0.237309 7.65679 +1 1 1 295 0.295 323.15 0 0 0.0236 -0.0101414 -0.0101414 0 0 0 741.836 2.71249e-07 2.71248e-07 0 0 0 12.0182 4.07415 0.23986 7.70421 +1 1 1 296 0.296 323.15 0 0 0.02368 -0.0101795 -0.0101795 0 0 0 742.685 2.71249e-07 2.71248e-07 0 0 0 12.0776 4.08348 0.242426 7.7517 +1 1 1 297 0.297 323.15 0 0 0.02376 -0.0102176 -0.0102176 0 0 0 743.531 2.71249e-07 2.71248e-07 0 0 0 12.1371 4.0928 0.245007 7.79925 +1 1 1 298 0.298 323.15 0 0 0.02384 -0.0102557 -0.0102557 0 0 0 744.376 2.71249e-07 2.71249e-07 0 0 0 12.1966 4.10211 0.247602 7.84686 +1 1 1 299 0.299 323.15 0 0 0.02392 -0.0102939 -0.0102939 0 0 0 745.219 2.71249e-07 2.71249e-07 0 0 0 12.2562 4.1114 0.250212 7.89454 +1 1 1 300 0.3 323.15 0 0 0.024 -0.010332 -0.010332 0 0 0 746.06 2.71249e-07 2.71249e-07 0 0 0 12.3158 4.12068 0.252837 7.94228 +1 1 1 301 0.301 323.15 0 0 0.02408 -0.0103701 -0.0103701 0 0 0 746.899 2.7125e-07 2.71249e-07 0 0 0 12.3755 4.12995 0.255477 7.99009 +1 1 1 302 0.302 323.15 0 0 0.02416 -0.0104082 -0.0104082 0 0 0 747.736 2.7125e-07 2.71249e-07 0 0 0 12.4353 4.13922 0.258132 8.03796 +1 1 1 303 0.303 323.15 0 0 0.02424 -0.0104464 -0.0104464 0 0 0 748.571 2.7125e-07 2.71249e-07 0 0 0 12.4952 4.14847 0.260801 8.08589 +1 1 1 304 0.304 323.15 0 0 0.02432 -0.0104845 -0.0104845 0 0 0 749.404 2.7125e-07 2.71249e-07 0 0 0 12.5551 4.1577 0.263486 8.13389 +1 1 1 305 0.305 323.15 0 0 0.0244 -0.0105226 -0.0105226 0 0 0 750.235 2.7125e-07 2.71249e-07 0 0 0 12.6151 4.16693 0.266185 8.18195 +1 1 1 306 0.306 323.15 0 0 0.02448 -0.0105608 -0.0105608 0 0 0 751.064 2.7125e-07 2.71249e-07 0 0 0 12.6751 4.17615 0.268899 8.23007 +1 1 1 307 0.307 323.15 0 0 0.02456 -0.0105989 -0.0105989 0 0 0 751.892 2.7125e-07 2.7125e-07 0 0 0 12.7352 4.18536 0.271628 8.27825 +1 1 1 308 0.308 323.15 0 0 0.02464 -0.0106371 -0.0106371 0 0 0 752.717 2.7125e-07 2.7125e-07 0 0 0 12.7954 4.19455 0.274372 8.3265 +1 1 1 309 0.309 323.15 0 0 0.02472 -0.0106752 -0.0106752 0 0 0 753.541 2.7125e-07 2.7125e-07 0 0 0 12.8557 4.20374 0.277131 8.3748 +1 1 1 310 0.31 323.15 0 0 0.0248 -0.0107134 -0.0107134 0 0 0 754.363 2.7125e-07 2.7125e-07 0 0 0 12.916 4.21291 0.279905 8.42317 +1 1 1 311 0.311 323.15 0 0 0.02488 -0.0107516 -0.0107516 0 0 0 755.183 2.7125e-07 2.7125e-07 0 0 0 12.9764 4.22208 0.282693 8.4716 +1 1 1 312 0.312 323.15 0 0 0.02496 -0.0107897 -0.0107897 0 0 0 756.001 2.71251e-07 2.7125e-07 0 0 0 13.0368 4.23123 0.285497 8.52009 +1 1 1 313 0.313 323.15 0 0 0.02504 -0.0108279 -0.0108279 0 0 0 756.817 2.71251e-07 2.7125e-07 0 0 0 13.0973 4.24037 0.288315 8.56864 +1 1 1 314 0.314 323.15 0 0 0.02512 -0.0108661 -0.0108661 0 0 0 757.632 2.71251e-07 2.7125e-07 0 0 0 13.1579 4.24951 0.291149 8.61725 +1 1 1 315 0.315 323.15 0 0 0.0252 -0.0109043 -0.0109043 0 0 0 758.445 2.71251e-07 2.7125e-07 0 0 0 13.2185 4.25863 0.293997 8.66592 +1 1 1 316 0.316 323.15 0 0 0.02528 -0.0109425 -0.0109425 0 0 0 759.256 2.71251e-07 2.7125e-07 0 0 0 13.2793 4.26774 0.296861 8.71465 +1 1 1 317 0.317 323.15 0 0 0.02536 -0.0109807 -0.0109807 0 0 0 760.065 2.71252e-07 2.71251e-07 0 0 0 13.34 4.27685 0.299739 8.76344 +1 1 1 318 0.318 323.15 0 0 0.02544 -0.0110189 -0.0110189 0 0 0 760.873 2.71252e-07 2.71251e-07 0 0 0 13.4009 4.28594 0.302632 8.81229 +1 1 1 319 0.319 323.15 0 0 0.02552 -0.0110571 -0.0110571 0 0 0 761.679 2.71252e-07 2.71251e-07 0 0 0 13.4618 4.29502 0.30554 8.8612 +1 1 1 320 0.32 323.15 0 0 0.0256 -0.0110953 -0.0110953 0 0 0 762.483 2.71252e-07 2.71251e-07 0 0 0 13.5227 4.3041 0.308464 8.91017 +1 1 1 321 0.321 323.15 0 0 0.02568 -0.0111335 -0.0111335 0 0 0 763.286 2.71252e-07 2.71251e-07 0 0 0 13.5838 4.31316 0.311402 8.9592 +1 1 1 322 0.322 323.15 0 0 0.02576 -0.0111717 -0.0111717 0 0 0 764.086 2.71252e-07 2.71251e-07 0 0 0 13.6449 4.32222 0.314355 9.00829 +1 1 1 323 0.323 323.15 0 0 0.02584 -0.0112099 -0.0112099 0 0 0 764.886 2.71252e-07 2.71251e-07 0 0 0 13.706 4.33126 0.317324 9.05743 +1 1 1 324 0.324 323.15 0 0 0.02592 -0.0112481 -0.0112481 0 0 0 765.683 2.71252e-07 2.71251e-07 0 0 0 13.7672 4.3403 0.320307 9.10664 +1 1 1 325 0.325 323.15 0 0 0.026 -0.0112863 -0.0112863 0 0 0 766.479 2.71252e-07 2.71251e-07 0 0 0 13.8285 4.34933 0.323305 9.1559 +1 1 1 326 0.326 323.15 0 0 0.02608 -0.0113245 -0.0113245 0 0 0 767.273 2.71252e-07 2.71251e-07 0 0 0 13.8899 4.35834 0.326319 9.20522 +1 1 1 327 0.327 323.15 0 0 0.02616 -0.0113628 -0.0113628 0 0 0 768.065 2.71252e-07 2.71251e-07 0 0 0 13.9513 4.36735 0.329347 9.25459 +1 1 1 328 0.328 323.15 0 0 0.02624 -0.011401 -0.011401 0 0 0 768.856 2.71252e-07 2.71251e-07 0 0 0 14.0128 4.37635 0.332391 9.30403 +1 1 1 329 0.329 323.15 0 0 0.02632 -0.0114392 -0.0114392 0 0 0 769.646 2.71252e-07 2.71251e-07 0 0 0 14.0743 4.38534 0.335449 9.35352 +1 1 1 330 0.33 323.15 0 0 0.0264 -0.0114775 -0.0114775 0 0 0 770.433 2.71252e-07 2.71252e-07 0 0 0 14.1359 4.39432 0.338523 9.40307 +1 1 1 331 0.331 323.15 0 0 0.02648 -0.0115157 -0.0115157 0 0 0 771.22 2.71252e-07 2.71251e-07 0 0 0 14.1976 4.4033 0.341612 9.45267 +1 1 1 332 0.332 323.15 0 0 0.02656 -0.011554 -0.011554 0 0 0 772.004 2.71252e-07 2.71251e-07 0 0 0 14.2593 4.41226 0.344715 9.50233 +1 1 1 333 0.333 323.15 0 0 0.02664 -0.0115922 -0.0115922 0 0 0 772.787 2.71252e-07 2.71251e-07 0 0 0 14.3211 4.42121 0.347834 9.55205 +1 1 1 334 0.334 323.15 0 0 0.02672 -0.0116305 -0.0116305 0 0 0 773.569 2.71252e-07 2.71252e-07 0 0 0 14.383 4.43016 0.350968 9.60183 +1 1 1 335 0.335 323.15 0 0 0.0268 -0.0116687 -0.0116687 0 0 0 774.348 2.71252e-07 2.71252e-07 0 0 0 14.4449 4.4391 0.354117 9.65166 +1 1 1 336 0.336 323.15 0 0 0.02688 -0.011707 -0.011707 0 0 0 775.127 2.71252e-07 2.71252e-07 0 0 0 14.5069 4.44803 0.357282 9.70154 +1 1 1 337 0.337 323.15 0 0 0.02696 -0.0117453 -0.0117453 0 0 0 775.904 2.71253e-07 2.71252e-07 0 0 0 14.5689 4.45695 0.360461 9.75149 +1 1 1 338 0.338 323.15 0 0 0.02704 -0.0117835 -0.0117835 0 0 0 776.679 2.71253e-07 2.71252e-07 0 0 0 14.631 4.46586 0.363655 9.80148 +1 1 1 339 0.339 323.15 0 0 0.02712 -0.0118218 -0.0118218 0 0 0 777.453 2.71253e-07 2.71252e-07 0 0 0 14.6932 4.47476 0.366865 9.85154 +1 1 1 340 0.34 323.15 0 0 0.0272 -0.0118601 -0.0118601 0 0 0 778.225 2.71253e-07 2.71252e-07 0 0 0 14.7554 4.48365 0.37009 9.90164 +1 1 1 341 0.341 323.15 0 0 0.02728 -0.0118983 -0.0118983 0 0 0 778.996 2.71253e-07 2.71252e-07 0 0 0 14.8177 4.49254 0.373329 9.95181 +1 1 1 342 0.342 323.15 0 0 0.02736 -0.0119366 -0.0119366 0 0 0 779.765 2.71253e-07 2.71252e-07 0 0 0 14.88 4.50142 0.376584 10.002 +1 1 1 343 0.343 323.15 0 0 0.02744 -0.0119749 -0.0119749 0 0 0 780.533 2.71253e-07 2.71252e-07 0 0 0 14.9424 4.51029 0.379855 10.0523 +1 1 1 344 0.344 323.15 0 0 0.02752 -0.0120132 -0.0120132 0 0 0 781.3 2.71253e-07 2.71252e-07 0 0 0 15.0049 4.51915 0.38314 10.1026 +1 1 1 345 0.345 323.15 0 0 0.0276 -0.0120515 -0.0120515 0 0 0 782.064 2.71253e-07 2.71252e-07 0 0 0 15.0674 4.52801 0.386441 10.153 +1 1 1 346 0.346 323.15 0 0 0.02768 -0.0120898 -0.0120898 0 0 0 782.828 2.71253e-07 2.71252e-07 0 0 0 15.13 4.53685 0.389756 10.2034 +1 1 1 347 0.347 323.15 0 0 0.02776 -0.0121281 -0.0121281 0 0 0 783.59 2.71253e-07 2.71252e-07 0 0 0 15.1927 4.54569 0.393087 10.2539 +1 1 1 348 0.348 323.15 0 0 0.02784 -0.0121664 -0.0121664 0 0 0 784.351 2.71253e-07 2.71252e-07 0 0 0 15.2554 4.55452 0.396433 10.3045 +1 1 1 349 0.349 323.15 0 0 0.02792 -0.0122047 -0.0122047 0 0 0 785.11 2.71254e-07 2.71253e-07 0 0 0 15.3182 4.56334 0.399794 10.3551 +1 1 1 350 0.35 323.15 0 0 0.028 -0.012243 -0.012243 0 0 0 785.868 2.71253e-07 2.71253e-07 0 0 0 15.381 4.57216 0.403171 10.4057 +1 1 1 351 0.351 323.15 0 0 0.02808 -0.0122813 -0.0122813 0 0 0 786.624 2.71253e-07 2.71253e-07 0 0 0 15.4439 4.58096 0.406563 10.4564 +1 1 1 352 0.352 323.15 0 0 0.02816 -0.0123196 -0.0123196 0 0 0 787.38 2.71253e-07 2.71253e-07 0 0 0 15.5069 4.58976 0.40997 10.5072 +1 1 1 353 0.353 323.15 0 0 0.02824 -0.0123579 -0.0123579 0 0 0 788.133 2.71254e-07 2.71253e-07 0 0 0 15.5699 4.59855 0.413392 10.558 +1 1 1 354 0.354 323.15 0 0 0.02832 -0.0123962 -0.0123962 0 0 0 788.886 2.71253e-07 2.71253e-07 0 0 0 15.633 4.60734 0.416829 10.6088 +1 1 1 355 0.355 323.15 0 0 0.0284 -0.0124345 -0.0124345 0 0 0 789.637 2.71254e-07 2.71253e-07 0 0 0 15.6961 4.61611 0.420282 10.6597 +1 1 1 356 0.356 323.15 0 0 0.02848 -0.0124729 -0.0124729 0 0 0 790.386 2.71254e-07 2.71253e-07 0 0 0 15.7593 4.62488 0.42375 10.7107 +1 1 1 357 0.357 323.15 0 0 0.02856 -0.0125112 -0.0125112 0 0 0 791.135 2.71254e-07 2.71253e-07 0 0 0 15.8226 4.63364 0.427233 10.7617 +1 1 1 358 0.358 323.15 0 0 0.02864 -0.0125495 -0.0125495 0 0 0 791.882 2.71254e-07 2.71253e-07 0 0 0 15.8859 4.6424 0.430731 10.8128 +1 1 1 359 0.359 323.15 0 0 0.02872 -0.0125879 -0.0125879 0 0 0 792.627 2.71254e-07 2.71253e-07 0 0 0 15.9493 4.65114 0.434245 10.8639 +1 1 1 360 0.36 323.15 0 0 0.0288 -0.0126262 -0.0126262 0 0 0 793.372 2.71254e-07 2.71253e-07 0 0 0 16.0127 4.65988 0.437774 10.9151 +1 1 1 361 0.361 323.15 0 0 0.02888 -0.0126645 -0.0126645 0 0 0 794.115 2.71254e-07 2.71253e-07 0 0 0 16.0762 4.66862 0.441318 10.9663 +1 1 1 362 0.362 323.15 0 0 0.02896 -0.0127029 -0.0127029 0 0 0 794.856 2.71254e-07 2.71253e-07 0 0 0 16.1398 4.67734 0.444877 11.0176 +1 1 1 363 0.363 323.15 0 0 0.02904 -0.0127412 -0.0127412 0 0 0 795.597 2.71254e-07 2.71253e-07 0 0 0 16.2034 4.68606 0.448452 11.0689 +1 1 1 364 0.364 323.15 0 0 0.02912 -0.0127796 -0.0127796 0 0 0 796.336 2.71254e-07 2.71253e-07 0 0 0 16.2671 4.69477 0.452042 11.1203 +1 1 1 365 0.365 323.15 0 0 0.0292 -0.0128179 -0.0128179 0 0 0 797.074 2.71254e-07 2.71253e-07 0 0 0 16.3308 4.70347 0.455647 11.1717 +1 1 1 366 0.366 323.15 0 0 0.02928 -0.0128563 -0.0128563 0 0 0 797.81 2.71254e-07 2.71253e-07 0 0 0 16.3946 4.71217 0.459268 11.2232 +1 1 1 367 0.367 323.15 0 0 0.02936 -0.0128946 -0.0128946 0 0 0 798.546 2.71254e-07 2.71253e-07 0 0 0 16.4585 4.72086 0.462904 11.2747 +1 1 1 368 0.368 323.15 0 0 0.02944 -0.012933 -0.012933 0 0 0 799.28 2.71254e-07 2.71253e-07 0 0 0 16.5224 4.72954 0.466555 11.3263 +1 1 1 369 0.369 323.15 0 0 0.02952 -0.0129713 -0.0129713 0 0 0 800.012 2.71254e-07 2.71252e-07 0 0 0 16.5864 4.73822 0.470222 11.3779 +1 1 1 370 0.37 323.15 0 0 0.0296 -0.0130097 -0.0130097 0 0 0 800.744 2.71254e-07 2.71252e-07 0 0 0 16.6504 4.74689 0.473904 11.4296 +1 1 1 371 0.371 323.15 0 0 0.02968 -0.0130481 -0.0130481 0 0 0 801.474 2.71254e-07 2.71253e-07 0 0 0 16.7145 4.75555 0.477601 11.4813 +1 1 1 372 0.372 323.15 0 0 0.02976 -0.0130865 -0.0130865 0 0 0 802.203 2.71254e-07 2.71253e-07 0 0 0 16.7786 4.76421 0.481313 11.5331 +1 1 1 373 0.373 323.15 0 0 0.02984 -0.0131248 -0.0131248 0 0 0 802.931 2.71254e-07 2.71253e-07 0 0 0 16.8428 4.77286 0.485041 11.5849 +1 1 1 374 0.374 323.15 0 0 0.02992 -0.0131632 -0.0131632 0 0 0 803.658 2.71254e-07 2.71253e-07 0 0 0 16.9071 4.7815 0.488785 11.6368 +1 1 1 375 0.375 323.15 0 0 0.03 -0.0132016 -0.0132016 0 0 0 804.383 2.71254e-07 2.71253e-07 0 0 0 16.9714 4.79014 0.492543 11.6887 +1 1 1 376 0.376 323.15 0 0 0.03008 -0.01324 -0.01324 0 0 0 805.108 2.71254e-07 2.71253e-07 0 0 0 17.0358 4.79877 0.496317 11.7407 +1 1 1 377 0.377 323.15 0 0 0.03016 -0.0132783 -0.0132783 0 0 0 805.831 2.71254e-07 2.71253e-07 0 0 0 17.1002 4.80739 0.500107 11.7927 +1 1 1 378 0.378 323.15 0 0 0.03024 -0.0133167 -0.0133167 0 0 0 806.553 2.71254e-07 2.71253e-07 0 0 0 17.1647 4.81601 0.503911 11.8448 +1 1 1 379 0.379 323.15 0 0 0.03032 -0.0133551 -0.0133551 0 0 0 807.273 2.71254e-07 2.71253e-07 0 0 0 17.2293 4.82462 0.507732 11.8969 +1 1 1 380 0.38 323.15 0 0 0.0304 -0.0133935 -0.0133935 0 0 0 807.993 2.71254e-07 2.71253e-07 0 0 0 17.2939 4.83322 0.511567 11.9491 +1 1 1 381 0.381 323.15 0 0 0.03048 -0.0134319 -0.0134319 0 0 0 808.711 2.71255e-07 2.71253e-07 0 0 0 17.3586 4.84182 0.515418 12.0013 +1 1 1 382 0.382 323.15 0 0 0.03056 -0.0134703 -0.0134703 0 0 0 809.428 2.71255e-07 2.71253e-07 0 0 0 17.4233 4.85041 0.519284 12.0536 +1 1 1 383 0.383 323.15 0 0 0.03064 -0.0135087 -0.0135087 0 0 0 810.144 2.71255e-07 2.71253e-07 0 0 0 17.4881 4.859 0.523166 12.1059 +1 1 1 384 0.384 323.15 0 0 0.03072 -0.0135471 -0.0135471 0 0 0 810.859 2.71255e-07 2.71253e-07 0 0 0 17.5529 4.86758 0.527063 12.1583 +1 1 1 385 0.385 323.15 0 0 0.0308 -0.0135855 -0.0135855 0 0 0 811.573 2.71255e-07 2.71253e-07 0 0 0 17.6178 4.87615 0.530976 12.2107 +1 1 1 386 0.386 323.15 0 0 0.03088 -0.0136239 -0.0136239 0 0 0 812.286 2.71255e-07 2.71253e-07 0 0 0 17.6828 4.88472 0.534904 12.2631 +1 1 1 387 0.387 323.15 0 0 0.03096 -0.0136623 -0.0136623 0 0 0 812.997 2.71254e-07 2.71253e-07 0 0 0 17.7478 4.89328 0.538847 12.3157 +1 1 1 388 0.388 323.15 0 0 0.03104 -0.0137007 -0.0137007 0 0 0 813.708 2.71254e-07 2.71253e-07 0 0 0 17.8128 4.90183 0.542806 12.3682 +1 1 1 389 0.389 323.15 0 0 0.03112 -0.0137391 -0.0137391 0 0 0 814.417 2.71254e-07 2.71253e-07 0 0 0 17.878 4.91038 0.54678 12.4208 +1 1 1 390 0.39 323.15 0 0 0.0312 -0.0137776 -0.0137776 0 0 0 815.125 2.71254e-07 2.71253e-07 0 0 0 17.9432 4.91893 0.550769 12.4735 +1 1 1 391 0.391 323.15 0 0 0.03128 -0.013816 -0.013816 0 0 0 815.832 2.71254e-07 2.71253e-07 0 0 0 18.0084 4.92746 0.554775 12.5262 +1 1 1 392 0.392 323.15 0 0 0.03136 -0.0138544 -0.0138544 0 0 0 816.538 2.71254e-07 2.71253e-07 0 0 0 18.0737 4.93599 0.558795 12.5789 +1 1 1 393 0.393 323.15 0 0 0.03144 -0.0138928 -0.0138928 0 0 0 817.243 2.71254e-07 2.71253e-07 0 0 0 18.139 4.94452 0.562831 12.6317 +1 1 1 394 0.394 323.15 0 0 0.03152 -0.0139313 -0.0139313 0 0 0 817.947 2.71255e-07 2.71253e-07 0 0 0 18.2044 4.95304 0.566882 12.6845 +1 1 1 395 0.395 323.15 0 0 0.0316 -0.0139697 -0.0139697 0 0 0 818.649 2.71255e-07 2.71253e-07 0 0 0 18.2699 4.96155 0.570949 12.7374 +1 1 1 396 0.396 323.15 0 0 0.03168 -0.0140081 -0.0140081 0 0 0 819.351 2.71255e-07 2.71253e-07 0 0 0 18.3354 4.97006 0.575032 12.7903 +1 1 1 397 0.397 323.15 0 0 0.03176 -0.0140465 -0.0140465 0 0 0 820.052 2.71255e-07 2.71253e-07 0 0 0 18.401 4.97856 0.57913 12.8433 +1 1 1 398 0.398 323.15 0 0 0.03184 -0.014085 -0.014085 0 0 0 820.751 2.71255e-07 2.71253e-07 0 0 0 18.4666 4.98706 0.583243 12.8963 +1 1 1 399 0.399 323.15 0 0 0.03192 -0.0141234 -0.0141234 0 0 0 821.449 2.71254e-07 2.71253e-07 0 0 0 18.5323 4.99555 0.587372 12.9494 +1 1 1 400 0.4 323.15 0 0 0.032 -0.0141619 -0.0141619 0 0 0 822.147 2.71255e-07 2.71253e-07 0 0 0 18.5981 5.00404 0.591516 13.0025 +1 1 1 401 0.401 323.15 0 0 0.03208 -0.0142003 -0.0142003 0 0 0 822.843 2.71255e-07 2.71253e-07 0 0 0 18.6639 5.01252 0.595676 13.0557 +1 1 1 402 0.402 323.15 0 0 0.03216 -0.0142388 -0.0142388 0 0 0 823.538 2.71255e-07 2.71254e-07 0 0 0 18.7297 5.02099 0.599851 13.1089 +1 1 1 403 0.403 323.15 0 0 0.03224 -0.0142772 -0.0142772 0 0 0 824.233 2.71255e-07 2.71254e-07 0 0 0 18.7956 5.02946 0.604042 13.1621 +1 1 1 404 0.404 323.15 0 0 0.03232 -0.0143156 -0.0143156 0 0 0 824.926 2.71255e-07 2.71254e-07 0 0 0 18.8616 5.03793 0.608248 13.2154 +1 1 1 405 0.405 323.15 0 0 0.0324 -0.0143541 -0.0143541 0 0 0 825.618 2.71255e-07 2.71254e-07 0 0 0 18.9276 5.04638 0.61247 13.2688 +1 1 1 406 0.406 323.15 0 0 0.03248 -0.0143926 -0.0143926 0 0 0 826.309 2.71255e-07 2.71253e-07 0 0 0 18.9937 5.05484 0.616707 13.3222 +1 1 1 407 0.407 323.15 0 0 0.03256 -0.014431 -0.014431 0 0 0 827 2.71255e-07 2.71253e-07 0 0 0 19.0598 5.06328 0.62096 13.3756 +1 1 1 408 0.408 323.15 0 0 0.03264 -0.0144695 -0.0144695 0 0 0 827.689 2.71255e-07 2.71253e-07 0 0 0 19.126 5.07173 0.625228 13.4291 +1 1 1 409 0.409 323.15 0 0 0.03272 -0.0145079 -0.0145079 0 0 0 828.377 2.71255e-07 2.71253e-07 0 0 0 19.1923 5.08016 0.629512 13.4826 +1 1 1 410 0.41 323.15 0 0 0.0328 -0.0145464 -0.0145464 0 0 0 829.064 2.71255e-07 2.71253e-07 0 0 0 19.2586 5.0886 0.633811 13.5361 +1 1 1 411 0.411 323.15 0 0 0.03288 -0.0145849 -0.0145849 0 0 0 829.75 2.71255e-07 2.71253e-07 0 0 0 19.3249 5.09702 0.638126 13.5898 +1 1 1 412 0.412 323.15 0 0 0.03296 -0.0146233 -0.0146233 0 0 0 830.435 2.71255e-07 2.71254e-07 0 0 0 19.3913 5.10544 0.642457 13.6434 +1 1 1 413 0.413 323.15 0 0 0.03304 -0.0146618 -0.0146618 0 0 0 831.12 2.71255e-07 2.71253e-07 0 0 0 19.4578 5.11386 0.646803 13.6971 +1 1 1 414 0.414 323.15 0 0 0.03312 -0.0147003 -0.0147003 0 0 0 831.803 2.71255e-07 2.71253e-07 0 0 0 19.5243 5.12227 0.651164 13.7509 +1 1 1 415 0.415 323.15 0 0 0.0332 -0.0147387 -0.0147387 0 0 0 832.485 2.71255e-07 2.71254e-07 0 0 0 19.5909 5.13068 0.655541 13.8046 +1 1 1 416 0.416 323.15 0 0 0.03328 -0.0147772 -0.0147772 0 0 0 833.166 2.71255e-07 2.71254e-07 0 0 0 19.6575 5.13908 0.659934 13.8585 +1 1 1 417 0.417 323.15 0 0 0.03336 -0.0148157 -0.0148157 0 0 0 833.847 2.71256e-07 2.71254e-07 0 0 0 19.7242 5.14748 0.664342 13.9124 +1 1 1 418 0.418 323.15 0 0 0.03344 -0.0148542 -0.0148542 0 0 0 834.526 2.71256e-07 2.71254e-07 0 0 0 19.7909 5.15587 0.668766 13.9663 +1 1 1 419 0.419 323.15 0 0 0.03352 -0.0148927 -0.0148927 0 0 0 835.205 2.71256e-07 2.71254e-07 0 0 0 19.8577 5.16425 0.673206 14.0202 +1 1 1 420 0.42 323.15 0 0 0.0336 -0.0149312 -0.0149312 0 0 0 835.882 2.71256e-07 2.71254e-07 0 0 0 19.9245 5.17263 0.677661 14.0742 +1 1 1 421 0.421 323.15 0 0 0.03368 -0.0149696 -0.0149696 0 0 0 836.559 2.71256e-07 2.71254e-07 0 0 0 19.9914 5.18101 0.682131 14.1283 +1 1 1 422 0.422 323.15 0 0 0.03376 -0.0150081 -0.0150081 0 0 0 837.234 2.71256e-07 2.71254e-07 0 0 0 20.0584 5.18938 0.686617 14.1824 +1 1 1 423 0.423 323.15 0 0 0.03384 -0.0150466 -0.0150466 0 0 0 837.909 2.71256e-07 2.71254e-07 0 0 0 20.1254 5.19775 0.691119 14.2365 +1 1 1 424 0.424 323.15 0 0 0.03392 -0.0150851 -0.0150851 0 0 0 838.583 2.71256e-07 2.71254e-07 0 0 0 20.1925 5.20611 0.695636 14.2907 +1 1 1 425 0.425 323.15 0 0 0.034 -0.0151236 -0.0151236 0 0 0 839.255 2.71256e-07 2.71254e-07 0 0 0 20.2596 5.21447 0.700169 14.3449 +1 1 1 426 0.426 323.15 0 0 0.03408 -0.0151621 -0.0151621 0 0 0 839.927 2.71256e-07 2.71254e-07 0 0 0 20.3267 5.22282 0.704718 14.3992 +1 1 1 427 0.427 323.15 0 0 0.03416 -0.0152006 -0.0152006 0 0 0 840.598 2.71256e-07 2.71254e-07 0 0 0 20.394 5.23117 0.709282 14.4535 +1 1 1 428 0.428 323.15 0 0 0.03424 -0.0152391 -0.0152391 0 0 0 841.268 2.71256e-07 2.71254e-07 0 0 0 20.4612 5.23951 0.713862 14.5079 +1 1 1 429 0.429 323.15 0 0 0.03432 -0.0152776 -0.0152776 0 0 0 841.937 2.71256e-07 2.71254e-07 0 0 0 20.5286 5.24785 0.718457 14.5623 +1 1 1 430 0.43 323.15 0 0 0.0344 -0.0153161 -0.0153161 0 0 0 842.606 2.71256e-07 2.71254e-07 0 0 0 20.5959 5.25618 0.723068 14.6167 +1 1 1 431 0.431 323.15 0 0 0.03448 -0.0153546 -0.0153546 0 0 0 843.273 2.71256e-07 2.71254e-07 0 0 0 20.6634 5.26451 0.727694 14.6712 +1 1 1 432 0.432 323.15 0 0 0.03456 -0.0153931 -0.0153931 0 0 0 843.94 2.71256e-07 2.71254e-07 0 0 0 20.7309 5.27284 0.732337 14.7257 +1 1 1 433 0.433 323.15 0 0 0.03464 -0.0154317 -0.0154317 0 0 0 844.605 2.71256e-07 2.71254e-07 0 0 0 20.7984 5.28116 0.736995 14.7803 +1 1 1 434 0.434 323.15 0 0 0.03472 -0.0154702 -0.0154702 0 0 0 845.27 2.71256e-07 2.71255e-07 0 0 0 20.866 5.28947 0.741668 14.8349 +1 1 1 435 0.435 323.15 0 0 0.0348 -0.0155087 -0.0155087 0 0 0 845.934 2.71256e-07 2.71254e-07 0 0 0 20.9337 5.29779 0.746357 14.8895 +1 1 1 436 0.436 323.15 0 0 0.03488 -0.0155472 -0.0155472 0 0 0 846.597 2.71256e-07 2.71254e-07 0 0 0 21.0014 5.30609 0.751062 14.9442 +1 1 1 437 0.437 323.15 0 0 0.03496 -0.0155857 -0.0155857 0 0 0 847.259 2.71256e-07 2.71254e-07 0 0 0 21.0691 5.31439 0.755782 14.9989 +1 1 1 438 0.438 323.15 0 0 0.03504 -0.0156242 -0.0156242 0 0 0 847.92 2.71256e-07 2.71254e-07 0 0 0 21.1369 5.32269 0.760518 15.0537 +1 1 1 439 0.439 323.15 0 0 0.03512 -0.0156628 -0.0156628 0 0 0 848.58 2.71256e-07 2.71254e-07 0 0 0 21.2048 5.33099 0.76527 15.1085 +1 1 1 440 0.44 323.15 0 0 0.0352 -0.0157013 -0.0157013 0 0 0 849.24 2.71256e-07 2.71254e-07 0 0 0 21.2727 5.33928 0.770038 15.1634 +1 1 1 441 0.441 323.15 0 0 0.03528 -0.0157398 -0.0157398 0 0 0 849.898 2.71256e-07 2.71254e-07 0 0 0 21.3407 5.34756 0.774821 15.2183 +1 1 1 442 0.442 323.15 0 0 0.03536 -0.0157783 -0.0157783 0 0 0 850.556 2.71256e-07 2.71254e-07 0 0 0 21.4087 5.35584 0.779619 15.2732 +1 1 1 443 0.443 323.15 0 0 0.03544 -0.0158169 -0.0158169 0 0 0 851.213 2.71256e-07 2.71254e-07 0 0 0 21.4767 5.36412 0.784434 15.3282 +1 1 1 444 0.444 323.15 0 0 0.03552 -0.0158554 -0.0158554 0 0 0 851.869 2.71256e-07 2.71255e-07 0 0 0 21.5449 5.37239 0.789264 15.3832 +1 1 1 445 0.445 323.15 0 0 0.0356 -0.0158939 -0.0158939 0 0 0 852.524 2.71257e-07 2.71255e-07 0 0 0 21.613 5.38066 0.79411 15.4383 +1 1 1 446 0.446 323.15 0 0 0.03568 -0.0159325 -0.0159325 0 0 0 853.179 2.71257e-07 2.71255e-07 0 0 0 21.6813 5.38892 0.798971 15.4934 +1 1 1 447 0.447 323.15 0 0 0.03576 -0.015971 -0.015971 0 0 0 853.832 2.71257e-07 2.71255e-07 0 0 0 21.7495 5.39718 0.803848 15.5485 +1 1 1 448 0.448 323.15 0 0 0.03584 -0.0160096 -0.0160096 0 0 0 854.485 2.71256e-07 2.71255e-07 0 0 0 21.8179 5.40544 0.808741 15.6037 +1 1 1 449 0.449 323.15 0 0 0.03592 -0.0160481 -0.0160481 0 0 0 855.137 2.71256e-07 2.71255e-07 0 0 0 21.8863 5.41369 0.813649 15.6589 +1 1 1 450 0.45 323.15 0 0 0.036 -0.0160866 -0.0160866 0 0 0 855.788 2.71256e-07 2.71254e-07 0 0 0 21.9547 5.42193 0.818574 15.7142 +1 1 1 451 0.451 323.15 0 0 0.03608 -0.0161252 -0.0161252 0 0 0 856.438 2.71256e-07 2.71255e-07 0 0 0 22.0232 5.43018 0.823514 15.7695 +1 1 1 452 0.452 323.15 0 0 0.03616 -0.0161637 -0.0161637 0 0 0 857.088 2.71256e-07 2.71254e-07 0 0 0 22.0917 5.43842 0.828469 15.8248 +1 1 1 453 0.453 323.15 0 0 0.03624 -0.0162023 -0.0162023 0 0 0 857.736 2.71256e-07 2.71254e-07 0 0 0 22.1603 5.44665 0.833441 15.8802 +1 1 1 454 0.454 323.15 0 0 0.03632 -0.0162408 -0.0162408 0 0 0 858.384 2.71255e-07 2.71254e-07 0 0 0 22.229 5.45488 0.838428 15.9357 +1 1 1 455 0.455 323.15 0 0 0.0364 -0.0162794 -0.0162794 0 0 0 859.031 2.71255e-07 2.71254e-07 0 0 0 22.2977 5.46311 0.84343 15.9911 +1 1 1 456 0.456 323.15 0 0 0.03648 -0.016318 -0.016318 0 0 0 859.678 2.71255e-07 2.71253e-07 0 0 0 22.3664 5.47133 0.848449 16.0466 +1 1 1 457 0.457 323.15 0 0 0.03656 -0.0163565 -0.0163565 0 0 0 860.323 2.71255e-07 2.71254e-07 0 0 0 22.4352 5.47955 0.853483 16.1022 +1 1 1 458 0.458 323.15 0 0 0.03664 -0.0163951 -0.0163951 0 0 0 860.968 2.71255e-07 2.71254e-07 0 0 0 22.5041 5.48776 0.858533 16.1578 +1 1 1 459 0.459 323.15 0 0 0.03672 -0.0164336 -0.0164336 0 0 0 861.612 2.71255e-07 2.71254e-07 0 0 0 22.573 5.49598 0.863599 16.2134 +1 1 1 460 0.46 323.15 0 0 0.0368 -0.0164722 -0.0164722 0 0 0 862.255 2.71256e-07 2.71254e-07 0 0 0 22.6419 5.50418 0.86868 16.2691 +1 1 1 461 0.461 323.15 0 0 0.03688 -0.0165108 -0.0165108 0 0 0 862.897 2.71255e-07 2.71254e-07 0 0 0 22.7109 5.51239 0.873777 16.3248 +1 1 1 462 0.462 323.15 0 0 0.03696 -0.0165493 -0.0165493 0 0 0 863.539 2.71255e-07 2.71254e-07 0 0 0 22.78 5.52059 0.87889 16.3805 +1 1 1 463 0.463 323.15 0 0 0.03704 -0.0165879 -0.0165879 0 0 0 864.179 2.71256e-07 2.71254e-07 0 0 0 22.8491 5.52878 0.884019 16.4363 +1 1 1 464 0.464 323.15 0 0 0.03712 -0.0166265 -0.0166265 0 0 0 864.819 2.71256e-07 2.71254e-07 0 0 0 22.9183 5.53697 0.889163 16.4921 +1 1 1 465 0.465 323.15 0 0 0.0372 -0.016665 -0.016665 0 0 0 865.459 2.71256e-07 2.71254e-07 0 0 0 22.9875 5.54516 0.894323 16.548 +1 1 1 466 0.466 323.15 0 0 0.03728 -0.0167036 -0.0167036 0 0 0 866.097 2.71256e-07 2.71254e-07 0 0 0 23.0567 5.55335 0.899499 16.6039 +1 1 1 467 0.467 323.15 0 0 0.03736 -0.0167422 -0.0167422 0 0 0 866.735 2.71255e-07 2.71254e-07 0 0 0 23.126 5.56153 0.904691 16.6598 +1 1 1 468 0.468 323.15 0 0 0.03744 -0.0167807 -0.0167807 0 0 0 867.372 2.71255e-07 2.71254e-07 0 0 0 23.1954 5.56971 0.909898 16.7158 +1 1 1 469 0.469 323.15 0 0 0.03752 -0.0168193 -0.0168193 0 0 0 868.008 2.71255e-07 2.71254e-07 0 0 0 23.2648 5.57788 0.915121 16.7718 +1 1 1 470 0.47 323.15 0 0 0.0376 -0.0168579 -0.0168579 0 0 0 868.643 2.71255e-07 2.71254e-07 0 0 0 23.3343 5.58605 0.92036 16.8279 +1 1 1 471 0.471 323.15 0 0 0.03768 -0.0168965 -0.0168965 0 0 0 869.278 2.71256e-07 2.71254e-07 0 0 0 23.4038 5.59422 0.925615 16.884 +1 1 1 472 0.472 323.15 0 0 0.03776 -0.0169351 -0.0169351 0 0 0 869.912 2.71256e-07 2.71254e-07 0 0 0 23.4734 5.60238 0.930886 16.9401 +1 1 1 473 0.473 323.15 0 0 0.03784 -0.0169737 -0.0169737 0 0 0 870.545 2.71255e-07 2.71253e-07 0 0 0 23.543 5.61054 0.936172 16.9963 +1 1 1 474 0.474 323.15 0 0 0.03792 -0.0170122 -0.0170122 0 0 0 871.178 2.71255e-07 2.71253e-07 0 0 0 23.6127 5.61869 0.941474 17.0525 +1 1 1 475 0.475 323.15 0 0 0.038 -0.0170508 -0.0170508 0 0 0 871.809 2.71255e-07 2.71253e-07 0 0 0 23.6824 5.62684 0.946792 17.1087 +1 1 1 476 0.476 323.15 0 0 0.03808 -0.0170894 -0.0170894 0 0 0 872.44 2.71255e-07 2.71253e-07 0 0 0 23.7522 5.63499 0.952125 17.165 +1 1 1 477 0.477 323.15 0 0 0.03816 -0.017128 -0.017128 0 0 0 873.071 2.71255e-07 2.71253e-07 0 0 0 23.822 5.64314 0.957475 17.2214 +1 1 1 478 0.478 323.15 0 0 0.03824 -0.0171666 -0.0171666 0 0 0 873.7 2.71255e-07 2.71253e-07 0 0 0 23.8918 5.65128 0.96284 17.2777 +1 1 1 479 0.479 323.15 0 0 0.03832 -0.0172052 -0.0172052 0 0 0 874.329 2.71255e-07 2.71253e-07 0 0 0 23.9618 5.65942 0.968221 17.3341 +1 1 1 480 0.48 323.15 0 0 0.0384 -0.0172438 -0.0172438 0 0 0 874.957 2.71255e-07 2.71253e-07 0 0 0 24.0317 5.66755 0.973618 17.3906 +1 1 1 481 0.481 323.15 0 0 0.03848 -0.0172824 -0.0172824 0 0 0 875.585 2.71255e-07 2.71253e-07 0 0 0 24.1018 5.67568 0.979031 17.447 +1 1 1 482 0.482 323.15 0 0 0.03856 -0.017321 -0.017321 0 0 0 876.211 2.71256e-07 2.71254e-07 0 0 0 24.1718 5.68381 0.984459 17.5036 +1 1 1 483 0.483 323.15 0 0 0.03864 -0.0173596 -0.0173596 0 0 0 876.837 2.71256e-07 2.71254e-07 0 0 0 24.242 5.69194 0.989903 17.5601 +1 1 1 484 0.484 323.15 0 0 0.03872 -0.0173982 -0.0173982 0 0 0 877.463 2.71255e-07 2.71253e-07 0 0 0 24.3121 5.70006 0.995363 17.6167 +1 1 1 485 0.485 323.15 0 0 0.0388 -0.0174368 -0.0174368 0 0 0 878.087 2.71255e-07 2.71253e-07 0 0 0 24.3823 5.70817 1.00084 17.6733 +1 1 1 486 0.486 323.15 0 0 0.03888 -0.0174754 -0.0174754 0 0 0 878.711 2.71255e-07 2.71253e-07 0 0 0 24.4526 5.71629 1.00633 17.73 +1 1 1 487 0.487 323.15 0 0 0.03896 -0.017514 -0.017514 0 0 0 879.334 2.71256e-07 2.71254e-07 0 0 0 24.5229 5.7244 1.01184 17.7867 +1 1 1 488 0.488 323.15 0 0 0.03904 -0.0175526 -0.0175526 0 0 0 879.957 2.71256e-07 2.71254e-07 0 0 0 24.5933 5.73251 1.01736 17.8434 +1 1 1 489 0.489 323.15 0 0 0.03912 -0.0175912 -0.0175912 0 0 0 880.579 2.71256e-07 2.71253e-07 0 0 0 24.6637 5.74061 1.0229 17.9002 +1 1 1 490 0.49 323.15 0 0 0.0392 -0.0176298 -0.0176298 0 0 0 881.2 2.71256e-07 2.71254e-07 0 0 0 24.7342 5.74871 1.02846 17.957 +1 1 1 491 0.491 323.15 0 0 0.03928 -0.0176684 -0.0176684 0 0 0 881.82 2.71256e-07 2.71254e-07 0 0 0 24.8047 5.75681 1.03403 18.0139 +1 1 1 492 0.492 323.15 0 0 0.03936 -0.0177071 -0.0177071 0 0 0 882.44 2.71256e-07 2.71253e-07 0 0 0 24.8753 5.76491 1.03961 18.0708 +1 1 1 493 0.493 323.15 0 0 0.03944 -0.0177457 -0.0177457 0 0 0 883.059 2.71255e-07 2.71253e-07 0 0 0 24.9459 5.773 1.04522 18.1277 +1 1 1 494 0.494 323.15 0 0 0.03952 -0.0177843 -0.0177843 0 0 0 883.678 2.71255e-07 2.71253e-07 0 0 0 25.0166 5.78109 1.05083 18.1847 +1 1 1 495 0.495 323.15 0 0 0.0396 -0.0178229 -0.0178229 0 0 0 884.295 2.71255e-07 2.71253e-07 0 0 0 25.0873 5.78917 1.05647 18.2417 +1 1 1 496 0.496 323.15 0 0 0.03968 -0.0178615 -0.0178615 0 0 0 884.912 2.71255e-07 2.71253e-07 0 0 0 25.1581 5.79725 1.06212 18.2987 +1 1 1 497 0.497 323.15 0 0 0.03976 -0.0179002 -0.0179002 0 0 0 885.529 2.71255e-07 2.71253e-07 0 0 0 25.2289 5.80533 1.06779 18.3558 +1 1 1 498 0.498 323.15 0 0 0.03984 -0.0179388 -0.0179388 0 0 0 886.144 2.71256e-07 2.71253e-07 0 0 0 25.2998 5.81341 1.07347 18.4129 +1 1 1 499 0.499 323.15 0 0 0.03992 -0.0179774 -0.0179774 0 0 0 886.759 2.71256e-07 2.71253e-07 0 0 0 25.3707 5.82148 1.07916 18.47 +1 1 1 500 0.5 323.15 0 0 0.04 -0.018016 -0.018016 0 0 0 887.374 2.71256e-07 2.71253e-07 0 0 0 25.4416 5.82955 1.08488 18.5272 +1 1 1 501 0.501 323.15 0 0 0.04008 -0.0180547 -0.0180547 0 0 0 887.988 2.71255e-07 2.71253e-07 0 0 0 25.5127 5.83762 1.09061 18.5844 +1 1 1 502 0.502 323.15 0 0 0.04016 -0.0180933 -0.0180933 0 0 0 888.601 2.71255e-07 2.71253e-07 0 0 0 25.5837 5.84568 1.09635 18.6417 +1 1 1 503 0.503 323.15 0 0 0.04024 -0.0181319 -0.0181319 0 0 0 889.213 2.71255e-07 2.71252e-07 0 0 0 25.6548 5.85374 1.10211 18.699 +1 1 1 504 0.504 323.15 0 0 0.04032 -0.0181705 -0.0181705 0 0 0 889.825 2.71254e-07 2.71252e-07 0 0 0 25.726 5.8618 1.10789 18.7563 +1 1 1 505 0.505 323.15 0 0 0.0404 -0.0182092 -0.0182092 0 0 0 890.436 2.71254e-07 2.71252e-07 0 0 0 25.7972 5.86985 1.11368 18.8137 +1 1 1 506 0.506 323.15 0 0 0.04048 -0.0182478 -0.0182478 0 0 0 891.047 2.71255e-07 2.71252e-07 0 0 0 25.8685 5.87791 1.11949 18.8711 +1 1 1 507 0.507 323.15 0 0 0.04056 -0.0182865 -0.0182865 0 0 0 891.656 2.71255e-07 2.71252e-07 0 0 0 25.9398 5.88595 1.12532 18.9285 +1 1 1 508 0.508 323.15 0 0 0.04064 -0.0183251 -0.0183251 0 0 0 892.266 2.71255e-07 2.71252e-07 0 0 0 26.0111 5.894 1.13116 18.986 +1 1 1 509 0.509 323.15 0 0 0.04072 -0.0183637 -0.0183637 0 0 0 892.874 2.71255e-07 2.71252e-07 0 0 0 26.0825 5.90204 1.13702 19.0435 +1 1 1 510 0.51 323.15 0 0 0.0408 -0.0184024 -0.0184024 0 0 0 893.482 2.71255e-07 2.71253e-07 0 0 0 26.154 5.91008 1.14289 19.101 +1 1 1 511 0.511 323.15 0 0 0.04088 -0.018441 -0.018441 0 0 0 894.089 2.71255e-07 2.71253e-07 0 0 0 26.2255 5.91812 1.14878 19.1586 +1 1 1 512 0.512 323.15 0 0 0.04096 -0.0184797 -0.0184797 0 0 0 894.696 2.71255e-07 2.71253e-07 0 0 0 26.297 5.92615 1.15468 19.2162 +1 1 1 513 0.513 323.15 0 0 0.04104 -0.0185183 -0.0185183 0 0 0 895.302 2.71255e-07 2.71253e-07 0 0 0 26.3686 5.93419 1.1606 19.2739 +1 1 1 514 0.514 323.15 0 0 0.04112 -0.0185569 -0.0185569 0 0 0 895.908 2.71255e-07 2.71253e-07 0 0 0 26.4403 5.94221 1.16654 19.3315 +1 1 1 515 0.515 323.15 0 0 0.0412 -0.0185956 -0.0185956 0 0 0 896.512 2.71255e-07 2.71253e-07 0 0 0 26.512 5.95024 1.17249 19.3893 +1 1 1 516 0.516 323.15 0 0 0.04128 -0.0186342 -0.0186342 0 0 0 897.117 2.71256e-07 2.71253e-07 0 0 0 26.5837 5.95826 1.17846 19.447 +1 1 1 517 0.517 323.15 0 0 0.04136 -0.0186729 -0.0186729 0 0 0 897.72 2.71255e-07 2.71252e-07 0 0 0 26.6555 5.96628 1.18444 19.5048 +1 1 1 518 0.518 323.15 0 0 0.04144 -0.0187115 -0.0187115 0 0 0 898.323 2.71255e-07 2.71252e-07 0 0 0 26.7274 5.9743 1.19044 19.5626 +1 1 1 519 0.519 323.15 0 0 0.04152 -0.0187502 -0.0187502 0 0 0 898.926 2.71255e-07 2.71252e-07 0 0 0 26.7993 5.98231 1.19646 19.6205 +1 1 1 520 0.52 323.15 0 0 0.0416 -0.0187889 -0.0187889 0 0 0 899.527 2.71255e-07 2.71252e-07 0 0 0 26.8712 5.99033 1.20249 19.6784 +1 1 1 521 0.521 323.15 0 0 0.04168 -0.0188275 -0.0188275 0 0 0 900.128 2.71256e-07 2.71253e-07 0 0 0 26.9432 5.99834 1.20853 19.7363 +1 1 1 522 0.522 323.15 0 0 0.04176 -0.0188662 -0.0188662 0 0 0 900.729 2.71256e-07 2.71253e-07 0 0 0 27.0152 6.00634 1.2146 19.7943 +1 1 1 523 0.523 323.15 0 0 0.04184 -0.0189048 -0.0189048 0 0 0 901.329 2.71256e-07 2.71253e-07 0 0 0 27.0873 6.01435 1.22068 19.8523 +1 1 1 524 0.524 323.15 0 0 0.04192 -0.0189435 -0.0189435 0 0 0 901.928 2.71256e-07 2.71253e-07 0 0 0 27.1594 6.02235 1.22677 19.9103 +1 1 1 525 0.525 323.15 0 0 0.042 -0.0189821 -0.0189821 0 0 0 902.527 2.71256e-07 2.71253e-07 0 0 0 27.2316 6.03034 1.23288 19.9684 +1 1 1 526 0.526 323.15 0 0 0.04208 -0.0190208 -0.0190208 0 0 0 903.125 2.71256e-07 2.71253e-07 0 0 0 27.3038 6.03834 1.23901 20.0265 +1 1 1 527 0.527 323.15 0 0 0.04216 -0.0190595 -0.0190595 0 0 0 903.723 2.71256e-07 2.71253e-07 0 0 0 27.3761 6.04633 1.24515 20.0846 +1 1 1 528 0.528 323.15 0 0 0.04224 -0.0190981 -0.0190981 0 0 0 904.32 2.71255e-07 2.71253e-07 0 0 0 27.4484 6.05432 1.25131 20.1428 +1 1 1 529 0.529 323.15 0 0 0.04232 -0.0191368 -0.0191368 0 0 0 904.916 2.71255e-07 2.71253e-07 0 0 0 27.5208 6.06231 1.25749 20.201 +1 1 1 530 0.53 323.15 0 0 0.0424 -0.0191755 -0.0191755 0 0 0 905.512 2.71255e-07 2.71253e-07 0 0 0 27.5932 6.0703 1.26368 20.2592 +1 1 1 531 0.531 323.15 0 0 0.04248 -0.0192141 -0.0192141 0 0 0 906.107 2.71255e-07 2.71252e-07 0 0 0 27.6657 6.07828 1.26989 20.3175 +1 1 1 532 0.532 323.15 0 0 0.04256 -0.0192528 -0.0192528 0 0 0 906.701 2.71255e-07 2.71252e-07 0 0 0 27.7382 6.08626 1.27611 20.3758 +1 1 1 533 0.533 323.15 0 0 0.04264 -0.0192915 -0.0192915 0 0 0 907.296 2.71254e-07 2.71252e-07 0 0 0 27.8107 6.09424 1.28235 20.4342 +1 1 1 534 0.534 323.15 0 0 0.04272 -0.0193302 -0.0193302 0 0 0 907.889 2.71255e-07 2.71252e-07 0 0 0 27.8834 6.10221 1.2886 20.4925 +1 1 1 535 0.535 323.15 0 0 0.0428 -0.0193688 -0.0193688 0 0 0 908.482 2.71255e-07 2.71253e-07 0 0 0 27.956 6.11018 1.29487 20.551 +1 1 1 536 0.536 323.15 0 0 0.04288 -0.0194075 -0.0194075 0 0 0 909.074 2.71255e-07 2.71252e-07 0 0 0 28.0287 6.11815 1.30116 20.6094 +1 1 1 537 0.537 323.15 0 0 0.04296 -0.0194462 -0.0194462 0 0 0 909.666 2.71255e-07 2.71252e-07 0 0 0 28.1015 6.12612 1.30746 20.6679 +1 1 1 538 0.538 323.15 0 0 0.04304 -0.0194849 -0.0194849 0 0 0 910.257 2.71255e-07 2.71252e-07 0 0 0 28.1743 6.13409 1.31378 20.7264 +1 1 1 539 0.539 323.15 0 0 0.04312 -0.0195235 -0.0195235 0 0 0 910.848 2.71255e-07 2.71252e-07 0 0 0 28.2471 6.14205 1.32012 20.7849 +1 1 1 540 0.54 323.15 0 0 0.0432 -0.0195622 -0.0195622 0 0 0 911.438 2.71255e-07 2.71252e-07 0 0 0 28.32 6.15001 1.32647 20.8435 +1 1 1 541 0.541 323.15 0 0 0.04328 -0.0196009 -0.0196009 0 0 0 912.027 2.71255e-07 2.71252e-07 0 0 0 28.3929 6.15797 1.33283 20.9021 +1 1 1 542 0.542 323.15 0 0 0.04336 -0.0196396 -0.0196396 0 0 0 912.616 2.71255e-07 2.71252e-07 0 0 0 28.4659 6.16592 1.33922 20.9608 +1 1 1 543 0.543 323.15 0 0 0.04344 -0.0196783 -0.0196783 0 0 0 913.204 2.71255e-07 2.71252e-07 0 0 0 28.539 6.17387 1.34561 21.0195 +1 1 1 544 0.544 323.15 0 0 0.04352 -0.019717 -0.019717 0 0 0 913.792 2.71255e-07 2.71252e-07 0 0 0 28.612 6.18182 1.35203 21.0782 +1 1 1 545 0.545 323.15 0 0 0.0436 -0.0197557 -0.0197557 0 0 0 914.379 2.71255e-07 2.71252e-07 0 0 0 28.6852 6.18977 1.35846 21.1369 +1 1 1 546 0.546 323.15 0 0 0.04368 -0.0197943 -0.0197943 0 0 0 914.966 2.71255e-07 2.71253e-07 0 0 0 28.7583 6.19772 1.36491 21.1957 +1 1 1 547 0.547 323.15 0 0 0.04376 -0.019833 -0.019833 0 0 0 915.552 2.71255e-07 2.71252e-07 0 0 0 28.8316 6.20566 1.37137 21.2545 +1 1 1 548 0.548 323.15 0 0 0.04384 -0.0198717 -0.0198717 0 0 0 916.138 2.71255e-07 2.71252e-07 0 0 0 28.9048 6.2136 1.37785 21.3134 +1 1 1 549 0.549 323.15 0 0 0.04392 -0.0199104 -0.0199104 0 0 0 916.723 2.71255e-07 2.71252e-07 0 0 0 28.9781 6.22154 1.38434 21.3723 +1 1 1 550 0.55 323.15 0 0 0.044 -0.0199491 -0.0199491 0 0 0 917.307 2.71255e-07 2.71253e-07 0 0 0 29.0515 6.22948 1.39085 21.4312 +1 1 1 551 0.551 323.15 0 0 0.04408 -0.0199878 -0.0199878 0 0 0 917.891 2.71255e-07 2.71253e-07 0 0 0 29.1249 6.23741 1.39738 21.4901 +1 1 1 552 0.552 323.15 0 0 0.04416 -0.0200265 -0.0200265 0 0 0 918.475 2.71255e-07 2.71252e-07 0 0 0 29.1984 6.24534 1.40392 21.5491 +1 1 1 553 0.553 323.15 0 0 0.04424 -0.0200652 -0.0200652 0 0 0 919.058 2.71255e-07 2.71252e-07 0 0 0 29.2719 6.25327 1.41048 21.6081 +1 1 1 554 0.554 323.15 0 0 0.04432 -0.0201039 -0.0201039 0 0 0 919.64 2.71255e-07 2.71253e-07 0 0 0 29.3454 6.2612 1.41705 21.6672 +1 1 1 555 0.555 323.15 0 0 0.0444 -0.0201426 -0.0201426 0 0 0 920.222 2.71255e-07 2.71253e-07 0 0 0 29.419 6.26912 1.42365 21.7262 +1 1 1 556 0.556 323.15 0 0 0.04448 -0.0201813 -0.0201813 0 0 0 920.803 2.71255e-07 2.71253e-07 0 0 0 29.4926 6.27705 1.43025 21.7853 +1 1 1 557 0.557 323.15 0 0 0.04456 -0.02022 -0.02022 0 0 0 921.384 2.71255e-07 2.71253e-07 0 0 0 29.5663 6.28497 1.43687 21.8445 +1 1 1 558 0.558 323.15 0 0 0.04464 -0.0202587 -0.0202587 0 0 0 921.964 2.71255e-07 2.71253e-07 0 0 0 29.6401 6.29288 1.44351 21.9037 +1 1 1 559 0.559 323.15 0 0 0.04472 -0.0202974 -0.0202974 0 0 0 922.544 2.71255e-07 2.71253e-07 0 0 0 29.7138 6.3008 1.45017 21.9629 +1 1 1 560 0.56 323.15 0 0 0.0448 -0.0203361 -0.0203361 0 0 0 923.123 2.71255e-07 2.71254e-07 0 0 0 29.7877 6.30871 1.45684 22.0221 +1 1 1 561 0.561 323.15 0 0 0.04488 -0.0203748 -0.0203748 0 0 0 923.702 2.71255e-07 2.71253e-07 0 0 0 29.8615 6.31663 1.46353 22.0814 +1 1 1 562 0.562 323.15 0 0 0.04496 -0.0204135 -0.0204135 0 0 0 924.28 2.71255e-07 2.71253e-07 0 0 0 29.9355 6.32454 1.47023 22.1407 +1 1 1 563 0.563 323.15 0 0 0.04504 -0.0204522 -0.0204522 0 0 0 924.857 2.71255e-07 2.71254e-07 0 0 0 30.0094 6.33244 1.47695 22.2 +1 1 1 564 0.564 323.15 0 0 0.04512 -0.0204909 -0.0204909 0 0 0 925.434 2.71255e-07 2.71254e-07 0 0 0 30.0834 6.34035 1.48368 22.2594 +1 1 1 565 0.565 323.15 0 0 0.0452 -0.0205296 -0.0205296 0 0 0 926.011 2.71255e-07 2.71253e-07 0 0 0 30.1575 6.34825 1.49043 22.3188 +1 1 1 566 0.566 323.15 0 0 0.04528 -0.0205684 -0.0205684 0 0 0 926.587 2.71255e-07 2.71253e-07 0 0 0 30.2316 6.35615 1.4972 22.3783 +1 1 1 567 0.567 323.15 0 0 0.04536 -0.0206071 -0.0206071 0 0 0 927.163 2.71255e-07 2.71253e-07 0 0 0 30.3058 6.36405 1.50398 22.4377 +1 1 1 568 0.568 323.15 0 0 0.04544 -0.0206458 -0.0206458 0 0 0 927.738 2.71255e-07 2.71253e-07 0 0 0 30.3799 6.37195 1.51078 22.4972 +1 1 1 569 0.569 323.15 0 0 0.04552 -0.0206845 -0.0206845 0 0 0 928.312 2.71256e-07 2.71253e-07 0 0 0 30.4542 6.37984 1.5176 22.5568 +1 1 1 570 0.57 323.15 0 0 0.0456 -0.0207232 -0.0207232 0 0 0 928.886 2.71255e-07 2.71253e-07 0 0 0 30.5285 6.38773 1.52443 22.6163 +1 1 1 571 0.571 323.15 0 0 0.04568 -0.0207619 -0.0207619 0 0 0 929.46 2.71256e-07 2.71253e-07 0 0 0 30.6028 6.39562 1.53128 22.6759 +1 1 1 572 0.572 323.15 0 0 0.04576 -0.0208007 -0.0208007 0 0 0 930.033 2.71255e-07 2.71253e-07 0 0 0 30.6772 6.40351 1.53814 22.7355 +1 1 1 573 0.573 323.15 0 0 0.04584 -0.0208394 -0.0208394 0 0 0 930.605 2.71255e-07 2.71253e-07 0 0 0 30.7516 6.4114 1.54502 22.7952 +1 1 1 574 0.574 323.15 0 0 0.04592 -0.0208781 -0.0208781 0 0 0 931.177 2.71255e-07 2.71253e-07 0 0 0 30.8261 6.41928 1.55191 22.8549 +1 1 1 575 0.575 323.15 0 0 0.046 -0.0209168 -0.0209168 0 0 0 931.749 2.71255e-07 2.71253e-07 0 0 0 30.9006 6.42716 1.55882 22.9146 +1 1 1 576 0.576 323.15 0 0 0.04608 -0.0209555 -0.0209555 0 0 0 932.32 2.71256e-07 2.71253e-07 0 0 0 30.9752 6.43504 1.56575 22.9744 +1 1 1 577 0.577 323.15 0 0 0.04616 -0.0209943 -0.0209943 0 0 0 932.89 2.71256e-07 2.71253e-07 0 0 0 31.0498 6.44292 1.5727 23.0342 +1 1 1 578 0.578 323.15 0 0 0.04624 -0.021033 -0.021033 0 0 0 933.46 2.71255e-07 2.71253e-07 0 0 0 31.1244 6.4508 1.57966 23.094 +1 1 1 579 0.579 323.15 0 0 0.04632 -0.0210717 -0.0210717 0 0 0 934.03 2.71256e-07 2.71253e-07 0 0 0 31.1991 6.45867 1.58663 23.1538 +1 1 1 580 0.58 323.15 0 0 0.0464 -0.0211104 -0.0211104 0 0 0 934.599 2.71256e-07 2.71254e-07 0 0 0 31.2739 6.46655 1.59362 23.2137 +1 1 1 581 0.581 323.15 0 0 0.04648 -0.0211492 -0.0211492 0 0 0 935.167 2.71256e-07 2.71254e-07 0 0 0 31.3487 6.47442 1.60063 23.2736 +1 1 1 582 0.582 323.15 0 0 0.04656 -0.0211879 -0.0211879 0 0 0 935.736 2.71256e-07 2.71255e-07 0 0 0 31.4235 6.48228 1.60765 23.3336 +1 1 1 583 0.583 323.15 0 0 0.04664 -0.0212266 -0.0212266 0 0 0 936.303 2.71256e-07 2.71254e-07 0 0 0 31.4984 6.49015 1.61469 23.3935 +1 1 1 584 0.584 323.15 0 0 0.04672 -0.0212654 -0.0212654 0 0 0 936.87 2.71256e-07 2.71254e-07 0 0 0 31.5733 6.49801 1.62175 23.4535 +1 1 1 585 0.585 323.15 0 0 0.0468 -0.0213041 -0.0213041 0 0 0 937.437 2.71256e-07 2.71254e-07 0 0 0 31.6483 6.50588 1.62882 23.5136 +1 1 1 586 0.586 323.15 0 0 0.04688 -0.0213428 -0.0213428 0 0 0 938.003 2.71256e-07 2.71254e-07 0 0 0 31.7233 6.51374 1.63591 23.5737 +1 1 1 587 0.587 323.15 0 0 0.04696 -0.0213816 -0.0213816 0 0 0 938.569 2.71256e-07 2.71254e-07 0 0 0 31.7984 6.5216 1.64302 23.6338 +1 1 1 588 0.588 323.15 0 0 0.04704 -0.0214203 -0.0214203 0 0 0 939.134 2.71256e-07 2.71254e-07 0 0 0 31.8735 6.52945 1.65014 23.6939 +1 1 1 589 0.589 323.15 0 0 0.04712 -0.021459 -0.021459 0 0 0 939.699 2.71256e-07 2.71254e-07 0 0 0 31.9486 6.53731 1.65727 23.754 +1 1 1 590 0.59 323.15 0 0 0.0472 -0.0214978 -0.0214978 0 0 0 940.263 2.71257e-07 2.71254e-07 0 0 0 32.0238 6.54516 1.66443 23.8142 +1 1 1 591 0.591 323.15 0 0 0.04728 -0.0215365 -0.0215365 0 0 0 940.827 2.71257e-07 2.71254e-07 0 0 0 32.0991 6.55301 1.67159 23.8745 +1 1 1 592 0.592 323.15 0 0 0.04736 -0.0215753 -0.0215753 0 0 0 941.39 2.71257e-07 2.71255e-07 0 0 0 32.1744 6.56086 1.67878 23.9347 +1 1 1 593 0.593 323.15 0 0 0.04744 -0.021614 -0.021614 0 0 0 941.953 2.71257e-07 2.71255e-07 0 0 0 32.2497 6.56871 1.68598 23.995 +1 1 1 594 0.594 323.15 0 0 0.04752 -0.0216527 -0.0216527 0 0 0 942.515 2.71257e-07 2.71255e-07 0 0 0 32.3251 6.57656 1.6932 24.0553 +1 1 1 595 0.595 323.15 0 0 0.0476 -0.0216915 -0.0216915 0 0 0 943.077 2.71257e-07 2.71255e-07 0 0 0 32.4005 6.5844 1.70043 24.1157 +1 1 1 596 0.596 323.15 0 0 0.04768 -0.0217302 -0.0217302 0 0 0 943.639 2.71257e-07 2.71255e-07 0 0 0 32.476 6.59224 1.70768 24.176 +1 1 1 597 0.597 323.15 0 0 0.04776 -0.021769 -0.021769 0 0 0 944.2 2.71257e-07 2.71254e-07 0 0 0 32.5515 6.60008 1.71494 24.2364 +1 1 1 598 0.598 323.15 0 0 0.04784 -0.0218077 -0.0218077 0 0 0 944.76 2.71257e-07 2.71254e-07 0 0 0 32.627 6.60792 1.72223 24.2969 +1 1 1 599 0.599 323.15 0 0 0.04792 -0.0218465 -0.0218465 0 0 0 945.32 2.71257e-07 2.71254e-07 0 0 0 32.7026 6.61576 1.72952 24.3574 +1 1 1 600 0.6 323.15 0 0 0.048 -0.0218852 -0.0218852 0 0 0 945.88 2.71257e-07 2.71254e-07 0 0 0 32.7783 6.62359 1.73684 24.4179 +1 1 1 601 0.601 323.15 0 0 0.04808 -0.021924 -0.021924 0 0 0 946.439 2.71257e-07 2.71254e-07 0 0 0 32.854 6.63143 1.74417 24.4784 +1 1 1 602 0.602 323.15 0 0 0.04816 -0.0219627 -0.0219627 0 0 0 946.998 2.71257e-07 2.71254e-07 0 0 0 32.9297 6.63926 1.75151 24.5389 +1 1 1 603 0.603 323.15 0 0 0.04824 -0.0220015 -0.0220015 0 0 0 947.556 2.71257e-07 2.71254e-07 0 0 0 33.0055 6.64709 1.75888 24.5995 +1 1 1 604 0.604 323.15 0 0 0.04832 -0.0220402 -0.0220402 0 0 0 948.114 2.71257e-07 2.71254e-07 0 0 0 33.0813 6.65492 1.76625 24.6602 +1 1 1 605 0.605 323.15 0 0 0.0484 -0.022079 -0.022079 0 0 0 948.671 2.71256e-07 2.71254e-07 0 0 0 33.1572 6.66274 1.77365 24.7208 +1 1 1 606 0.606 323.15 0 0 0.04848 -0.0221177 -0.0221177 0 0 0 949.228 2.71257e-07 2.71254e-07 0 0 0 33.2331 6.67057 1.78106 24.7815 +1 1 1 607 0.607 323.15 0 0 0.04856 -0.0221565 -0.0221565 0 0 0 949.784 2.71257e-07 2.71254e-07 0 0 0 33.3091 6.67839 1.78849 24.8422 +1 1 1 608 0.608 323.15 0 0 0.04864 -0.0221952 -0.0221952 0 0 0 950.34 2.71257e-07 2.71255e-07 0 0 0 33.3851 6.68621 1.79593 24.9029 +1 1 1 609 0.609 323.15 0 0 0.04872 -0.022234 -0.022234 0 0 0 950.896 2.71257e-07 2.71254e-07 0 0 0 33.4611 6.69403 1.80339 24.9637 +1 1 1 610 0.61 323.15 0 0 0.0488 -0.0222728 -0.0222728 0 0 0 951.451 2.71256e-07 2.71254e-07 0 0 0 33.5372 6.70185 1.81086 25.0245 +1 1 1 611 0.611 323.15 0 0 0.04888 -0.0223115 -0.0223115 0 0 0 952.006 2.71257e-07 2.71254e-07 0 0 0 33.6134 6.70967 1.81835 25.0853 +1 1 1 612 0.612 323.15 0 0 0.04896 -0.0223503 -0.0223503 0 0 0 952.56 2.71257e-07 2.71255e-07 0 0 0 33.6895 6.71748 1.82586 25.1462 +1 1 1 613 0.613 323.15 0 0 0.04904 -0.022389 -0.022389 0 0 0 953.114 2.71257e-07 2.71255e-07 0 0 0 33.7658 6.72529 1.83338 25.2071 +1 1 1 614 0.614 323.15 0 0 0.04912 -0.0224278 -0.0224278 0 0 0 953.667 2.71257e-07 2.71255e-07 0 0 0 33.842 6.73311 1.84092 25.268 +1 1 1 615 0.615 323.15 0 0 0.0492 -0.0224666 -0.0224666 0 0 0 954.22 2.71257e-07 2.71255e-07 0 0 0 33.9184 6.74092 1.84848 25.329 +1 1 1 616 0.616 323.15 0 0 0.04928 -0.0225053 -0.0225053 0 0 0 954.773 2.71257e-07 2.71255e-07 0 0 0 33.9947 6.74872 1.85605 25.3899 +1 1 1 617 0.617 323.15 0 0 0.04936 -0.0225441 -0.0225441 0 0 0 955.325 2.71257e-07 2.71255e-07 0 0 0 34.0711 6.75653 1.86364 25.4509 +1 1 1 618 0.618 323.15 0 0 0.04944 -0.0225829 -0.0225829 0 0 0 955.876 2.71258e-07 2.71256e-07 0 0 0 34.1476 6.76434 1.87124 25.512 +1 1 1 619 0.619 323.15 0 0 0.04952 -0.0226216 -0.0226216 0 0 0 956.427 2.71258e-07 2.71256e-07 0 0 0 34.2241 6.77214 1.87886 25.5731 +1 1 1 620 0.62 323.15 0 0 0.0496 -0.0226604 -0.0226604 0 0 0 956.978 2.71258e-07 2.71256e-07 0 0 0 34.3006 6.77994 1.8865 25.6342 +1 1 1 621 0.621 323.15 0 0 0.04968 -0.0226992 -0.0226992 0 0 0 957.529 2.71258e-07 2.71255e-07 0 0 0 34.3772 6.78774 1.89415 25.6953 +1 1 1 622 0.622 323.15 0 0 0.04976 -0.0227379 -0.0227379 0 0 0 958.078 2.71257e-07 2.71256e-07 0 0 0 34.4538 6.79554 1.90182 25.7564 +1 1 1 623 0.623 323.15 0 0 0.04984 -0.0227767 -0.0227767 0 0 0 958.628 2.71257e-07 2.71255e-07 0 0 0 34.5305 6.80334 1.90951 25.8176 +1 1 1 624 0.624 323.15 0 0 0.04992 -0.0228155 -0.0228155 0 0 0 959.177 2.71256e-07 2.71255e-07 0 0 0 34.6072 6.81113 1.91721 25.8788 +1 1 1 625 0.625 323.15 0 0 0.05 -0.0228543 -0.0228543 0 0 0 959.726 2.71256e-07 2.71255e-07 0 0 0 34.6839 6.81893 1.92492 25.9401 +1 1 1 626 0.626 323.15 0 0 0.05008 -0.022893 -0.022893 0 0 0 960.274 2.71256e-07 2.71255e-07 0 0 0 34.7607 6.82672 1.93266 26.0014 +1 1 1 627 0.627 323.15 0 0 0.05016 -0.0229318 -0.0229318 0 0 0 960.822 2.71257e-07 2.71255e-07 0 0 0 34.8376 6.83451 1.94041 26.0627 +1 1 1 628 0.628 323.15 0 0 0.05024 -0.0229706 -0.0229706 0 0 0 961.369 2.71256e-07 2.71255e-07 0 0 0 34.9145 6.8423 1.94817 26.124 +1 1 1 629 0.629 323.15 0 0 0.05032 -0.0230094 -0.0230094 0 0 0 961.916 2.71257e-07 2.71255e-07 0 0 0 34.9914 6.85009 1.95596 26.1854 +1 1 1 630 0.63 323.15 0 0 0.0504 -0.0230481 -0.0230481 0 0 0 962.463 2.71257e-07 2.71255e-07 0 0 0 35.0684 6.85788 1.96375 26.2467 +1 1 1 631 0.631 323.15 0 0 0.05048 -0.0230869 -0.0230869 0 0 0 963.009 2.71257e-07 2.71255e-07 0 0 0 35.1454 6.86566 1.97157 26.3082 +1 1 1 632 0.632 323.15 0 0 0.05056 -0.0231257 -0.0231257 0 0 0 963.555 2.71257e-07 2.71256e-07 0 0 0 35.2225 6.87344 1.9794 26.3696 +1 1 1 633 0.633 323.15 0 0 0.05064 -0.0231645 -0.0231645 0 0 0 964.1 2.71257e-07 2.71255e-07 0 0 0 35.2996 6.88123 1.98725 26.4311 +1 1 1 634 0.634 323.15 0 0 0.05072 -0.0232033 -0.0232033 0 0 0 964.645 2.71257e-07 2.71255e-07 0 0 0 35.3767 6.88901 1.99511 26.4926 +1 1 1 635 0.635 323.15 0 0 0.0508 -0.0232421 -0.0232421 0 0 0 965.189 2.71257e-07 2.71255e-07 0 0 0 35.4539 6.89679 2.00299 26.5541 +1 1 1 636 0.636 323.15 0 0 0.05088 -0.0232808 -0.0232808 0 0 0 965.733 2.71256e-07 2.71255e-07 0 0 0 35.5311 6.90456 2.01088 26.6157 +1 1 1 637 0.637 323.15 0 0 0.05096 -0.0233196 -0.0233196 0 0 0 966.277 2.71256e-07 2.71255e-07 0 0 0 35.6084 6.91234 2.01879 26.6773 +1 1 1 638 0.638 323.15 0 0 0.05104 -0.0233584 -0.0233584 0 0 0 966.82 2.71256e-07 2.71255e-07 0 0 0 35.6857 6.92012 2.02672 26.7389 +1 1 1 639 0.639 323.15 0 0 0.05112 -0.0233972 -0.0233972 0 0 0 967.363 2.71256e-07 2.71254e-07 0 0 0 35.7631 6.92789 2.03467 26.8006 +1 1 1 640 0.64 323.15 0 0 0.0512 -0.023436 -0.023436 0 0 0 967.906 2.71256e-07 2.71254e-07 0 0 0 35.8405 6.93566 2.04263 26.8622 +1 1 1 641 0.641 323.15 0 0 0.05128 -0.0234748 -0.0234748 0 0 0 968.448 2.71257e-07 2.71255e-07 0 0 0 35.918 6.94343 2.0506 26.9239 +1 1 1 642 0.642 323.15 0 0 0.05136 -0.0235136 -0.0235136 0 0 0 968.989 2.71256e-07 2.71255e-07 0 0 0 35.9955 6.9512 2.0586 26.9857 +1 1 1 643 0.643 323.15 0 0 0.05144 -0.0235523 -0.0235523 0 0 0 969.531 2.71256e-07 2.71255e-07 0 0 0 36.073 6.95897 2.0666 27.0474 +1 1 1 644 0.644 323.15 0 0 0.05152 -0.0235911 -0.0235911 0 0 0 970.072 2.71256e-07 2.71254e-07 0 0 0 36.1506 6.96674 2.07463 27.1092 +1 1 1 645 0.645 323.15 0 0 0.0516 -0.0236299 -0.0236299 0 0 0 970.612 2.71255e-07 2.71254e-07 0 0 0 36.2282 6.9745 2.08267 27.1711 +1 1 1 646 0.646 323.15 0 0 0.05168 -0.0236687 -0.0236687 0 0 0 971.152 2.71255e-07 2.71254e-07 0 0 0 36.3059 6.98227 2.09073 27.2329 +1 1 1 647 0.647 323.15 0 0 0.05176 -0.0237075 -0.0237075 0 0 0 971.692 2.71255e-07 2.71254e-07 0 0 0 36.3836 6.99003 2.0988 27.2948 +1 1 1 648 0.648 323.15 0 0 0.05184 -0.0237463 -0.0237463 0 0 0 972.231 2.71255e-07 2.71254e-07 0 0 0 36.4614 6.99779 2.10689 27.3567 +1 1 1 649 0.649 323.15 0 0 0.05192 -0.0237851 -0.0237851 0 0 0 972.77 2.71256e-07 2.71254e-07 0 0 0 36.5392 7.00555 2.115 27.4186 +1 1 1 650 0.65 323.15 0 0 0.052 -0.0238239 -0.0238239 0 0 0 973.309 2.71256e-07 2.71254e-07 0 0 0 36.617 7.01331 2.12312 27.4806 +1 1 1 651 0.651 323.15 0 0 0.05208 -0.0238627 -0.0238627 0 0 0 973.847 2.71256e-07 2.71254e-07 0 0 0 36.6949 7.02107 2.13126 27.5426 +1 1 1 652 0.652 323.15 0 0 0.05216 -0.0239015 -0.0239015 0 0 0 974.385 2.71256e-07 2.71254e-07 0 0 0 36.7728 7.02882 2.13941 27.6046 +1 1 1 653 0.653 323.15 0 0 0.05224 -0.0239403 -0.0239403 0 0 0 974.922 2.71255e-07 2.71254e-07 0 0 0 36.8508 7.03658 2.14758 27.6666 +1 1 1 654 0.654 323.15 0 0 0.05232 -0.0239791 -0.0239791 0 0 0 975.459 2.71255e-07 2.71254e-07 0 0 0 36.9288 7.04433 2.15577 27.7287 +1 1 1 655 0.655 323.15 0 0 0.0524 -0.0240179 -0.0240179 0 0 0 975.995 2.71255e-07 2.71254e-07 0 0 0 37.0069 7.05208 2.16397 27.7908 +1 1 1 656 0.656 323.15 0 0 0.05248 -0.0240567 -0.0240567 0 0 0 976.532 2.71255e-07 2.71253e-07 0 0 0 37.085 7.05983 2.17219 27.8529 +1 1 1 657 0.657 323.15 0 0 0.05256 -0.0240955 -0.0240955 0 0 0 977.068 2.71255e-07 2.71253e-07 0 0 0 37.1631 7.06758 2.18043 27.9151 +1 1 1 658 0.658 323.15 0 0 0.05264 -0.0241343 -0.0241343 0 0 0 977.603 2.71255e-07 2.71253e-07 0 0 0 37.2413 7.07533 2.18868 27.9773 +1 1 1 659 0.659 323.15 0 0 0.05272 -0.0241731 -0.0241731 0 0 0 978.138 2.71254e-07 2.71253e-07 0 0 0 37.3195 7.08308 2.19695 28.0395 +1 1 1 660 0.66 323.15 0 0 0.0528 -0.0242119 -0.0242119 0 0 0 978.673 2.71254e-07 2.71253e-07 0 0 0 37.3978 7.09082 2.20523 28.1017 +1 1 1 661 0.661 323.15 0 0 0.05288 -0.0242507 -0.0242507 0 0 0 979.207 2.71254e-07 2.71253e-07 0 0 0 37.4761 7.09857 2.21353 28.164 +1 1 1 662 0.662 323.15 0 0 0.05296 -0.0242895 -0.0242895 0 0 0 979.741 2.71254e-07 2.71253e-07 0 0 0 37.5545 7.10631 2.22185 28.2263 +1 1 1 663 0.663 323.15 0 0 0.05304 -0.0243283 -0.0243283 0 0 0 980.274 2.71254e-07 2.71253e-07 0 0 0 37.6329 7.11405 2.23018 28.2886 +1 1 1 664 0.664 323.15 0 0 0.05312 -0.0243671 -0.0243671 0 0 0 980.808 2.71254e-07 2.71253e-07 0 0 0 37.7113 7.1218 2.23853 28.351 +1 1 1 665 0.665 323.15 0 0 0.0532 -0.0244059 -0.0244059 0 0 0 981.34 2.71254e-07 2.71253e-07 0 0 0 37.7898 7.12954 2.2469 28.4134 +1 1 1 666 0.666 323.15 0 0 0.05328 -0.0244447 -0.0244447 0 0 0 981.873 2.71254e-07 2.71253e-07 0 0 0 37.8683 7.13727 2.25528 28.4758 +1 1 1 667 0.667 323.15 0 0 0.05336 -0.0244836 -0.0244836 0 0 0 982.405 2.71254e-07 2.71254e-07 0 0 0 37.9469 7.14501 2.26368 28.5382 +1 1 1 668 0.668 323.15 0 0 0.05344 -0.0245224 -0.0245224 0 0 0 982.937 2.71254e-07 2.71253e-07 0 0 0 38.0255 7.15275 2.27209 28.6007 +1 1 1 669 0.669 323.15 0 0 0.05352 -0.0245612 -0.0245612 0 0 0 983.468 2.71254e-07 2.71253e-07 0 0 0 38.1042 7.16048 2.28052 28.6632 +1 1 1 670 0.67 323.15 0 0 0.0536 -0.0246 -0.0246 0 0 0 983.999 2.71254e-07 2.71254e-07 0 0 0 38.1829 7.16822 2.28897 28.7257 +1 1 1 671 0.671 323.15 0 0 0.05368 -0.0246388 -0.0246388 0 0 0 984.53 2.71254e-07 2.71254e-07 0 0 0 38.2616 7.17595 2.29743 28.7882 +1 1 1 672 0.672 323.15 0 0 0.05376 -0.0246776 -0.0246776 0 0 0 985.06 2.71255e-07 2.71254e-07 0 0 0 38.3404 7.18368 2.30591 28.8508 +1 1 1 673 0.673 323.15 0 0 0.05384 -0.0247164 -0.0247164 0 0 0 985.59 2.71255e-07 2.71254e-07 0 0 0 38.4192 7.19141 2.31441 28.9134 +1 1 1 674 0.674 323.15 0 0 0.05392 -0.0247553 -0.0247553 0 0 0 986.119 2.71255e-07 2.71254e-07 0 0 0 38.4981 7.19914 2.32292 28.976 +1 1 1 675 0.675 323.15 0 0 0.054 -0.0247941 -0.0247941 0 0 0 986.648 2.71255e-07 2.71254e-07 0 0 0 38.577 7.20687 2.33145 29.0387 +1 1 1 676 0.676 323.15 0 0 0.05408 -0.0248329 -0.0248329 0 0 0 987.177 2.71255e-07 2.71254e-07 0 0 0 38.656 7.21459 2.33999 29.1014 +1 1 1 677 0.677 323.15 0 0 0.05416 -0.0248717 -0.0248717 0 0 0 987.705 2.71255e-07 2.71255e-07 0 0 0 38.735 7.22232 2.34855 29.1641 +1 1 1 678 0.678 323.15 0 0 0.05424 -0.0249105 -0.0249105 0 0 0 988.233 2.71255e-07 2.71255e-07 0 0 0 38.814 7.23004 2.35713 29.2268 +1 1 1 679 0.679 323.15 0 0 0.05432 -0.0249493 -0.0249493 0 0 0 988.761 2.71255e-07 2.71255e-07 0 0 0 38.8931 7.23777 2.36572 29.2896 +1 1 1 680 0.68 323.15 0 0 0.0544 -0.0249882 -0.0249882 0 0 0 989.289 2.71255e-07 2.71255e-07 0 0 0 38.9722 7.24549 2.37433 29.3524 +1 1 1 681 0.681 323.15 0 0 0.05448 -0.025027 -0.025027 0 0 0 989.815 2.71256e-07 2.71255e-07 0 0 0 39.0514 7.25321 2.38296 29.4152 +1 1 1 682 0.682 323.15 0 0 0.05456 -0.0250658 -0.0250658 0 0 0 990.342 2.71255e-07 2.71254e-07 0 0 0 39.1306 7.26093 2.3916 29.478 +1 1 1 683 0.683 323.15 0 0 0.05464 -0.0251046 -0.0251046 0 0 0 990.868 2.71255e-07 2.71254e-07 0 0 0 39.2098 7.26865 2.40026 29.5409 +1 1 1 684 0.684 323.15 0 0 0.05472 -0.0251435 -0.0251435 0 0 0 991.394 2.71255e-07 2.71254e-07 0 0 0 39.2891 7.27637 2.40893 29.6038 +1 1 1 685 0.685 323.15 0 0 0.0548 -0.0251823 -0.0251823 0 0 0 991.92 2.71255e-07 2.71254e-07 0 0 0 39.3684 7.28408 2.41762 29.6667 +1 1 1 686 0.686 323.15 0 0 0.05488 -0.0252211 -0.0252211 0 0 0 992.445 2.71255e-07 2.71254e-07 0 0 0 39.4478 7.2918 2.42633 29.7297 +1 1 1 687 0.687 323.15 0 0 0.05496 -0.0252599 -0.0252599 0 0 0 992.97 2.71255e-07 2.71254e-07 0 0 0 39.5272 7.29952 2.43505 29.7927 +1 1 1 688 0.688 323.15 0 0 0.05504 -0.0252988 -0.0252988 0 0 0 993.494 2.71255e-07 2.71254e-07 0 0 0 39.6067 7.30723 2.44379 29.8557 +1 1 1 689 0.689 323.15 0 0 0.05512 -0.0253376 -0.0253376 0 0 0 994.019 2.71255e-07 2.71254e-07 0 0 0 39.6862 7.31494 2.45255 29.9187 +1 1 1 690 0.69 323.15 0 0 0.0552 -0.0253764 -0.0253764 0 0 0 994.542 2.71255e-07 2.71254e-07 0 0 0 39.7657 7.32265 2.46132 29.9818 +1 1 1 691 0.691 323.15 0 0 0.05528 -0.0254153 -0.0254153 0 0 0 995.066 2.71255e-07 2.71254e-07 0 0 0 39.8453 7.33036 2.47011 30.0448 +1 1 1 692 0.692 323.15 0 0 0.05536 -0.0254541 -0.0254541 0 0 0 995.589 2.71255e-07 2.71254e-07 0 0 0 39.9249 7.33807 2.47891 30.108 +1 1 1 693 0.693 323.15 0 0 0.05544 -0.0254929 -0.0254929 0 0 0 996.112 2.71255e-07 2.71254e-07 0 0 0 40.0046 7.34578 2.48773 30.1711 +1 1 1 694 0.694 323.15 0 0 0.05552 -0.0255317 -0.0255317 0 0 0 996.634 2.71254e-07 2.71254e-07 0 0 0 40.0843 7.35349 2.49657 30.2343 +1 1 1 695 0.695 323.15 0 0 0.0556 -0.0255706 -0.0255706 0 0 0 997.156 2.71254e-07 2.71254e-07 0 0 0 40.1641 7.3612 2.50542 30.2975 +1 1 1 696 0.696 323.15 0 0 0.05568 -0.0256094 -0.0256094 0 0 0 997.678 2.71255e-07 2.71254e-07 0 0 0 40.2439 7.3689 2.51429 30.3607 +1 1 1 697 0.697 323.15 0 0 0.05576 -0.0256482 -0.0256482 0 0 0 998.2 2.71254e-07 2.71253e-07 0 0 0 40.3237 7.37661 2.52318 30.4239 +1 1 1 698 0.698 323.15 0 0 0.05584 -0.0256871 -0.0256871 0 0 0 998.721 2.71254e-07 2.71253e-07 0 0 0 40.4036 7.38431 2.53208 30.4872 +1 1 1 699 0.699 323.15 0 0 0.05592 -0.0257259 -0.0257259 0 0 0 999.241 2.71254e-07 2.71254e-07 0 0 0 40.4835 7.39201 2.541 30.5505 +1 1 1 700 0.7 323.15 0 0 0.056 -0.0257648 -0.0257648 0 0 0 999.762 2.71254e-07 2.71254e-07 0 0 0 40.5635 7.39971 2.54994 30.6138 +1 1 1 701 0.701 323.15 0 0 0.05608 -0.0258036 -0.0258036 0 0 0 1000.28 2.71254e-07 2.71253e-07 0 0 0 40.6435 7.40741 2.55889 30.6772 +1 1 1 702 0.702 323.15 0 0 0.05616 -0.0258424 -0.0258424 0 0 0 1000.8 2.71254e-07 2.71253e-07 0 0 0 40.7235 7.41511 2.56785 30.7405 +1 1 1 703 0.703 323.15 0 0 0.05624 -0.0258813 -0.0258813 0 0 0 1001.32 2.71254e-07 2.71253e-07 0 0 0 40.8036 7.42281 2.57684 30.8039 +1 1 1 704 0.704 323.15 0 0 0.05632 -0.0259201 -0.0259201 0 0 0 1001.84 2.71254e-07 2.71254e-07 0 0 0 40.8837 7.43051 2.58584 30.8674 +1 1 1 705 0.705 323.15 0 0 0.0564 -0.0259589 -0.0259589 0 0 0 1002.36 2.71254e-07 2.71254e-07 0 0 0 40.9639 7.4382 2.59486 30.9308 +1 1 1 706 0.706 323.15 0 0 0.05648 -0.0259978 -0.0259978 0 0 0 1002.88 2.71254e-07 2.71253e-07 0 0 0 41.0441 7.4459 2.60389 30.9943 +1 1 1 707 0.707 323.15 0 0 0.05656 -0.0260366 -0.0260366 0 0 0 1003.4 2.71254e-07 2.71254e-07 0 0 0 41.1243 7.4536 2.61294 31.0578 +1 1 1 708 0.708 323.15 0 0 0.05664 -0.0260755 -0.0260755 0 0 0 1003.91 2.71254e-07 2.71253e-07 0 0 0 41.2046 7.46129 2.622 31.1213 +1 1 1 709 0.709 323.15 0 0 0.05672 -0.0261143 -0.0261143 0 0 0 1004.43 2.71254e-07 2.71253e-07 0 0 0 41.285 7.46898 2.63108 31.1849 +1 1 1 710 0.71 323.15 0 0 0.0568 -0.0261532 -0.0261532 0 0 0 1004.95 2.71254e-07 2.71253e-07 0 0 0 41.3653 7.47667 2.64018 31.2485 +1 1 1 711 0.711 323.15 0 0 0.05688 -0.026192 -0.026192 0 0 0 1005.46 2.71253e-07 2.71253e-07 0 0 0 41.4458 7.48436 2.6493 31.3121 +1 1 1 712 0.712 323.15 0 0 0.05696 -0.0262309 -0.0262309 0 0 0 1005.98 2.71253e-07 2.71253e-07 0 0 0 41.5262 7.49205 2.65843 31.3757 +1 1 1 713 0.713 323.15 0 0 0.05704 -0.0262697 -0.0262697 0 0 0 1006.5 2.71253e-07 2.71252e-07 0 0 0 41.6067 7.49974 2.66757 31.4394 +1 1 1 714 0.714 323.15 0 0 0.05712 -0.0263085 -0.0263085 0 0 0 1007.01 2.71253e-07 2.71252e-07 0 0 0 41.6873 7.50743 2.67674 31.5031 +1 1 1 715 0.715 323.15 0 0 0.0572 -0.0263474 -0.0263474 0 0 0 1007.53 2.71253e-07 2.71252e-07 0 0 0 41.7678 7.51512 2.68592 31.5668 +1 1 1 716 0.716 323.15 0 0 0.05728 -0.0263862 -0.0263862 0 0 0 1008.04 2.71253e-07 2.71253e-07 0 0 0 41.8485 7.52281 2.69511 31.6305 +1 1 1 717 0.717 323.15 0 0 0.05736 -0.0264251 -0.0264251 0 0 0 1008.56 2.71253e-07 2.71253e-07 0 0 0 41.9291 7.53049 2.70433 31.6943 +1 1 1 718 0.718 323.15 0 0 0.05744 -0.0264639 -0.0264639 0 0 0 1009.07 2.71253e-07 2.71252e-07 0 0 0 42.0098 7.53818 2.71355 31.7581 +1 1 1 719 0.719 323.15 0 0 0.05752 -0.0265028 -0.0265028 0 0 0 1009.59 2.71253e-07 2.71252e-07 0 0 0 42.0906 7.54586 2.7228 31.8219 +1 1 1 720 0.72 323.15 0 0 0.0576 -0.0265416 -0.0265416 0 0 0 1010.1 2.71253e-07 2.71252e-07 0 0 0 42.1714 7.55354 2.73206 31.8858 +1 1 1 721 0.721 323.15 0 0 0.05768 -0.0265805 -0.0265805 0 0 0 1010.61 2.71253e-07 2.71252e-07 0 0 0 42.2522 7.56123 2.74134 31.9496 +1 1 1 722 0.722 323.15 0 0 0.05776 -0.0266193 -0.0266193 0 0 0 1011.13 2.71253e-07 2.71252e-07 0 0 0 42.3331 7.56891 2.75063 32.0135 +1 1 1 723 0.723 323.15 0 0 0.05784 -0.0266582 -0.0266582 0 0 0 1011.64 2.71253e-07 2.71252e-07 0 0 0 42.414 7.57659 2.75994 32.0774 +1 1 1 724 0.724 323.15 0 0 0.05792 -0.0266971 -0.0266971 0 0 0 1012.15 2.71253e-07 2.71252e-07 0 0 0 42.4949 7.58427 2.76927 32.1414 +1 1 1 725 0.725 323.15 0 0 0.058 -0.0267359 -0.0267359 0 0 0 1012.66 2.71252e-07 2.71251e-07 0 0 0 42.5759 7.59195 2.77861 32.2054 +1 1 1 726 0.726 323.15 0 0 0.05808 -0.0267748 -0.0267748 0 0 0 1013.18 2.71252e-07 2.71251e-07 0 0 0 42.6569 7.59962 2.78797 32.2694 +1 1 1 727 0.727 323.15 0 0 0.05816 -0.0268136 -0.0268136 0 0 0 1013.69 2.71252e-07 2.71251e-07 0 0 0 42.738 7.6073 2.79735 32.3334 +1 1 1 728 0.728 323.15 0 0 0.05824 -0.0268525 -0.0268525 0 0 0 1014.2 2.71252e-07 2.71251e-07 0 0 0 42.8191 7.61498 2.80674 32.3974 +1 1 1 729 0.729 323.15 0 0 0.05832 -0.0268913 -0.0268913 0 0 0 1014.71 2.71252e-07 2.71251e-07 0 0 0 42.9003 7.62265 2.81615 32.4615 +1 1 1 730 0.73 323.15 0 0 0.0584 -0.0269302 -0.0269302 0 0 0 1015.22 2.71252e-07 2.71251e-07 0 0 0 42.9815 7.63033 2.82557 32.5256 +1 1 1 731 0.731 323.15 0 0 0.05848 -0.026969 -0.026969 0 0 0 1015.73 2.71252e-07 2.71251e-07 0 0 0 43.0627 7.638 2.83501 32.5897 +1 1 1 732 0.732 323.15 0 0 0.05856 -0.0270079 -0.0270079 0 0 0 1016.24 2.71252e-07 2.71251e-07 0 0 0 43.144 7.64567 2.84447 32.6539 +1 1 1 733 0.733 323.15 0 0 0.05864 -0.0270468 -0.0270468 0 0 0 1016.75 2.71252e-07 2.71251e-07 0 0 0 43.2253 7.65335 2.85394 32.718 +1 1 1 734 0.734 323.15 0 0 0.05872 -0.0270856 -0.0270856 0 0 0 1017.26 2.71252e-07 2.71251e-07 0 0 0 43.3067 7.66102 2.86343 32.7822 +1 1 1 735 0.735 323.15 0 0 0.0588 -0.0271245 -0.0271245 0 0 0 1017.77 2.71252e-07 2.71251e-07 0 0 0 43.3881 7.66869 2.87294 32.8465 +1 1 1 736 0.736 323.15 0 0 0.05888 -0.0271634 -0.0271634 0 0 0 1018.28 2.71252e-07 2.71251e-07 0 0 0 43.4695 7.67636 2.88246 32.9107 +1 1 1 737 0.737 323.15 0 0 0.05896 -0.0272022 -0.0272022 0 0 0 1018.79 2.71251e-07 2.7125e-07 0 0 0 43.551 7.68403 2.892 32.975 +1 1 1 738 0.738 323.15 0 0 0.05904 -0.0272411 -0.0272411 0 0 0 1019.3 2.71251e-07 2.7125e-07 0 0 0 43.6325 7.6917 2.90156 33.0393 +1 1 1 739 0.739 323.15 0 0 0.05912 -0.0272799 -0.0272799 0 0 0 1019.8 2.71251e-07 2.7125e-07 0 0 0 43.7141 7.69936 2.91113 33.1036 +1 1 1 740 0.74 323.15 0 0 0.0592 -0.0273188 -0.0273188 0 0 0 1020.31 2.71251e-07 2.7125e-07 0 0 0 43.7957 7.70703 2.92072 33.168 +1 1 1 741 0.741 323.15 0 0 0.05928 -0.0273577 -0.0273577 0 0 0 1020.82 2.71251e-07 2.7125e-07 0 0 0 43.8774 7.7147 2.93032 33.2323 +1 1 1 742 0.742 323.15 0 0 0.05936 -0.0273965 -0.0273965 0 0 0 1021.33 2.71251e-07 2.7125e-07 0 0 0 43.959 7.72236 2.93994 33.2967 +1 1 1 743 0.743 323.15 0 0 0.05944 -0.0274354 -0.0274354 0 0 0 1021.83 2.71251e-07 2.7125e-07 0 0 0 44.0408 7.73003 2.94958 33.3612 +1 1 1 744 0.744 323.15 0 0 0.05952 -0.0274743 -0.0274743 0 0 0 1022.34 2.71251e-07 2.7125e-07 0 0 0 44.1225 7.73769 2.95923 33.4256 +1 1 1 745 0.745 323.15 0 0 0.0596 -0.0275131 -0.0275131 0 0 0 1022.84 2.71251e-07 2.7125e-07 0 0 0 44.2043 7.74535 2.9689 33.4901 +1 1 1 746 0.746 323.15 0 0 0.05968 -0.027552 -0.027552 0 0 0 1023.35 2.71251e-07 2.7125e-07 0 0 0 44.2862 7.75301 2.97859 33.5546 +1 1 1 747 0.747 323.15 0 0 0.05976 -0.0275909 -0.0275909 0 0 0 1023.86 2.71251e-07 2.7125e-07 0 0 0 44.3681 7.76068 2.98829 33.6191 +1 1 1 748 0.748 323.15 0 0 0.05984 -0.0276298 -0.0276298 0 0 0 1024.36 2.71251e-07 2.71251e-07 0 0 0 44.45 7.76834 2.99801 33.6837 +1 1 1 749 0.749 323.15 0 0 0.05992 -0.0276686 -0.0276686 0 0 0 1024.87 2.71251e-07 2.7125e-07 0 0 0 44.532 7.776 3.00774 33.7482 +1 1 1 750 0.75 323.15 0 0 0.06 -0.0277075 -0.0277075 0 0 0 1025.37 2.71251e-07 2.7125e-07 0 0 0 44.614 7.78366 3.0175 33.8128 +1 1 1 751 0.751 323.15 0 0 0.06008 -0.0277464 -0.0277464 0 0 0 1025.88 2.71251e-07 2.7125e-07 0 0 0 44.696 7.79132 3.02726 33.8775 +1 1 1 752 0.752 323.15 0 0 0.06016 -0.0277852 -0.0277852 0 0 0 1026.38 2.71251e-07 2.71251e-07 0 0 0 44.7781 7.79897 3.03705 33.9421 +1 1 1 753 0.753 323.15 0 0 0.06024 -0.0278241 -0.0278241 0 0 0 1026.88 2.71251e-07 2.7125e-07 0 0 0 44.8603 7.80663 3.04685 34.0068 +1 1 1 754 0.754 323.15 0 0 0.06032 -0.027863 -0.027863 0 0 0 1027.39 2.71251e-07 2.7125e-07 0 0 0 44.9424 7.81429 3.05667 34.0715 +1 1 1 755 0.755 323.15 0 0 0.0604 -0.0279019 -0.0279019 0 0 0 1027.89 2.71251e-07 2.7125e-07 0 0 0 45.0246 7.82194 3.0665 34.1362 +1 1 1 756 0.756 323.15 0 0 0.06048 -0.0279407 -0.0279407 0 0 0 1028.39 2.71251e-07 2.7125e-07 0 0 0 45.1069 7.8296 3.07635 34.2009 +1 1 1 757 0.757 323.15 0 0 0.06056 -0.0279796 -0.0279796 0 0 0 1028.89 2.71251e-07 2.7125e-07 0 0 0 45.1892 7.83725 3.08622 34.2657 +1 1 1 758 0.758 323.15 0 0 0.06064 -0.0280185 -0.0280185 0 0 0 1029.4 2.71251e-07 2.7125e-07 0 0 0 45.2715 7.84491 3.0961 34.3305 +1 1 1 759 0.759 323.15 0 0 0.06072 -0.0280574 -0.0280574 0 0 0 1029.9 2.71251e-07 2.7125e-07 0 0 0 45.3539 7.85256 3.106 34.3953 +1 1 1 760 0.76 323.15 0 0 0.0608 -0.0280963 -0.0280963 0 0 0 1030.4 2.7125e-07 2.7125e-07 0 0 0 45.4363 7.86021 3.11591 34.4602 +1 1 1 761 0.761 323.15 0 0 0.06088 -0.0281351 -0.0281351 0 0 0 1030.9 2.7125e-07 2.7125e-07 0 0 0 45.5187 7.86787 3.12585 34.525 +1 1 1 762 0.762 323.15 0 0 0.06096 -0.028174 -0.028174 0 0 0 1031.4 2.71251e-07 2.7125e-07 0 0 0 45.6012 7.87552 3.13579 34.5899 +1 1 1 763 0.763 323.15 0 0 0.06104 -0.0282129 -0.0282129 0 0 0 1031.9 2.7125e-07 2.7125e-07 0 0 0 45.6838 7.88317 3.14576 34.6548 +1 1 1 764 0.764 323.15 0 0 0.06112 -0.0282518 -0.0282518 0 0 0 1032.41 2.7125e-07 2.7125e-07 0 0 0 45.7663 7.89082 3.15574 34.7198 +1 1 1 765 0.765 323.15 0 0 0.0612 -0.0282907 -0.0282907 0 0 0 1032.91 2.71251e-07 2.7125e-07 0 0 0 45.849 7.89847 3.16574 34.7847 +1 1 1 766 0.766 323.15 0 0 0.06128 -0.0283295 -0.0283295 0 0 0 1033.41 2.71251e-07 2.7125e-07 0 0 0 45.9316 7.90612 3.17575 34.8497 +1 1 1 767 0.767 323.15 0 0 0.06136 -0.0283684 -0.0283684 0 0 0 1033.91 2.71251e-07 2.7125e-07 0 0 0 46.0143 7.91376 3.18578 34.9148 +1 1 1 768 0.768 323.15 0 0 0.06144 -0.0284073 -0.0284073 0 0 0 1034.4 2.7125e-07 2.7125e-07 0 0 0 46.097 7.92141 3.19583 34.9798 +1 1 1 769 0.769 323.15 0 0 0.06152 -0.0284462 -0.0284462 0 0 0 1034.9 2.7125e-07 2.7125e-07 0 0 0 46.1798 7.92906 3.20589 35.0449 +1 1 1 770 0.77 323.15 0 0 0.0616 -0.0284851 -0.0284851 0 0 0 1035.4 2.71251e-07 2.7125e-07 0 0 0 46.2626 7.9367 3.21597 35.1099 +1 1 1 771 0.771 323.15 0 0 0.06168 -0.028524 -0.028524 0 0 0 1035.9 2.71251e-07 2.7125e-07 0 0 0 46.3455 7.94435 3.22606 35.1751 +1 1 1 772 0.772 323.15 0 0 0.06176 -0.0285628 -0.0285628 0 0 0 1036.4 2.71251e-07 2.7125e-07 0 0 0 46.4284 7.952 3.23618 35.2402 +1 1 1 773 0.773 323.15 0 0 0.06184 -0.0286017 -0.0286017 0 0 0 1036.9 2.7125e-07 2.71249e-07 0 0 0 46.5113 7.95964 3.24631 35.3053 +1 1 1 774 0.774 323.15 0 0 0.06192 -0.0286406 -0.0286406 0 0 0 1037.4 2.7125e-07 2.71249e-07 0 0 0 46.5943 7.96728 3.25645 35.3705 +1 1 1 775 0.775 323.15 0 0 0.062 -0.0286795 -0.0286795 0 0 0 1037.89 2.7125e-07 2.71249e-07 0 0 0 46.6773 7.97493 3.26661 35.4357 +1 1 1 776 0.776 323.15 0 0 0.06208 -0.0287184 -0.0287184 0 0 0 1038.39 2.7125e-07 2.71249e-07 0 0 0 46.7603 7.98257 3.27679 35.501 +1 1 1 777 0.777 323.15 0 0 0.06216 -0.0287573 -0.0287573 0 0 0 1038.89 2.7125e-07 2.71249e-07 0 0 0 46.8434 7.99021 3.28698 35.5662 +1 1 1 778 0.778 323.15 0 0 0.06224 -0.0287962 -0.0287962 0 0 0 1039.38 2.7125e-07 2.7125e-07 0 0 0 46.9265 7.99785 3.29719 35.6315 +1 1 1 779 0.779 323.15 0 0 0.06232 -0.0288351 -0.0288351 0 0 0 1039.88 2.71251e-07 2.71249e-07 0 0 0 47.0097 8.00549 3.30742 35.6968 +1 1 1 780 0.78 323.15 0 0 0.0624 -0.0288739 -0.0288739 0 0 0 1040.38 2.71251e-07 2.7125e-07 0 0 0 47.0929 8.01313 3.31766 35.7621 +1 1 1 781 0.781 323.15 0 0 0.06248 -0.0289128 -0.0289128 0 0 0 1040.87 2.71251e-07 2.7125e-07 0 0 0 47.1762 8.02077 3.32792 35.8275 +1 1 1 782 0.782 323.15 0 0 0.06256 -0.0289517 -0.0289517 0 0 0 1041.37 2.71251e-07 2.7125e-07 0 0 0 47.2595 8.02841 3.3382 35.8929 +1 1 1 783 0.783 323.15 0 0 0.06264 -0.0289906 -0.0289906 0 0 0 1041.86 2.71251e-07 2.7125e-07 0 0 0 47.3428 8.03605 3.34849 35.9583 +1 1 1 784 0.784 323.15 0 0 0.06272 -0.0290295 -0.0290295 0 0 0 1042.36 2.71251e-07 2.7125e-07 0 0 0 47.4262 8.04369 3.3588 36.0237 +1 1 1 785 0.785 323.15 0 0 0.0628 -0.0290684 -0.0290684 0 0 0 1042.85 2.71251e-07 2.7125e-07 0 0 0 47.5096 8.05133 3.36913 36.0891 +1 1 1 786 0.786 323.15 0 0 0.06288 -0.0291073 -0.0291073 0 0 0 1043.35 2.71251e-07 2.7125e-07 0 0 0 47.593 8.05896 3.37947 36.1546 +1 1 1 787 0.787 323.15 0 0 0.06296 -0.0291462 -0.0291462 0 0 0 1043.84 2.71251e-07 2.7125e-07 0 0 0 47.6765 8.0666 3.38983 36.2201 +1 1 1 788 0.788 323.15 0 0 0.06304 -0.0291851 -0.0291851 0 0 0 1044.34 2.71251e-07 2.7125e-07 0 0 0 47.76 8.07424 3.4002 36.2856 +1 1 1 789 0.789 323.15 0 0 0.06312 -0.029224 -0.029224 0 0 0 1044.83 2.71251e-07 2.7125e-07 0 0 0 47.8436 8.08187 3.41059 36.3511 +1 1 1 790 0.79 323.15 0 0 0.0632 -0.0292629 -0.0292629 0 0 0 1045.32 2.71251e-07 2.7125e-07 0 0 0 47.9272 8.08951 3.421 36.4167 +1 1 1 791 0.791 323.15 0 0 0.06328 -0.0293018 -0.0293018 0 0 0 1045.82 2.71251e-07 2.7125e-07 0 0 0 48.0109 8.09714 3.43142 36.4823 +1 1 1 792 0.792 323.15 0 0 0.06336 -0.0293407 -0.0293407 0 0 0 1046.31 2.71251e-07 2.7125e-07 0 0 0 48.0945 8.10478 3.44186 36.5479 +1 1 1 793 0.793 323.15 0 0 0.06344 -0.0293796 -0.0293796 0 0 0 1046.8 2.71251e-07 2.7125e-07 0 0 0 48.1783 8.11241 3.45232 36.6135 +1 1 1 794 0.794 323.15 0 0 0.06352 -0.0294185 -0.0294185 0 0 0 1047.29 2.71251e-07 2.7125e-07 0 0 0 48.262 8.12004 3.46279 36.6792 +1 1 1 795 0.795 323.15 0 0 0.0636 -0.0294574 -0.0294574 0 0 0 1047.79 2.71252e-07 2.7125e-07 0 0 0 48.3458 8.12767 3.47328 36.7449 +1 1 1 796 0.796 323.15 0 0 0.06368 -0.0294963 -0.0294963 0 0 0 1048.28 2.71252e-07 2.7125e-07 0 0 0 48.4297 8.13531 3.48379 36.8106 +1 1 1 797 0.797 323.15 0 0 0.06376 -0.0295352 -0.0295352 0 0 0 1048.77 2.71252e-07 2.71251e-07 0 0 0 48.5136 8.14294 3.49431 36.8763 +1 1 1 798 0.798 323.15 0 0 0.06384 -0.0295741 -0.0295741 0 0 0 1049.26 2.71251e-07 2.7125e-07 0 0 0 48.5975 8.15057 3.50485 36.9421 +1 1 1 799 0.799 323.15 0 0 0.06392 -0.029613 -0.029613 0 0 0 1049.75 2.71251e-07 2.7125e-07 0 0 0 48.6814 8.1582 3.51541 37.0078 +1 1 1 800 0.8 323.15 0 0 0.064 -0.0296519 -0.0296519 0 0 0 1050.24 2.71251e-07 2.7125e-07 0 0 0 48.7654 8.16583 3.52598 37.0736 +1 1 1 801 0.801 323.15 0 0 0.06408 -0.0296908 -0.0296908 0 0 0 1050.73 2.71251e-07 2.7125e-07 0 0 0 48.8495 8.17346 3.53657 37.1395 +1 1 1 802 0.802 323.15 0 0 0.06416 -0.0297297 -0.0297297 0 0 0 1051.22 2.71251e-07 2.7125e-07 0 0 0 48.9336 8.18109 3.54717 37.2053 +1 1 1 803 0.803 323.15 0 0 0.06424 -0.0297686 -0.0297686 0 0 0 1051.71 2.71251e-07 2.7125e-07 0 0 0 49.0177 8.18871 3.55779 37.2712 +1 1 1 804 0.804 323.15 0 0 0.06432 -0.0298075 -0.0298075 0 0 0 1052.2 2.71251e-07 2.7125e-07 0 0 0 49.1018 8.19634 3.56843 37.3371 +1 1 1 805 0.805 323.15 0 0 0.0644 -0.0298464 -0.0298464 0 0 0 1052.69 2.71251e-07 2.7125e-07 0 0 0 49.186 8.20397 3.57908 37.403 +1 1 1 806 0.806 323.15 0 0 0.06448 -0.0298853 -0.0298853 0 0 0 1053.18 2.71251e-07 2.7125e-07 0 0 0 49.2703 8.2116 3.58975 37.4689 +1 1 1 807 0.807 323.15 0 0 0.06456 -0.0299242 -0.0299242 0 0 0 1053.67 2.71251e-07 2.7125e-07 0 0 0 49.3545 8.21922 3.60044 37.5349 +1 1 1 808 0.808 323.15 0 0 0.06464 -0.0299631 -0.0299631 0 0 0 1054.16 2.71251e-07 2.7125e-07 0 0 0 49.4388 8.22685 3.61114 37.6009 +1 1 1 809 0.809 323.15 0 0 0.06472 -0.030002 -0.030002 0 0 0 1054.65 2.71251e-07 2.7125e-07 0 0 0 49.5232 8.23448 3.62186 37.6669 +1 1 1 810 0.81 323.15 0 0 0.0648 -0.030041 -0.030041 0 0 0 1055.14 2.71251e-07 2.7125e-07 0 0 0 49.6076 8.2421 3.6326 37.7329 +1 1 1 811 0.811 323.15 0 0 0.06488 -0.0300799 -0.0300799 0 0 0 1055.62 2.71251e-07 2.7125e-07 0 0 0 49.692 8.24973 3.64335 37.7989 +1 1 1 812 0.812 323.15 0 0 0.06496 -0.0301188 -0.0301188 0 0 0 1056.11 2.71251e-07 2.7125e-07 0 0 0 49.7765 8.25735 3.65412 37.865 +1 1 1 813 0.813 323.15 0 0 0.06504 -0.0301577 -0.0301577 0 0 0 1056.6 2.71251e-07 2.7125e-07 0 0 0 49.861 8.26497 3.66491 37.9311 +1 1 1 814 0.814 323.15 0 0 0.06512 -0.0301966 -0.0301966 0 0 0 1057.09 2.71251e-07 2.7125e-07 0 0 0 49.9455 8.2726 3.67571 37.9972 +1 1 1 815 0.815 323.15 0 0 0.0652 -0.0302355 -0.0302355 0 0 0 1057.57 2.71252e-07 2.7125e-07 0 0 0 50.0301 8.28022 3.68653 38.0634 +1 1 1 816 0.816 323.15 0 0 0.06528 -0.0302744 -0.0302744 0 0 0 1058.06 2.71252e-07 2.71251e-07 0 0 0 50.1148 8.28784 3.69736 38.1296 +1 1 1 817 0.817 323.15 0 0 0.06536 -0.0303133 -0.0303133 0 0 0 1058.55 2.71252e-07 2.71251e-07 0 0 0 50.1994 8.29546 3.70821 38.1957 +1 1 1 818 0.818 323.15 0 0 0.06544 -0.0303522 -0.0303522 0 0 0 1059.03 2.71252e-07 2.71251e-07 0 0 0 50.2841 8.30309 3.71908 38.262 +1 1 1 819 0.819 323.15 0 0 0.06552 -0.0303912 -0.0303912 0 0 0 1059.52 2.71252e-07 2.7125e-07 0 0 0 50.3689 8.31071 3.72996 38.3282 +1 1 1 820 0.82 323.15 0 0 0.0656 -0.0304301 -0.0304301 0 0 0 1060 2.71252e-07 2.71251e-07 0 0 0 50.4536 8.31833 3.74086 38.3945 +1 1 1 821 0.821 323.15 0 0 0.06568 -0.030469 -0.030469 0 0 0 1060.49 2.71252e-07 2.7125e-07 0 0 0 50.5385 8.32595 3.75178 38.4607 +1 1 1 822 0.822 323.15 0 0 0.06576 -0.0305079 -0.0305079 0 0 0 1060.97 2.71252e-07 2.7125e-07 0 0 0 50.6233 8.33357 3.76272 38.527 +1 1 1 823 0.823 323.15 0 0 0.06584 -0.0305468 -0.0305468 0 0 0 1061.46 2.71252e-07 2.71251e-07 0 0 0 50.7082 8.34119 3.77367 38.5934 +1 1 1 824 0.824 323.15 0 0 0.06592 -0.0305857 -0.0305857 0 0 0 1061.94 2.71252e-07 2.7125e-07 0 0 0 50.7932 8.34881 3.78463 38.6597 +1 1 1 825 0.825 323.15 0 0 0.066 -0.0306246 -0.0306246 0 0 0 1062.43 2.71252e-07 2.7125e-07 0 0 0 50.8781 8.35643 3.79561 38.7261 +1 1 1 826 0.826 323.15 0 0 0.06608 -0.0306636 -0.0306636 0 0 0 1062.91 2.71252e-07 2.7125e-07 0 0 0 50.9631 8.36405 3.80661 38.7925 +1 1 1 827 0.827 323.15 0 0 0.06616 -0.0307025 -0.0307025 0 0 0 1063.4 2.71252e-07 2.7125e-07 0 0 0 51.0482 8.37166 3.81763 38.8589 +1 1 1 828 0.828 323.15 0 0 0.06624 -0.0307414 -0.0307414 0 0 0 1063.88 2.71251e-07 2.7125e-07 0 0 0 51.1333 8.37928 3.82866 38.9253 +1 1 1 829 0.829 323.15 0 0 0.06632 -0.0307803 -0.0307803 0 0 0 1064.36 2.71252e-07 2.7125e-07 0 0 0 51.2184 8.3869 3.83971 38.9918 +1 1 1 830 0.83 323.15 0 0 0.0664 -0.0308192 -0.0308192 0 0 0 1064.85 2.71252e-07 2.7125e-07 0 0 0 51.3036 8.39452 3.85078 39.0583 +1 1 1 831 0.831 323.15 0 0 0.06648 -0.0308582 -0.0308582 0 0 0 1065.33 2.71252e-07 2.7125e-07 0 0 0 51.3888 8.40213 3.86186 39.1248 +1 1 1 832 0.832 323.15 0 0 0.06656 -0.0308971 -0.0308971 0 0 0 1065.81 2.71252e-07 2.71251e-07 0 0 0 51.474 8.40975 3.87296 39.1913 +1 1 1 833 0.833 323.15 0 0 0.06664 -0.030936 -0.030936 0 0 0 1066.29 2.71252e-07 2.7125e-07 0 0 0 51.5593 8.41736 3.88407 39.2579 +1 1 1 834 0.834 323.15 0 0 0.06672 -0.0309749 -0.0309749 0 0 0 1066.78 2.71252e-07 2.71251e-07 0 0 0 51.6446 8.42498 3.8952 39.3245 +1 1 1 835 0.835 323.15 0 0 0.0668 -0.0310138 -0.0310138 0 0 0 1067.26 2.71252e-07 2.7125e-07 0 0 0 51.73 8.4326 3.90635 39.3911 +1 1 1 836 0.836 323.15 0 0 0.06688 -0.0310528 -0.0310528 0 0 0 1067.74 2.71252e-07 2.7125e-07 0 0 0 51.8154 8.44021 3.91751 39.4577 +1 1 1 837 0.837 323.15 0 0 0.06696 -0.0310917 -0.0310917 0 0 0 1068.22 2.71252e-07 2.7125e-07 0 0 0 51.9008 8.44782 3.92869 39.5243 +1 1 1 838 0.838 323.15 0 0 0.06704 -0.0311306 -0.0311306 0 0 0 1068.7 2.71251e-07 2.7125e-07 0 0 0 51.9863 8.45544 3.93989 39.591 +1 1 1 839 0.839 323.15 0 0 0.06712 -0.0311695 -0.0311695 0 0 0 1069.18 2.71251e-07 2.7125e-07 0 0 0 52.0718 8.46305 3.9511 39.6577 +1 1 1 840 0.84 323.15 0 0 0.0672 -0.0312085 -0.0312085 0 0 0 1069.67 2.71251e-07 2.7125e-07 0 0 0 52.1574 8.47067 3.96233 39.7244 +1 1 1 841 0.841 323.15 0 0 0.06728 -0.0312474 -0.0312474 0 0 0 1070.15 2.71251e-07 2.7125e-07 0 0 0 52.243 8.47828 3.97358 39.7911 +1 1 1 842 0.842 323.15 0 0 0.06736 -0.0312863 -0.0312863 0 0 0 1070.63 2.71251e-07 2.7125e-07 0 0 0 52.3286 8.48589 3.98484 39.8579 +1 1 1 843 0.843 323.15 0 0 0.06744 -0.0313252 -0.0313252 0 0 0 1071.11 2.71251e-07 2.71249e-07 0 0 0 52.4143 8.4935 3.99612 39.9247 +1 1 1 844 0.844 323.15 0 0 0.06752 -0.0313642 -0.0313642 0 0 0 1071.59 2.71251e-07 2.71249e-07 0 0 0 52.5 8.50112 4.00742 39.9915 +1 1 1 845 0.845 323.15 0 0 0.0676 -0.0314031 -0.0314031 0 0 0 1072.07 2.71251e-07 2.71249e-07 0 0 0 52.5857 8.50873 4.01873 40.0583 +1 1 1 846 0.846 323.15 0 0 0.06768 -0.031442 -0.031442 0 0 0 1072.55 2.71251e-07 2.71249e-07 0 0 0 52.6715 8.51634 4.03006 40.1251 +1 1 1 847 0.847 323.15 0 0 0.06776 -0.031481 -0.031481 0 0 0 1073.02 2.71251e-07 2.71249e-07 0 0 0 52.7573 8.52395 4.0414 40.192 +1 1 1 848 0.848 323.15 0 0 0.06784 -0.0315199 -0.0315199 0 0 0 1073.5 2.71252e-07 2.7125e-07 0 0 0 52.8432 8.53156 4.05277 40.2589 +1 1 1 849 0.849 323.15 0 0 0.06792 -0.0315588 -0.0315588 0 0 0 1073.98 2.71252e-07 2.7125e-07 0 0 0 52.9291 8.53917 4.06414 40.3258 +1 1 1 850 0.85 323.15 0 0 0.068 -0.0315977 -0.0315977 0 0 0 1074.46 2.71252e-07 2.7125e-07 0 0 0 53.015 8.54678 4.07554 40.3927 +1 1 1 851 0.851 323.15 0 0 0.06808 -0.0316367 -0.0316367 0 0 0 1074.94 2.71252e-07 2.71251e-07 0 0 0 53.101 8.55439 4.08695 40.4597 +1 1 1 852 0.852 323.15 0 0 0.06816 -0.0316756 -0.0316756 0 0 0 1075.42 2.71252e-07 2.7125e-07 0 0 0 53.187 8.562 4.09838 40.5267 +1 1 1 853 0.853 323.15 0 0 0.06824 -0.0317145 -0.0317145 0 0 0 1075.89 2.71251e-07 2.7125e-07 0 0 0 53.2731 8.56961 4.10982 40.5937 +1 1 1 854 0.854 323.15 0 0 0.06832 -0.0317535 -0.0317535 0 0 0 1076.37 2.71251e-07 2.71249e-07 0 0 0 53.3592 8.57722 4.12128 40.6607 +1 1 1 855 0.855 323.15 0 0 0.0684 -0.0317924 -0.0317924 0 0 0 1076.85 2.71251e-07 2.71249e-07 0 0 0 53.4453 8.58483 4.13276 40.7277 +1 1 1 856 0.856 323.15 0 0 0.06848 -0.0318313 -0.0318313 0 0 0 1077.33 2.71251e-07 2.71249e-07 0 0 0 53.5315 8.59244 4.14425 40.7948 +1 1 1 857 0.857 323.15 0 0 0.06856 -0.0318703 -0.0318703 0 0 0 1077.8 2.71251e-07 2.71249e-07 0 0 0 53.6177 8.60005 4.15576 40.8619 +1 1 1 858 0.858 323.15 0 0 0.06864 -0.0319092 -0.0319092 0 0 0 1078.28 2.71251e-07 2.71249e-07 0 0 0 53.7039 8.60765 4.16729 40.929 +1 1 1 859 0.859 323.15 0 0 0.06872 -0.0319481 -0.0319481 0 0 0 1078.76 2.71251e-07 2.71249e-07 0 0 0 53.7902 8.61526 4.17883 40.9961 +1 1 1 860 0.86 323.15 0 0 0.0688 -0.0319871 -0.0319871 0 0 0 1079.23 2.71251e-07 2.71249e-07 0 0 0 53.8765 8.62287 4.19039 41.0633 +1 1 1 861 0.861 323.15 0 0 0.06888 -0.032026 -0.032026 0 0 0 1079.71 2.71251e-07 2.71249e-07 0 0 0 53.9629 8.63048 4.20197 41.1304 +1 1 1 862 0.862 323.15 0 0 0.06896 -0.0320649 -0.0320649 0 0 0 1080.18 2.71251e-07 2.71249e-07 0 0 0 54.0493 8.63808 4.21356 41.1976 +1 1 1 863 0.863 323.15 0 0 0.06904 -0.0321039 -0.0321039 0 0 0 1080.66 2.71251e-07 2.71249e-07 0 0 0 54.1357 8.64569 4.22517 41.2648 +1 1 1 864 0.864 323.15 0 0 0.06912 -0.0321428 -0.0321428 0 0 0 1081.13 2.7125e-07 2.71249e-07 0 0 0 54.2222 8.6533 4.2368 41.3321 +1 1 1 865 0.865 323.15 0 0 0.0692 -0.0321818 -0.0321818 0 0 0 1081.61 2.7125e-07 2.71248e-07 0 0 0 54.3087 8.6609 4.24844 41.3993 +1 1 1 866 0.866 323.15 0 0 0.06928 -0.0322207 -0.0322207 0 0 0 1082.08 2.71251e-07 2.71249e-07 0 0 0 54.3952 8.66851 4.2601 41.4666 +1 1 1 867 0.867 323.15 0 0 0.06936 -0.0322596 -0.0322596 0 0 0 1082.56 2.71251e-07 2.71249e-07 0 0 0 54.4818 8.67611 4.27177 41.5339 +1 1 1 868 0.868 323.15 0 0 0.06944 -0.0322986 -0.0322986 0 0 0 1083.03 2.71251e-07 2.71249e-07 0 0 0 54.5684 8.68372 4.28347 41.6013 +1 1 1 869 0.869 323.15 0 0 0.06952 -0.0323375 -0.0323375 0 0 0 1083.51 2.71251e-07 2.71249e-07 0 0 0 54.6551 8.69132 4.29517 41.6686 +1 1 1 870 0.87 323.15 0 0 0.0696 -0.0323765 -0.0323765 0 0 0 1083.98 2.71251e-07 2.71249e-07 0 0 0 54.7418 8.69893 4.3069 41.736 +1 1 1 871 0.871 323.15 0 0 0.06968 -0.0324154 -0.0324154 0 0 0 1084.46 2.71252e-07 2.71249e-07 0 0 0 54.8285 8.70653 4.31864 41.8034 +1 1 1 872 0.872 323.15 0 0 0.06976 -0.0324543 -0.0324543 0 0 0 1084.93 2.71252e-07 2.7125e-07 0 0 0 54.9153 8.71414 4.3304 41.8708 +1 1 1 873 0.873 323.15 0 0 0.06984 -0.0324933 -0.0324933 0 0 0 1085.4 2.71251e-07 2.71249e-07 0 0 0 55.0021 8.72174 4.34217 41.9382 +1 1 1 874 0.874 323.15 0 0 0.06992 -0.0325322 -0.0325322 0 0 0 1085.88 2.71251e-07 2.71249e-07 0 0 0 55.089 8.72935 4.35396 42.0057 +1 1 1 875 0.875 323.15 0 0 0.07 -0.0325712 -0.0325712 0 0 0 1086.35 2.71251e-07 2.71249e-07 0 0 0 55.1759 8.73695 4.36577 42.0732 +1 1 1 876 0.876 323.15 0 0 0.07008 -0.0326101 -0.0326101 0 0 0 1086.82 2.71251e-07 2.71248e-07 0 0 0 55.2628 8.74455 4.37759 42.1407 +1 1 1 877 0.877 323.15 0 0 0.07016 -0.0326491 -0.0326491 0 0 0 1087.29 2.71251e-07 2.71248e-07 0 0 0 55.3498 8.75216 4.38943 42.2082 +1 1 1 878 0.878 323.15 0 0 0.07024 -0.032688 -0.032688 0 0 0 1087.77 2.71251e-07 2.71248e-07 0 0 0 55.4368 8.75976 4.40129 42.2757 +1 1 1 879 0.879 323.15 0 0 0.07032 -0.0327269 -0.0327269 0 0 0 1088.24 2.71251e-07 2.71249e-07 0 0 0 55.5238 8.76736 4.41316 42.3433 +1 1 1 880 0.88 323.15 0 0 0.0704 -0.0327659 -0.0327659 0 0 0 1088.71 2.71252e-07 2.71249e-07 0 0 0 55.6109 8.77497 4.42505 42.4109 +1 1 1 881 0.881 323.15 0 0 0.07048 -0.0328048 -0.0328048 0 0 0 1089.18 2.71252e-07 2.71249e-07 0 0 0 55.698 8.78257 4.43696 42.4785 +1 1 1 882 0.882 323.15 0 0 0.07056 -0.0328438 -0.0328438 0 0 0 1089.65 2.71252e-07 2.71249e-07 0 0 0 55.7852 8.79017 4.44888 42.5461 +1 1 1 883 0.883 323.15 0 0 0.07064 -0.0328827 -0.0328827 0 0 0 1090.12 2.71252e-07 2.7125e-07 0 0 0 55.8723 8.79777 4.46082 42.6138 +1 1 1 884 0.884 323.15 0 0 0.07072 -0.0329217 -0.0329217 0 0 0 1090.59 2.71252e-07 2.7125e-07 0 0 0 55.9596 8.80537 4.47278 42.6814 +1 1 1 885 0.885 323.15 0 0 0.0708 -0.0329606 -0.0329606 0 0 0 1091.06 2.71252e-07 2.7125e-07 0 0 0 56.0468 8.81298 4.48475 42.7491 +1 1 1 886 0.886 323.15 0 0 0.07088 -0.0329996 -0.0329996 0 0 0 1091.53 2.71253e-07 2.7125e-07 0 0 0 56.1341 8.82058 4.49674 42.8168 +1 1 1 887 0.887 323.15 0 0 0.07096 -0.0330385 -0.0330385 0 0 0 1092.01 2.71253e-07 2.7125e-07 0 0 0 56.2215 8.82818 4.50874 42.8846 +1 1 1 888 0.888 323.15 0 0 0.07104 -0.0330775 -0.0330775 0 0 0 1092.48 2.71253e-07 2.7125e-07 0 0 0 56.3089 8.83578 4.52077 42.9523 +1 1 1 889 0.889 323.15 0 0 0.07112 -0.0331164 -0.0331164 0 0 0 1092.94 2.71252e-07 2.7125e-07 0 0 0 56.3963 8.84338 4.5328 43.0201 +1 1 1 890 0.89 323.15 0 0 0.0712 -0.0331554 -0.0331554 0 0 0 1093.41 2.71252e-07 2.7125e-07 0 0 0 56.4837 8.85098 4.54486 43.0879 +1 1 1 891 0.891 323.15 0 0 0.07128 -0.0331943 -0.0331943 0 0 0 1093.88 2.71252e-07 2.71249e-07 0 0 0 56.5712 8.85858 4.55693 43.1557 +1 1 1 892 0.892 323.15 0 0 0.07136 -0.0332333 -0.0332333 0 0 0 1094.35 2.71252e-07 2.7125e-07 0 0 0 56.6588 8.86618 4.56902 43.2236 +1 1 1 893 0.893 323.15 0 0 0.07144 -0.0332722 -0.0332722 0 0 0 1094.82 2.71252e-07 2.71249e-07 0 0 0 56.7463 8.87378 4.58112 43.2914 +1 1 1 894 0.894 323.15 0 0 0.07152 -0.0333112 -0.0333112 0 0 0 1095.29 2.71252e-07 2.7125e-07 0 0 0 56.8339 8.88138 4.59325 43.3593 +1 1 1 895 0.895 323.15 0 0 0.0716 -0.0333501 -0.0333501 0 0 0 1095.76 2.71252e-07 2.7125e-07 0 0 0 56.9216 8.88898 4.60538 43.4272 +1 1 1 896 0.896 323.15 0 0 0.07168 -0.0333891 -0.0333891 0 0 0 1096.23 2.71252e-07 2.7125e-07 0 0 0 57.0093 8.89658 4.61754 43.4951 +1 1 1 897 0.897 323.15 0 0 0.07176 -0.033428 -0.033428 0 0 0 1096.7 2.71253e-07 2.71251e-07 0 0 0 57.097 8.90418 4.62971 43.5631 +1 1 1 898 0.898 323.15 0 0 0.07184 -0.033467 -0.033467 0 0 0 1097.16 2.71253e-07 2.71251e-07 0 0 0 57.1847 8.91178 4.6419 43.631 +1 1 1 899 0.899 323.15 0 0 0.07192 -0.0335059 -0.0335059 0 0 0 1097.63 2.71254e-07 2.71252e-07 0 0 0 57.2725 8.91938 4.6541 43.699 +1 1 1 900 0.9 323.15 0 0 0.072 -0.0335449 -0.0335449 0 0 0 1098.1 2.71254e-07 2.71252e-07 0 0 0 57.3603 8.92698 4.66632 43.767 +1 1 1 901 0.901 323.15 0 0 0.07208 -0.0335838 -0.0335838 0 0 0 1098.57 2.71254e-07 2.71252e-07 0 0 0 57.4482 8.93458 4.67856 43.8351 +1 1 1 902 0.902 323.15 0 0 0.07216 -0.0336228 -0.0336228 0 0 0 1099.03 2.71254e-07 2.71252e-07 0 0 0 57.5361 8.94218 4.69081 43.9031 +1 1 1 903 0.903 323.15 0 0 0.07224 -0.0336618 -0.0336618 0 0 0 1099.5 2.71254e-07 2.71252e-07 0 0 0 57.6241 8.94978 4.70308 43.9712 +1 1 1 904 0.904 323.15 0 0 0.07232 -0.0337007 -0.0337007 0 0 0 1099.97 2.71254e-07 2.71252e-07 0 0 0 57.712 8.95737 4.71537 44.0393 +1 1 1 905 0.905 323.15 0 0 0.0724 -0.0337397 -0.0337397 0 0 0 1100.43 2.71254e-07 2.71251e-07 0 0 0 57.8001 8.96497 4.72767 44.1074 +1 1 1 906 0.906 323.15 0 0 0.07248 -0.0337786 -0.0337786 0 0 0 1100.9 2.71254e-07 2.71252e-07 0 0 0 57.8881 8.97257 4.73999 44.1755 +1 1 1 907 0.907 323.15 0 0 0.07256 -0.0338176 -0.0338176 0 0 0 1101.37 2.71255e-07 2.71252e-07 0 0 0 57.9762 8.98017 4.75233 44.2437 +1 1 1 908 0.908 323.15 0 0 0.07264 -0.0338565 -0.0338565 0 0 0 1101.83 2.71256e-07 2.71253e-07 0 0 0 58.0643 8.98777 4.76468 44.3119 +1 1 1 909 0.909 323.15 0 0 0.07272 -0.0338955 -0.0338955 0 0 0 1102.3 2.71256e-07 2.71253e-07 0 0 0 58.1525 8.99537 4.77705 44.3801 +1 1 1 910 0.91 323.15 0 0 0.0728 -0.0339345 -0.0339345 0 0 0 1102.76 2.71257e-07 2.71254e-07 0 0 0 58.2407 9.00296 4.78943 44.4483 +1 1 1 911 0.911 323.15 0 0 0.07288 -0.0339734 -0.0339734 0 0 0 1103.23 2.71257e-07 2.71254e-07 0 0 0 58.3289 9.01056 4.80184 44.5165 +1 1 1 912 0.912 323.15 0 0 0.07296 -0.0340124 -0.0340124 0 0 0 1103.69 2.71256e-07 2.71254e-07 0 0 0 58.4172 9.01816 4.81425 44.5848 +1 1 1 913 0.913 323.15 0 0 0.07304 -0.0340513 -0.0340513 0 0 0 1104.16 2.71256e-07 2.71254e-07 0 0 0 58.5055 9.02576 4.82669 44.6531 +1 1 1 914 0.914 323.15 0 0 0.07312 -0.0340903 -0.0340903 0 0 0 1104.62 2.71256e-07 2.71254e-07 0 0 0 58.5939 9.03335 4.83914 44.7214 +1 1 1 915 0.915 323.15 0 0 0.0732 -0.0341293 -0.0341293 0 0 0 1105.09 2.71256e-07 2.71254e-07 0 0 0 58.6823 9.04095 4.85161 44.7897 +1 1 1 916 0.916 323.15 0 0 0.07328 -0.0341682 -0.0341682 0 0 0 1105.55 2.71257e-07 2.71254e-07 0 0 0 58.7707 9.04855 4.8641 44.858 +1 1 1 917 0.917 323.15 0 0 0.07336 -0.0342072 -0.0342072 0 0 0 1106.01 2.71257e-07 2.71255e-07 0 0 0 58.8591 9.05614 4.8766 44.9264 +1 1 1 918 0.918 323.15 0 0 0.07344 -0.0342462 -0.0342462 0 0 0 1106.48 2.71257e-07 2.71254e-07 0 0 0 58.9476 9.06374 4.88912 44.9948 +1 1 1 919 0.919 323.15 0 0 0.07352 -0.0342851 -0.0342851 0 0 0 1106.94 2.71257e-07 2.71254e-07 0 0 0 59.0362 9.07134 4.90165 45.0632 +1 1 1 920 0.92 323.15 0 0 0.0736 -0.0343241 -0.0343241 0 0 0 1107.41 2.71257e-07 2.71254e-07 0 0 0 59.1248 9.07893 4.9142 45.1316 +1 1 1 921 0.921 323.15 0 0 0.07368 -0.0343631 -0.0343631 0 0 0 1107.87 2.71256e-07 2.71253e-07 0 0 0 59.2134 9.08653 4.92677 45.2001 +1 1 1 922 0.922 323.15 0 0 0.07376 -0.034402 -0.034402 0 0 0 1108.33 2.71257e-07 2.71254e-07 0 0 0 59.302 9.09413 4.93935 45.2685 +1 1 1 923 0.923 323.15 0 0 0.07384 -0.034441 -0.034441 0 0 0 1108.79 2.71256e-07 2.71253e-07 0 0 0 59.3907 9.10172 4.95195 45.337 +1 1 1 924 0.924 323.15 0 0 0.07392 -0.0344799 -0.0344799 0 0 0 1109.26 2.71257e-07 2.71253e-07 0 0 0 59.4794 9.10932 4.96457 45.4055 +1 1 1 925 0.925 323.15 0 0 0.074 -0.0345189 -0.0345189 0 0 0 1109.72 2.71256e-07 2.71253e-07 0 0 0 59.5682 9.11692 4.97721 45.4741 +1 1 1 926 0.926 323.15 0 0 0.07408 -0.0345579 -0.0345579 0 0 0 1110.18 2.71256e-07 2.71253e-07 0 0 0 59.657 9.12451 4.98986 45.5426 +1 1 1 927 0.927 323.15 0 0 0.07416 -0.0345968 -0.0345968 0 0 0 1110.64 2.71256e-07 2.71253e-07 0 0 0 59.7458 9.13211 5.00252 45.6112 +1 1 1 928 0.928 323.15 0 0 0.07424 -0.0346358 -0.0346358 0 0 0 1111.11 2.71257e-07 2.71254e-07 0 0 0 59.8347 9.1397 5.01521 45.6798 +1 1 1 929 0.929 323.15 0 0 0.07432 -0.0346748 -0.0346748 0 0 0 1111.57 2.71257e-07 2.71254e-07 0 0 0 59.9236 9.1473 5.02791 45.7484 +1 1 1 930 0.93 323.15 0 0 0.0744 -0.0347138 -0.0347138 0 0 0 1112.03 2.71256e-07 2.71253e-07 0 0 0 60.0125 9.1549 5.04063 45.817 +1 1 1 931 0.931 323.15 0 0 0.07448 -0.0347527 -0.0347527 0 0 0 1112.49 2.71256e-07 2.71253e-07 0 0 0 60.1015 9.16249 5.05336 45.8857 +1 1 1 932 0.932 323.15 0 0 0.07456 -0.0347917 -0.0347917 0 0 0 1112.95 2.71256e-07 2.71253e-07 0 0 0 60.1905 9.17009 5.06611 45.9543 +1 1 1 933 0.933 323.15 0 0 0.07464 -0.0348307 -0.0348307 0 0 0 1113.41 2.71256e-07 2.71253e-07 0 0 0 60.2796 9.17768 5.07888 46.023 +1 1 1 934 0.934 323.15 0 0 0.07472 -0.0348696 -0.0348696 0 0 0 1113.87 2.71256e-07 2.71254e-07 0 0 0 60.3687 9.18528 5.09166 46.0917 +1 1 1 935 0.935 323.15 0 0 0.0748 -0.0349086 -0.0349086 0 0 0 1114.33 2.71257e-07 2.71254e-07 0 0 0 60.4578 9.19287 5.10446 46.1605 +1 1 1 936 0.936 323.15 0 0 0.07488 -0.0349476 -0.0349476 0 0 0 1114.79 2.71256e-07 2.71254e-07 0 0 0 60.547 9.20047 5.11727 46.2292 +1 1 1 937 0.937 323.15 0 0 0.07496 -0.0349865 -0.0349865 0 0 0 1115.25 2.71256e-07 2.71253e-07 0 0 0 60.6362 9.20807 5.13011 46.298 +1 1 1 938 0.938 323.15 0 0 0.07504 -0.0350255 -0.0350255 0 0 0 1115.71 2.71256e-07 2.71253e-07 0 0 0 60.7254 9.21566 5.14296 46.3668 +1 1 1 939 0.939 323.15 0 0 0.07512 -0.0350645 -0.0350645 0 0 0 1116.17 2.71255e-07 2.71253e-07 0 0 0 60.8147 9.22326 5.15582 46.4356 +1 1 1 940 0.94 323.15 0 0 0.0752 -0.0351035 -0.0351035 0 0 0 1116.63 2.71255e-07 2.71253e-07 0 0 0 60.904 9.23085 5.16871 46.5044 +1 1 1 941 0.941 323.15 0 0 0.07528 -0.0351424 -0.0351424 0 0 0 1117.09 2.71255e-07 2.71252e-07 0 0 0 60.9933 9.23845 5.1816 46.5733 +1 1 1 942 0.942 323.15 0 0 0.07536 -0.0351814 -0.0351814 0 0 0 1117.55 2.71255e-07 2.71252e-07 0 0 0 61.0827 9.24604 5.19452 46.6422 +1 1 1 943 0.943 323.15 0 0 0.07544 -0.0352204 -0.0352204 0 0 0 1118.01 2.71255e-07 2.71252e-07 0 0 0 61.1722 9.25364 5.20745 46.7111 +1 1 1 944 0.944 323.15 0 0 0.07552 -0.0352594 -0.0352594 0 0 0 1118.47 2.71255e-07 2.71252e-07 0 0 0 61.2616 9.26123 5.2204 46.78 +1 1 1 945 0.945 323.15 0 0 0.0756 -0.0352983 -0.0352983 0 0 0 1118.93 2.71255e-07 2.71252e-07 0 0 0 61.3511 9.26883 5.23337 46.8489 +1 1 1 946 0.946 323.15 0 0 0.07568 -0.0353373 -0.0353373 0 0 0 1119.38 2.71255e-07 2.71252e-07 0 0 0 61.4406 9.27642 5.24635 46.9179 +1 1 1 947 0.947 323.15 0 0 0.07576 -0.0353763 -0.0353763 0 0 0 1119.84 2.71255e-07 2.71252e-07 0 0 0 61.5302 9.28402 5.25935 46.9868 +1 1 1 948 0.948 323.15 0 0 0.07584 -0.0354153 -0.0354153 0 0 0 1120.3 2.71254e-07 2.71252e-07 0 0 0 61.6198 9.29161 5.27236 47.0558 +1 1 1 949 0.949 323.15 0 0 0.07592 -0.0354542 -0.0354542 0 0 0 1120.76 2.71255e-07 2.71251e-07 0 0 0 61.7095 9.29921 5.28539 47.1249 +1 1 1 950 0.95 323.15 0 0 0.076 -0.0354932 -0.0354932 0 0 0 1121.22 2.71255e-07 2.71252e-07 0 0 0 61.7991 9.3068 5.29844 47.1939 +1 1 1 951 0.951 323.15 0 0 0.07608 -0.0355322 -0.0355322 0 0 0 1121.67 2.71255e-07 2.71252e-07 0 0 0 61.8889 9.3144 5.31151 47.263 +1 1 1 952 0.952 323.15 0 0 0.07616 -0.0355712 -0.0355712 0 0 0 1122.13 2.71254e-07 2.71251e-07 0 0 0 61.9786 9.32199 5.32459 47.332 +1 1 1 953 0.953 323.15 0 0 0.07624 -0.0356101 -0.0356101 0 0 0 1122.59 2.71254e-07 2.71251e-07 0 0 0 62.0684 9.32959 5.33769 47.4011 +1 1 1 954 0.954 323.15 0 0 0.07632 -0.0356491 -0.0356491 0 0 0 1123.04 2.71254e-07 2.71251e-07 0 0 0 62.1582 9.33718 5.3508 47.4702 +1 1 1 955 0.955 323.15 0 0 0.0764 -0.0356881 -0.0356881 0 0 0 1123.5 2.71253e-07 2.7125e-07 0 0 0 62.2481 9.34478 5.36393 47.5394 +1 1 1 956 0.956 323.15 0 0 0.07648 -0.0357271 -0.0357271 0 0 0 1123.96 2.71253e-07 2.71249e-07 0 0 0 62.338 9.35237 5.37708 47.6085 +1 1 1 957 0.957 323.15 0 0 0.07656 -0.0357661 -0.0357661 0 0 0 1124.41 2.71252e-07 2.71249e-07 0 0 0 62.4279 9.35997 5.39025 47.6777 +1 1 1 958 0.958 323.15 0 0 0.07664 -0.035805 -0.035805 0 0 0 1124.87 2.71252e-07 2.71249e-07 0 0 0 62.5179 9.36756 5.40343 47.7469 +1 1 1 959 0.959 323.15 0 0 0.07672 -0.035844 -0.035844 0 0 0 1125.33 2.71252e-07 2.71248e-07 0 0 0 62.6079 9.37516 5.41663 47.8161 +1 1 1 960 0.96 323.15 0 0 0.0768 -0.035883 -0.035883 0 0 0 1125.78 2.71252e-07 2.71248e-07 0 0 0 62.6979 9.38275 5.42984 47.8854 +1 1 1 961 0.961 323.15 0 0 0.07688 -0.035922 -0.035922 0 0 0 1126.24 2.71252e-07 2.71248e-07 0 0 0 62.788 9.39035 5.44307 47.9546 +1 1 1 962 0.962 323.15 0 0 0.07696 -0.035961 -0.035961 0 0 0 1126.69 2.71252e-07 2.71248e-07 0 0 0 62.8781 9.39794 5.45632 48.0239 +1 1 1 963 0.963 323.15 0 0 0.07704 -0.0359999 -0.0359999 0 0 0 1127.15 2.71252e-07 2.71248e-07 0 0 0 62.9683 9.40554 5.46958 48.0932 +1 1 1 964 0.964 323.15 0 0 0.07712 -0.0360389 -0.0360389 0 0 0 1127.6 2.71252e-07 2.71248e-07 0 0 0 63.0585 9.41313 5.48286 48.1625 +1 1 1 965 0.965 323.15 0 0 0.0772 -0.0360779 -0.0360779 0 0 0 1128.06 2.71252e-07 2.71248e-07 0 0 0 63.1487 9.42073 5.49616 48.2318 +1 1 1 966 0.966 323.15 0 0 0.07728 -0.0361169 -0.0361169 0 0 0 1128.51 2.71252e-07 2.71248e-07 0 0 0 63.239 9.42832 5.50947 48.3012 +1 1 1 967 0.967 323.15 0 0 0.07736 -0.0361559 -0.0361559 0 0 0 1128.97 2.71252e-07 2.71248e-07 0 0 0 63.3293 9.43591 5.5228 48.3706 +1 1 1 968 0.968 323.15 0 0 0.07744 -0.0361949 -0.0361949 0 0 0 1129.42 2.71251e-07 2.71247e-07 0 0 0 63.4196 9.44351 5.53615 48.4399 +1 1 1 969 0.969 323.15 0 0 0.07752 -0.0362338 -0.0362338 0 0 0 1129.87 2.71251e-07 2.71247e-07 0 0 0 63.51 9.4511 5.54951 48.5094 +1 1 1 970 0.97 323.15 0 0 0.0776 -0.0362728 -0.0362728 0 0 0 1130.33 2.71251e-07 2.71247e-07 0 0 0 63.6004 9.4587 5.56289 48.5788 +1 1 1 971 0.971 323.15 0 0 0.07768 -0.0363118 -0.0363118 0 0 0 1130.78 2.71251e-07 2.71248e-07 0 0 0 63.6908 9.46629 5.57629 48.6482 +1 1 1 972 0.972 323.15 0 0 0.07776 -0.0363508 -0.0363508 0 0 0 1131.24 2.7125e-07 2.71247e-07 0 0 0 63.7813 9.47389 5.5897 48.7177 +1 1 1 973 0.973 323.15 0 0 0.07784 -0.0363898 -0.0363898 0 0 0 1131.69 2.7125e-07 2.71247e-07 0 0 0 63.8718 9.48148 5.60313 48.7872 +1 1 1 974 0.974 323.15 0 0 0.07792 -0.0364288 -0.0364288 0 0 0 1132.14 2.7125e-07 2.71247e-07 0 0 0 63.9624 9.48908 5.61658 48.8567 +1 1 1 975 0.975 323.15 0 0 0.078 -0.0364678 -0.0364678 0 0 0 1132.6 2.7125e-07 2.71247e-07 0 0 0 64.053 9.49668 5.63004 48.9263 +1 1 1 976 0.976 323.15 0 0 0.07808 -0.0365068 -0.0365068 0 0 0 1133.05 2.7125e-07 2.71247e-07 0 0 0 64.1436 9.50427 5.64352 48.9958 +1 1 1 977 0.977 323.15 0 0 0.07816 -0.0365457 -0.0365457 0 0 0 1133.5 2.71251e-07 2.71248e-07 0 0 0 64.2343 9.51187 5.65702 49.0654 +1 1 1 978 0.978 323.15 0 0 0.07824 -0.0365847 -0.0365847 0 0 0 1133.95 2.7125e-07 2.71248e-07 0 0 0 64.325 9.51946 5.67053 49.135 +1 1 1 979 0.979 323.15 0 0 0.07832 -0.0366237 -0.0366237 0 0 0 1134.41 2.7125e-07 2.71248e-07 0 0 0 64.4157 9.52706 5.68406 49.2046 +1 1 1 980 0.98 323.15 0 0 0.0784 -0.0366627 -0.0366627 0 0 0 1134.86 2.7125e-07 2.71247e-07 0 0 0 64.5065 9.53465 5.69761 49.2742 +1 1 1 981 0.981 323.15 0 0 0.07848 -0.0367017 -0.0367017 0 0 0 1135.31 2.7125e-07 2.71248e-07 0 0 0 64.5973 9.54225 5.71117 49.3438 +1 1 1 982 0.982 323.15 0 0 0.07856 -0.0367407 -0.0367407 0 0 0 1135.76 2.71251e-07 2.71249e-07 0 0 0 64.6881 9.54984 5.72475 49.4135 +1 1 1 983 0.983 323.15 0 0 0.07864 -0.0367797 -0.0367797 0 0 0 1136.21 2.71251e-07 2.71249e-07 0 0 0 64.779 9.55744 5.73835 49.4832 +1 1 1 984 0.984 323.15 0 0 0.07872 -0.0368187 -0.0368187 0 0 0 1136.66 2.71252e-07 2.71249e-07 0 0 0 64.8699 9.56503 5.75196 49.5529 +1 1 1 985 0.985 323.15 0 0 0.0788 -0.0368577 -0.0368577 0 0 0 1137.12 2.71252e-07 2.71249e-07 0 0 0 64.9609 9.57263 5.76559 49.6226 +1 1 1 986 0.986 323.15 0 0 0.07888 -0.0368967 -0.0368967 0 0 0 1137.57 2.71252e-07 2.71249e-07 0 0 0 65.0518 9.58022 5.77924 49.6924 +1 1 1 987 0.987 323.15 0 0 0.07896 -0.0369356 -0.0369356 0 0 0 1138.02 2.71253e-07 2.7125e-07 0 0 0 65.1429 9.58782 5.7929 49.7621 +1 1 1 988 0.988 323.15 0 0 0.07904 -0.0369746 -0.0369746 0 0 0 1138.47 2.71253e-07 2.71251e-07 0 0 0 65.2339 9.59542 5.80658 49.8319 +1 1 1 989 0.989 323.15 0 0 0.07912 -0.0370136 -0.0370136 0 0 0 1138.92 2.71254e-07 2.71251e-07 0 0 0 65.325 9.60301 5.82027 49.9017 +1 1 1 990 0.99 323.15 0 0 0.0792 -0.0370526 -0.0370526 0 0 0 1139.37 2.71253e-07 2.71251e-07 0 0 0 65.4162 9.61061 5.83398 49.9716 +1 1 1 991 0.991 323.15 0 0 0.07928 -0.0370916 -0.0370916 0 0 0 1139.82 2.71253e-07 2.71251e-07 0 0 0 65.5073 9.6182 5.84771 50.0414 +1 1 1 992 0.992 323.15 0 0 0.07936 -0.0371306 -0.0371306 0 0 0 1140.27 2.71253e-07 2.71251e-07 0 0 0 65.5985 9.6258 5.86146 50.1113 +1 1 1 993 0.993 323.15 0 0 0.07944 -0.0371696 -0.0371696 0 0 0 1140.72 2.71254e-07 2.71251e-07 0 0 0 65.6898 9.6334 5.87522 50.1811 +1 1 1 994 0.994 323.15 0 0 0.07952 -0.0372086 -0.0372086 0 0 0 1141.17 2.71254e-07 2.71251e-07 0 0 0 65.781 9.64099 5.889 50.251 +1 1 1 995 0.995 323.15 0 0 0.0796 -0.0372476 -0.0372476 0 0 0 1141.62 2.71254e-07 2.71252e-07 0 0 0 65.8724 9.64859 5.9028 50.321 +1 1 1 996 0.996 323.15 0 0 0.07968 -0.0372866 -0.0372866 0 0 0 1142.07 2.71255e-07 2.71252e-07 0 0 0 65.9637 9.65619 5.91661 50.3909 +1 1 1 997 0.997 323.15 0 0 0.07976 -0.0373256 -0.0373256 0 0 0 1142.52 2.71255e-07 2.71252e-07 0 0 0 66.0551 9.66378 5.93044 50.4609 +1 1 1 998 0.998 323.15 0 0 0.07984 -0.0373646 -0.0373646 0 0 0 1142.97 2.71255e-07 2.71252e-07 0 0 0 66.1465 9.67138 5.94428 50.5308 +1 1 1 999 0.999 323.15 0 0 0.07992 -0.0374036 -0.0374036 0 0 0 1143.41 2.71255e-07 2.71253e-07 0 0 0 66.238 9.67897 5.95814 50.6008 +1 1 1 1000 1 323.15 0 0 0.08 -0.0374426 -0.0374426 0 0 0 1143.86 2.71255e-07 2.71253e-07 0 0 0 66.3294 9.68657 5.97202 50.6709 +1 1 2 1 1.001 323.15 0 0 0.07984 -0.0373867 -0.0373867 0 0 0 1133.06 2.70984e-07 2.70982e-07 0 0 0 66.1473 9.50442 5.97202 50.6709 +1 1 2 2 1.002 323.15 0 0 0.07968 -0.0373309 -0.0373309 0 0 0 1122.25 2.70713e-07 2.70711e-07 0 0 0 65.9669 9.32399 5.97202 50.6709 +1 1 2 3 1.003 323.15 0 0 0.07952 -0.0372751 -0.0372751 0 0 0 1111.45 2.70443e-07 2.7044e-07 0 0 0 65.7882 9.1453 5.97202 50.6709 +1 1 2 4 1.004 323.15 0 0 0.07936 -0.0372192 -0.0372192 0 0 0 1100.64 2.70172e-07 2.70169e-07 0 0 0 65.6112 8.96833 5.97202 50.6709 +1 1 2 5 1.005 323.15 0 0 0.0792 -0.0371634 -0.0371634 0 0 0 1089.83 2.69901e-07 2.69898e-07 0 0 0 65.436 8.79309 5.97202 50.6709 +1 1 2 6 1.006 323.15 0 0 0.07904 -0.0371075 -0.0371075 0 0 0 1079.03 2.6963e-07 2.69628e-07 0 0 0 65.2625 8.61958 5.97202 50.6709 +1 1 2 7 1.007 323.15 0 0 0.07888 -0.0370517 -0.0370517 0 0 0 1068.22 2.69359e-07 2.69357e-07 0 0 0 65.0907 8.4478 5.97202 50.6709 +1 1 2 8 1.008 323.15 0 0 0.07872 -0.0369959 -0.0369959 0 0 0 1057.41 2.69088e-07 2.69086e-07 0 0 0 64.9206 8.27775 5.97202 50.6709 +1 1 2 9 1.009 323.15 0 0 0.07856 -0.03694 -0.03694 0 0 0 1046.61 2.68817e-07 2.68815e-07 0 0 0 64.7523 8.10943 5.97202 50.6709 +1 1 2 10 1.01 323.15 0 0 0.0784 -0.0368842 -0.0368842 0 0 0 1035.8 2.68547e-07 2.68544e-07 0 0 0 64.5857 7.94284 5.97202 50.6709 +1 1 2 11 1.011 323.15 0 0 0.07824 -0.0368283 -0.0368283 0 0 0 1025 2.68276e-07 2.68273e-07 0 0 0 64.4209 7.77797 5.97202 50.6709 +1 1 2 12 1.012 323.15 0 0 0.07808 -0.0367725 -0.0367725 0 0 0 1014.19 2.68005e-07 2.68003e-07 0 0 0 64.2577 7.61484 5.97202 50.6709 +1 1 2 13 1.013 323.15 0 0 0.07792 -0.0367167 -0.0367167 0 0 0 1003.38 2.67734e-07 2.67732e-07 0 0 0 64.0963 7.45343 5.97202 50.6709 +1 1 2 14 1.014 323.15 0 0 0.07776 -0.0366608 -0.0366608 0 0 0 992.578 2.67463e-07 2.67461e-07 0 0 0 63.9366 7.29376 5.97202 50.6709 +1 1 2 15 1.015 323.15 0 0 0.0776 -0.036605 -0.036605 0 0 0 981.772 2.67192e-07 2.6719e-07 0 0 0 63.7787 7.13581 5.97202 50.6709 +1 1 2 16 1.016 323.15 0 0 0.07744 -0.0365491 -0.0365491 0 0 0 970.966 2.66921e-07 2.66919e-07 0 0 0 63.6225 6.97959 5.97202 50.6709 +1 1 2 17 1.017 323.15 0 0 0.07728 -0.0364933 -0.0364933 0 0 0 960.16 2.66651e-07 2.66648e-07 0 0 0 63.468 6.8251 5.97202 50.6709 +1 1 2 18 1.018 323.15 0 0 0.07712 -0.0364375 -0.0364375 0 0 0 949.354 2.6638e-07 2.66377e-07 0 0 0 63.3152 6.67234 5.97202 50.6709 +1 1 2 19 1.019 323.15 0 0 0.07696 -0.0363816 -0.0363816 0 0 0 938.548 2.66109e-07 2.66106e-07 0 0 0 63.1642 6.52131 5.97202 50.6709 +1 1 2 20 1.02 323.15 0 0 0.0768 -0.0363258 -0.0363258 0 0 0 927.742 2.65838e-07 2.65836e-07 0 0 0 63.0149 6.372 5.97202 50.6709 +1 1 2 21 1.021 323.15 0 0 0.07664 -0.0362699 -0.0362699 0 0 0 916.936 2.65567e-07 2.65565e-07 0 0 0 62.8673 6.22443 5.97202 50.6709 +1 1 2 22 1.022 323.15 0 0 0.07648 -0.0362141 -0.0362141 0 0 0 906.13 2.65296e-07 2.65294e-07 0 0 0 62.7215 6.07858 5.97202 50.6709 +1 1 2 23 1.023 323.15 0 0 0.07632 -0.0361583 -0.0361583 0 0 0 895.323 2.65025e-07 2.65023e-07 0 0 0 62.5773 5.93447 5.97202 50.6709 +1 1 2 24 1.024 323.15 0 0 0.07616 -0.0361024 -0.0361024 0 0 0 884.517 2.64755e-07 2.64752e-07 0 0 0 62.435 5.79208 5.97202 50.6709 +1 1 2 25 1.025 323.15 0 0 0.076 -0.0360466 -0.0360466 0 0 0 873.711 2.64484e-07 2.64481e-07 0 0 0 62.2943 5.65142 5.97202 50.6709 +1 1 2 26 1.026 323.15 0 0 0.07584 -0.0359907 -0.0359907 0 0 0 862.905 2.64213e-07 2.6421e-07 0 0 0 62.1554 5.51249 5.97202 50.6709 +1 1 2 27 1.027 323.15 0 0 0.07568 -0.0359349 -0.0359349 0 0 0 852.099 2.63942e-07 2.6394e-07 0 0 0 62.0182 5.37529 5.97202 50.6709 +1 1 2 28 1.028 323.15 0 0 0.07552 -0.0358791 -0.0358791 0 0 0 841.293 2.63671e-07 2.63669e-07 0 0 0 61.8827 5.23982 5.97202 50.6709 +1 1 2 29 1.029 323.15 0 0 0.07536 -0.0358232 -0.0358232 0 0 0 830.487 2.634e-07 2.63398e-07 0 0 0 61.749 5.10608 5.97202 50.6709 +1 1 2 30 1.03 323.15 0 0 0.0752 -0.0357674 -0.0357674 0 0 0 819.681 2.63129e-07 2.63127e-07 0 0 0 61.6169 4.97407 5.97202 50.6709 +1 1 2 31 1.031 323.15 0 0 0.07504 -0.0357115 -0.0357115 0 0 0 808.875 2.62859e-07 2.62856e-07 0 0 0 61.4867 4.84378 5.97202 50.6709 +1 1 2 32 1.032 323.15 0 0 0.07488 -0.0356557 -0.0356557 0 0 0 798.069 2.62588e-07 2.62585e-07 0 0 0 61.3581 4.71523 5.97202 50.6709 +1 1 2 33 1.033 323.15 0 0 0.07472 -0.0355999 -0.0355999 0 0 0 787.263 2.62317e-07 2.62314e-07 0 0 0 61.2313 4.5884 5.97202 50.6709 +1 1 2 34 1.034 323.15 0 0 0.07456 -0.035544 -0.035544 0 0 0 776.457 2.62046e-07 2.62044e-07 0 0 0 61.1062 4.4633 5.97202 50.6709 +1 1 2 35 1.035 323.15 0 0 0.0744 -0.0354882 -0.0354882 0 0 0 765.651 2.61775e-07 2.61773e-07 0 0 0 60.9828 4.33993 5.97202 50.6709 +1 1 2 36 1.036 323.15 0 0 0.07424 -0.0354323 -0.0354323 0 0 0 754.844 2.61504e-07 2.61502e-07 0 0 0 60.8612 4.21829 5.97202 50.6709 +1 1 2 37 1.037 323.15 0 0 0.07408 -0.0353765 -0.0353765 0 0 0 744.038 2.61233e-07 2.61231e-07 0 0 0 60.7413 4.09838 5.97202 50.6709 +1 1 2 38 1.038 323.15 0 0 0.07392 -0.0353207 -0.0353207 0 0 0 733.232 2.60963e-07 2.6096e-07 0 0 0 60.6231 3.9802 5.97202 50.6709 +1 1 2 39 1.039 323.15 0 0 0.07376 -0.0352648 -0.0352648 0 0 0 722.426 2.60692e-07 2.60689e-07 0 0 0 60.5066 3.86375 5.97202 50.6709 +1 1 2 40 1.04 323.15 0 0 0.0736 -0.035209 -0.035209 0 0 0 711.62 2.60421e-07 2.60418e-07 0 0 0 60.3919 3.74902 5.97202 50.6709 +1 1 2 41 1.041 323.15 0 0 0.07344 -0.0351531 -0.0351531 0 0 0 700.814 2.6015e-07 2.60148e-07 0 0 0 60.2789 3.63603 5.97202 50.6709 +1 1 2 42 1.042 323.15 0 0 0.07328 -0.0350973 -0.0350973 0 0 0 690.008 2.59879e-07 2.59877e-07 0 0 0 60.1676 3.52476 5.97202 50.6709 +1 1 2 43 1.043 323.15 0 0 0.07312 -0.0350415 -0.0350415 0 0 0 679.202 2.59608e-07 2.59606e-07 0 0 0 60.0581 3.41523 5.97202 50.6709 +1 1 2 44 1.044 323.15 0 0 0.07296 -0.0349856 -0.0349856 0 0 0 668.396 2.59337e-07 2.59335e-07 0 0 0 59.9503 3.30742 5.97202 50.6709 +1 1 2 45 1.045 323.15 0 0 0.0728 -0.0349298 -0.0349298 0 0 0 657.59 2.59067e-07 2.59064e-07 0 0 0 59.8442 3.20134 5.97202 50.6709 +1 1 2 46 1.046 323.15 0 0 0.07264 -0.0348739 -0.0348739 0 0 0 646.784 2.58796e-07 2.58793e-07 0 0 0 59.7399 3.09699 5.97202 50.6709 +1 1 2 47 1.047 323.15 0 0 0.07248 -0.0348181 -0.0348181 0 0 0 635.978 2.58525e-07 2.58522e-07 0 0 0 59.6372 2.99437 5.97202 50.6709 +1 1 2 48 1.048 323.15 0 0 0.07232 -0.0347623 -0.0347623 0 0 0 625.171 2.58254e-07 2.58252e-07 0 0 0 59.5364 2.89348 5.97202 50.6709 +1 1 2 49 1.049 323.15 0 0 0.07216 -0.0347064 -0.0347064 0 0 0 614.365 2.57983e-07 2.57981e-07 0 0 0 59.4372 2.79431 5.97202 50.6709 +1 1 2 50 1.05 323.15 0 0 0.072 -0.0346506 -0.0346506 0 0 0 603.559 2.57712e-07 2.5771e-07 0 0 0 59.3398 2.69688 5.97202 50.6709 +1 1 2 51 1.051 323.15 0 0 0.07184 -0.0345947 -0.0345947 0 0 0 592.753 2.57441e-07 2.57439e-07 0 0 0 59.2441 2.60118 5.97202 50.6709 +1 1 2 52 1.052 323.15 0 0 0.07168 -0.0345389 -0.0345389 0 0 0 581.947 2.57171e-07 2.57168e-07 0 0 0 59.1501 2.5072 5.97202 50.6709 +1 1 2 53 1.053 323.15 0 0 0.07152 -0.0344831 -0.0344831 0 0 0 571.141 2.569e-07 2.56897e-07 0 0 0 59.0578 2.41495 5.97202 50.6709 +1 1 2 54 1.054 323.15 0 0 0.07136 -0.0344272 -0.0344272 0 0 0 560.335 2.56629e-07 2.56626e-07 0 0 0 58.9673 2.32443 5.97202 50.6709 +1 1 2 55 1.055 323.15 0 0 0.0712 -0.0343714 -0.0343714 0 0 0 549.529 2.56358e-07 2.56356e-07 0 0 0 58.8785 2.23565 5.97202 50.6709 +1 1 2 56 1.056 323.15 0 0 0.07104 -0.0343155 -0.0343155 0 0 0 538.723 2.56087e-07 2.56085e-07 0 0 0 58.7915 2.14859 5.97202 50.6709 +1 1 2 57 1.057 323.15 0 0 0.07088 -0.0342597 -0.0342597 0 0 0 527.917 2.55816e-07 2.55814e-07 0 0 0 58.7061 2.06325 5.97202 50.6709 +1 1 2 58 1.058 323.15 0 0 0.07072 -0.0342039 -0.0342039 0 0 0 517.111 2.55545e-07 2.55543e-07 0 0 0 58.6225 1.97965 5.97202 50.6709 +1 1 2 59 1.059 323.15 0 0 0.07056 -0.034148 -0.034148 0 0 0 506.305 2.55275e-07 2.55272e-07 0 0 0 58.5407 1.89778 5.97202 50.6709 +1 1 2 60 1.06 323.15 0 0 0.0704 -0.0340922 -0.0340922 0 0 0 495.499 2.55004e-07 2.55001e-07 0 0 0 58.4605 1.81763 5.97202 50.6709 +1 1 2 61 1.061 323.15 0 0 0.07024 -0.0340363 -0.0340363 0 0 0 484.692 2.54733e-07 2.5473e-07 0 0 0 58.3821 1.73922 5.97202 50.6709 +1 1 2 62 1.062 323.15 0 0 0.07008 -0.0339805 -0.0339805 0 0 0 473.886 2.54462e-07 2.5446e-07 0 0 0 58.3054 1.66253 5.97202 50.6709 +1 1 2 63 1.063 323.15 0 0 0.06992 -0.0339247 -0.0339247 0 0 0 463.08 2.54191e-07 2.54189e-07 0 0 0 58.2305 1.58758 5.97202 50.6709 +1 1 2 64 1.064 323.15 0 0 0.06976 -0.0338688 -0.0338688 0 0 0 452.274 2.5392e-07 2.53918e-07 0 0 0 58.1572 1.51435 5.97202 50.6709 +1 1 2 65 1.065 323.15 0 0 0.0696 -0.033813 -0.033813 0 0 0 441.468 2.53649e-07 2.53647e-07 0 0 0 58.0857 1.44285 5.97202 50.6709 +1 1 2 66 1.066 323.15 0 0 0.06944 -0.0337571 -0.0337571 0 0 0 430.662 2.53379e-07 2.53376e-07 0 0 0 58.016 1.37308 5.97202 50.6709 +1 1 2 67 1.067 323.15 0 0 0.06928 -0.0337013 -0.0337013 0 0 0 419.856 2.53108e-07 2.53105e-07 0 0 0 57.9479 1.30504 5.97202 50.6709 +1 1 2 68 1.068 323.15 0 0 0.06912 -0.0336455 -0.0336455 0 0 0 409.05 2.52837e-07 2.52834e-07 0 0 0 57.8816 1.23872 5.97202 50.6709 +1 1 2 69 1.069 323.15 0 0 0.06896 -0.0335896 -0.0335896 0 0 0 398.244 2.52566e-07 2.52564e-07 0 0 0 57.817 1.17414 5.97202 50.6709 +1 1 2 70 1.07 323.15 0 0 0.0688 -0.0335338 -0.0335338 0 0 0 387.438 2.52295e-07 2.52293e-07 0 0 0 57.7542 1.11129 5.97202 50.6709 +1 1 2 71 1.071 323.15 0 0 0.06864 -0.0334779 -0.0334779 0 0 0 376.632 2.52024e-07 2.52022e-07 0 0 0 57.693 1.05016 5.97202 50.6709 +1 1 2 72 1.072 323.15 0 0 0.06848 -0.0334221 -0.0334221 0 0 0 365.826 2.51753e-07 2.51751e-07 0 0 0 57.6336 0.990763 5.97202 50.6709 +1 1 2 73 1.073 323.15 0 0 0.06832 -0.0333663 -0.0333663 0 0 0 355.019 2.51483e-07 2.5148e-07 0 0 0 57.576 0.933096 5.97202 50.6709 +1 1 2 74 1.074 323.15 0 0 0.06816 -0.0333104 -0.0333104 0 0 0 344.213 2.51212e-07 2.51209e-07 0 0 0 57.52 0.877157 5.97202 50.6709 +1 1 2 75 1.075 323.15 0 0 0.068 -0.0332546 -0.0332546 0 0 0 333.407 2.50941e-07 2.50938e-07 0 0 0 57.4658 0.822947 5.97202 50.6709 +1 1 2 76 1.076 323.15 0 0 0.06784 -0.0331987 -0.0331987 0 0 0 322.601 2.5067e-07 2.50668e-07 0 0 0 57.4133 0.770467 5.97202 50.6709 +1 1 2 77 1.077 323.15 0 0 0.06768 -0.0331429 -0.0331429 0 0 0 311.795 2.50399e-07 2.50397e-07 0 0 0 57.3626 0.719715 5.97202 50.6709 +1 1 2 78 1.078 323.15 0 0 0.06752 -0.0330871 -0.0330871 0 0 0 300.989 2.50128e-07 2.50126e-07 0 0 0 57.3136 0.670692 5.97202 50.6709 +1 1 2 79 1.079 323.15 0 0 0.06736 -0.0330312 -0.0330312 0 0 0 290.183 2.49857e-07 2.49855e-07 0 0 0 57.2663 0.623399 5.97202 50.6709 +1 1 2 80 1.08 323.15 0 0 0.0672 -0.0329754 -0.0329754 0 0 0 279.377 2.49587e-07 2.49584e-07 0 0 0 57.2207 0.577834 5.97202 50.6709 +1 1 2 81 1.081 323.15 0 0 0.06704 -0.0329195 -0.0329195 0 0 0 268.571 2.49316e-07 2.49313e-07 0 0 0 57.1769 0.533998 5.97202 50.6709 +1 1 2 82 1.082 323.15 0 0 0.06688 -0.0328637 -0.0328637 0 0 0 257.765 2.49045e-07 2.49042e-07 0 0 0 57.1348 0.491891 5.97202 50.6709 +1 1 2 83 1.083 323.15 0 0 0.06672 -0.0328079 -0.0328079 0 0 0 246.959 2.48774e-07 2.48772e-07 0 0 0 57.0944 0.451513 5.97202 50.6709 +1 1 2 84 1.084 323.15 0 0 0.06656 -0.032752 -0.032752 0 0 0 236.153 2.48503e-07 2.48501e-07 0 0 0 57.0557 0.412864 5.97202 50.6709 +1 1 2 85 1.085 323.15 0 0 0.0664 -0.0326962 -0.0326962 0 0 0 225.347 2.48232e-07 2.4823e-07 0 0 0 57.0188 0.375944 5.97202 50.6709 +1 1 2 86 1.086 323.15 0 0 0.06624 -0.0326403 -0.0326403 0 0 0 214.54 2.47961e-07 2.47959e-07 0 0 0 56.9836 0.340753 5.97202 50.6709 +1 1 2 87 1.087 323.15 0 0 0.06608 -0.0325845 -0.0325845 0 0 0 203.734 2.47691e-07 2.47688e-07 0 0 0 56.9502 0.307291 5.97202 50.6709 +1 1 2 88 1.088 323.15 0 0 0.06592 -0.0325287 -0.0325287 0 0 0 192.928 2.4742e-07 2.47417e-07 0 0 0 56.9184 0.275558 5.97202 50.6709 +1 1 2 89 1.089 323.15 0 0 0.06576 -0.0324728 -0.0324728 0 0 0 182.122 2.47149e-07 2.47146e-07 0 0 0 56.8884 0.245554 5.97202 50.6709 +1 1 2 90 1.09 323.15 0 0 0.0656 -0.032417 -0.032417 0 0 0 171.316 2.46878e-07 2.46876e-07 0 0 0 56.8602 0.217279 5.97202 50.6709 +1 1 2 91 1.091 323.15 0 0 0.06544 -0.0323611 -0.0323611 0 0 0 160.51 2.46607e-07 2.46605e-07 0 0 0 56.8336 0.190733 5.97202 50.6709 +1 1 2 92 1.092 323.15 0 0 0.06528 -0.0323053 -0.0323053 0 0 0 149.704 2.46336e-07 2.46334e-07 0 0 0 56.8088 0.165916 5.97202 50.6709 +1 1 2 93 1.093 323.15 0 0 0.06512 -0.0322495 -0.0322495 0 0 0 138.898 2.46065e-07 2.46063e-07 0 0 0 56.7857 0.142828 5.97202 50.6709 +1 1 2 94 1.094 323.15 0 0 0.06496 -0.0321936 -0.0321936 0 0 0 128.092 2.45795e-07 2.45792e-07 0 0 0 56.7643 0.121469 5.97202 50.6709 +1 1 2 95 1.095 323.15 0 0 0.0648 -0.0321378 -0.0321378 0 0 0 117.286 2.45524e-07 2.45521e-07 0 0 0 56.7447 0.101839 5.97202 50.6709 +1 1 2 96 1.096 323.15 0 0 0.06464 -0.0320819 -0.0320819 0 0 0 106.48 2.45253e-07 2.4525e-07 0 0 0 56.7268 0.0839373 5.97202 50.6709 +1 1 2 97 1.097 323.15 0 0 0.06448 -0.0320261 -0.0320261 0 0 0 95.6736 2.44982e-07 2.4498e-07 0 0 0 56.7106 0.0677651 5.97202 50.6709 +1 1 2 98 1.098 323.15 0 0 0.06432 -0.0319703 -0.0319703 0 0 0 84.8675 2.44711e-07 2.44709e-07 0 0 0 56.6962 0.0533218 5.97202 50.6709 +1 1 2 99 1.099 323.15 0 0 0.06416 -0.0319144 -0.0319144 0 0 0 74.0614 2.4444e-07 2.44438e-07 0 0 0 56.6835 0.0406075 5.97202 50.6709 +1 1 2 100 1.1 323.15 0 0 0.064 -0.0318586 -0.0318586 0 0 0 63.2553 2.44169e-07 2.44167e-07 0 0 0 56.6725 0.0296221 5.97202 50.6709 +1 1 2 101 1.101 323.15 0 0 0.06384 -0.0318027 -0.0318027 0 0 0 52.4493 2.43899e-07 2.43896e-07 0 0 0 56.6632 0.0203658 5.97202 50.6709 +1 1 2 102 1.102 323.15 0 0 0.06368 -0.0317469 -0.0317469 0 0 0 41.6432 2.43628e-07 2.43625e-07 0 0 0 56.6557 0.0128384 5.97202 50.6709 +1 1 2 103 1.103 323.15 0 0 0.06352 -0.0316911 -0.0316911 0 0 0 30.8371 2.43357e-07 2.43354e-07 0 0 0 56.6499 0.00703994 5.97202 50.6709 +1 1 2 104 1.104 323.15 0 0 0.06336 -0.0316352 -0.0316352 0 0 0 20.031 2.43086e-07 2.43084e-07 0 0 0 56.6458 0.00297049 5.97202 50.6709 +1 1 2 105 1.105 323.15 0 0 0.0632 -0.0315794 -0.0315794 0 0 0 9.22493 2.42815e-07 2.42813e-07 0 0 0 56.6435 0.000630011 5.97202 50.6709 +1 1 2 106 1.106 323.15 0 0 0.06304 -0.0315235 -0.0315235 0 0 0 -1.58115 2.42544e-07 2.42542e-07 0 0 0 56.6429 1.85083e-05 5.97202 50.6709 +1 1 2 107 1.107 323.15 0 0 0.06288 -0.0314677 -0.0314677 0 0 0 -12.3872 2.42273e-07 2.42271e-07 0 0 0 56.644 0.00113598 5.97202 50.6709 +1 1 2 108 1.108 323.15 0 0 0.06272 -0.0314119 -0.0314119 0 0 0 -23.1933 2.42003e-07 2.42e-07 0 0 0 56.6469 0.00398242 5.97202 50.6709 +1 1 2 109 1.109 323.15 0 0 0.06256 -0.031356 -0.031356 0 0 0 -33.9994 2.41732e-07 2.41729e-07 0 0 0 56.6514 0.00855784 5.97202 50.6709 +1 1 2 110 1.11 323.15 0 0 0.0624 -0.0313002 -0.0313002 0 0 0 -44.8055 2.4146e-07 2.41458e-07 0 0 0 56.6577 0.0148622 5.97202 50.6709 +1 1 2 111 1.111 323.15 0 0 0.06224 -0.0312443 -0.0312443 0 0 0 -55.6115 2.41189e-07 2.41187e-07 0 0 0 56.6658 0.0228956 5.97202 50.6709 +1 1 2 112 1.112 323.15 0 0 0.06208 -0.0311885 -0.0311885 0 0 0 -66.4176 2.40918e-07 2.40915e-07 0 0 0 56.6755 0.0326579 5.97202 50.6709 +1 1 2 113 1.113 323.15 0 0 0.06192 -0.0311327 -0.0311327 0 0 0 -77.2237 2.40647e-07 2.40644e-07 0 0 0 56.687 0.0441492 5.97202 50.6709 +1 1 2 114 1.114 323.15 0 0 0.06176 -0.0310768 -0.0310768 0 0 0 -88.0298 2.40375e-07 2.40373e-07 0 0 0 56.7002 0.0573695 5.97202 50.6709 +1 1 2 115 1.115 323.15 0 0 0.0616 -0.031021 -0.031021 0 0 0 -98.8359 2.40104e-07 2.40102e-07 0 0 0 56.7152 0.0723188 5.97202 50.6709 +1 1 2 116 1.116 323.15 0 0 0.06144 -0.0309651 -0.0309651 0 0 0 -109.642 2.39833e-07 2.3983e-07 0 0 0 56.7319 0.088997 5.97202 50.6709 +1 1 2 117 1.117 323.15 0 0 0.06128 -0.0309093 -0.0309093 0 0 0 -120.448 2.39562e-07 2.39559e-07 0 0 0 56.7503 0.107404 5.97202 50.6709 +1 1 2 118 1.118 323.15 0 0 0.06112 -0.0308535 -0.0308535 0 0 0 -131.254 2.3929e-07 2.39288e-07 0 0 0 56.7704 0.12754 5.97202 50.6709 +1 1 2 119 1.119 323.15 0 0 0.06096 -0.0307976 -0.0307976 0 0 0 -142.06 2.39019e-07 2.39017e-07 0 0 0 56.7923 0.149405 5.97202 50.6709 +1 1 2 120 1.12 323.15 0 0 0.0608 -0.0307418 -0.0307418 0 0 0 -152.866 2.38748e-07 2.38745e-07 0 0 0 56.8159 0.173 5.97202 50.6709 +1 1 2 121 1.121 323.15 0 0 0.06064 -0.0306859 -0.0306859 0 0 0 -163.672 2.38477e-07 2.38474e-07 0 0 0 56.8412 0.198323 5.97202 50.6709 +1 1 2 122 1.122 323.15 0 0 0.06048 -0.0306301 -0.0306301 0 0 0 -174.478 2.38205e-07 2.38203e-07 0 0 0 56.8683 0.225375 5.97202 50.6709 +1 1 2 123 1.123 323.15 0 0 0.06032 -0.0305743 -0.0305743 0 0 0 -185.285 2.37934e-07 2.37932e-07 0 0 0 56.897 0.254156 5.97202 50.6709 +1 1 2 124 1.124 323.15 0 0 0.06016 -0.0305184 -0.0305184 0 0 0 -196.091 2.37663e-07 2.3766e-07 0 0 0 56.9275 0.284666 5.97202 50.6709 +1 1 2 125 1.125 323.15 0 0 0.06 -0.0304626 -0.0304626 0 0 0 -206.897 2.37392e-07 2.37389e-07 0 0 0 56.9598 0.316905 5.97202 50.6709 +1 1 2 126 1.126 323.15 0 0 0.05984 -0.0304067 -0.0304067 0 0 0 -217.703 2.3712e-07 2.37118e-07 0 0 0 56.9937 0.350873 5.97202 50.6709 +1 1 2 127 1.127 323.15 0 0 0.05968 -0.0303509 -0.0303509 0 0 0 -228.509 2.36849e-07 2.36847e-07 0 0 0 57.0294 0.38657 5.97202 50.6709 +1 1 2 128 1.128 323.15 0 0 0.05952 -0.0302951 -0.0302951 0 0 0 -239.315 2.36578e-07 2.36575e-07 0 0 0 57.0669 0.423996 5.97202 50.6709 +1 1 2 129 1.129 323.15 0 0 0.05936 -0.0302392 -0.0302392 0 0 0 -250.121 2.36307e-07 2.36304e-07 0 0 0 57.106 0.46315 5.97202 50.6709 +1 1 2 130 1.13 323.15 0 0 0.0592 -0.0301834 -0.0301834 0 0 0 -260.927 2.36035e-07 2.36033e-07 0 0 0 57.1469 0.504034 5.97202 50.6709 +1 1 2 131 1.131 323.15 0 0 0.05904 -0.0301275 -0.0301275 0 0 0 -271.733 2.35764e-07 2.35762e-07 0 0 0 57.1895 0.546647 5.97202 50.6709 +1 1 2 132 1.132 323.15 0 0 0.05888 -0.0300717 -0.0300717 0 0 0 -282.539 2.35493e-07 2.3549e-07 0 0 0 57.2339 0.590989 5.97202 50.6709 +1 1 2 133 1.133 323.15 0 0 0.05872 -0.0300159 -0.0300159 0 0 0 -293.345 2.35221e-07 2.35219e-07 0 0 0 57.2799 0.63706 5.97202 50.6709 +1 1 2 134 1.134 323.15 0 0 0.05856 -0.02996 -0.02996 0 0 0 -304.151 2.3495e-07 2.34948e-07 0 0 0 57.3277 0.684859 5.97202 50.6709 +1 1 2 135 1.135 323.15 0 0 0.0584 -0.0299042 -0.0299042 0 0 0 -314.957 2.34679e-07 2.34677e-07 0 0 0 57.3773 0.734388 5.97202 50.6709 +1 1 2 136 1.136 323.15 0 0 0.05824 -0.0298483 -0.0298483 0 0 0 -325.764 2.34408e-07 2.34405e-07 0 0 0 57.4285 0.785646 5.97202 50.6709 +1 1 2 137 1.137 323.15 0 0 0.05808 -0.0297925 -0.0297925 0 0 0 -336.57 2.34136e-07 2.34134e-07 0 0 0 57.4815 0.838632 5.97202 50.6709 +1 1 2 138 1.138 323.15 0 0 0.05792 -0.0297367 -0.0297367 0 0 0 -347.376 2.33865e-07 2.33863e-07 0 0 0 57.5362 0.893348 5.97202 50.6709 +1 1 2 139 1.139 323.15 0 0 0.05776 -0.0296808 -0.0296808 0 0 0 -358.182 2.33594e-07 2.33591e-07 0 0 0 57.5927 0.949793 5.97202 50.6709 +1 1 2 140 1.14 323.15 0 0 0.0576 -0.029625 -0.029625 0 0 0 -368.988 2.33323e-07 2.3332e-07 0 0 0 57.6508 1.00797 5.97202 50.6709 +1 1 2 141 1.141 323.15 0 0 0.05744 -0.0295691 -0.0295691 0 0 0 -379.794 2.33051e-07 2.33049e-07 0 0 0 57.7107 1.06787 5.97202 50.6709 +1 1 2 142 1.142 323.15 0 0 0.05728 -0.0295133 -0.0295133 0 0 0 -390.6 2.3278e-07 2.32778e-07 0 0 0 57.7724 1.1295 5.97202 50.6709 +1 1 2 143 1.143 323.15 0 0 0.05712 -0.0294575 -0.0294575 0 0 0 -401.406 2.32509e-07 2.32506e-07 0 0 0 57.8357 1.19286 5.97202 50.6709 +1 1 2 144 1.144 323.15 0 0 0.05696 -0.0294016 -0.0294016 0 0 0 -412.212 2.32238e-07 2.32235e-07 0 0 0 57.9008 1.25795 5.97202 50.6709 +1 1 2 145 1.145 323.15 0 0 0.0568 -0.0293458 -0.0293458 0 0 0 -423.018 2.31966e-07 2.31964e-07 0 0 0 57.9676 1.32477 5.97202 50.6709 +1 1 2 146 1.146 323.15 0 0 0.05664 -0.0292899 -0.0292899 0 0 0 -433.824 2.31695e-07 2.31693e-07 0 0 0 58.0362 1.39332 5.97202 50.6709 +1 1 2 147 1.147 323.15 0 0 0.05648 -0.0292341 -0.0292341 0 0 0 -444.63 2.31424e-07 2.31421e-07 0 0 0 58.1065 1.46359 5.97202 50.6709 +1 1 2 148 1.148 323.15 0 0 0.05632 -0.0291783 -0.0291783 0 0 0 -455.437 2.31153e-07 2.3115e-07 0 0 0 58.1785 1.5356 5.97202 50.6709 +1 1 2 149 1.149 323.15 0 0 0.05616 -0.0291224 -0.0291224 0 0 0 -466.243 2.30881e-07 2.30879e-07 0 0 0 58.2522 1.60933 5.97202 50.6709 +1 1 2 150 1.15 323.15 0 0 0.056 -0.0290666 -0.0290666 0 0 0 -477.049 2.3061e-07 2.30608e-07 0 0 0 58.3277 1.6848 5.97202 50.6709 +1 1 2 151 1.151 323.15 0 0 0.05584 -0.0290107 -0.0290107 0 0 0 -487.855 2.30339e-07 2.30336e-07 0 0 0 58.4049 1.76199 5.97202 50.6709 +1 1 2 152 1.152 323.15 0 0 0.05568 -0.0289549 -0.0289549 0 0 0 -498.661 2.30068e-07 2.30065e-07 0 0 0 58.4838 1.84091 5.97202 50.6709 +1 1 2 153 1.153 323.15 0 0 0.05552 -0.0288991 -0.0288991 0 0 0 -509.467 2.29796e-07 2.29794e-07 0 0 0 58.5644 1.92156 5.97202 50.6709 +1 1 2 154 1.154 323.15 0 0 0.05536 -0.0288432 -0.0288432 0 0 0 -520.273 2.29525e-07 2.29523e-07 0 0 0 58.6468 2.00394 5.97202 50.6709 +1 1 2 155 1.155 323.15 0 0 0.0552 -0.0287874 -0.0287874 0 0 0 -531.079 2.29254e-07 2.29251e-07 0 0 0 58.7309 2.08805 5.97202 50.6709 +1 1 2 156 1.156 323.15 0 0 0.05504 -0.0287315 -0.0287315 0 0 0 -541.885 2.28983e-07 2.2898e-07 0 0 0 58.8168 2.17388 5.97202 50.6709 +1 1 2 157 1.157 323.15 0 0 0.05488 -0.0286757 -0.0286757 0 0 0 -552.691 2.28711e-07 2.28709e-07 0 0 0 58.9043 2.26145 5.97202 50.6709 +1 1 2 158 1.158 323.15 0 0 0.05472 -0.0286199 -0.0286199 0 0 0 -563.497 2.2844e-07 2.28438e-07 0 0 0 58.9936 2.35074 5.97202 50.6709 +1 1 2 159 1.159 323.15 0 0 0.05456 -0.028564 -0.028564 0 0 0 -574.303 2.28169e-07 2.28166e-07 0 0 0 59.0846 2.44177 5.97202 50.6709 +1 1 2 160 1.16 323.15 0 0 0.0544 -0.0285082 -0.0285082 0 0 0 -585.109 2.27897e-07 2.27895e-07 0 0 0 59.1774 2.53452 5.97202 50.6709 +1 1 2 161 1.161 323.15 0 0 0.05424 -0.0284523 -0.0284523 0 0 0 -595.916 2.27626e-07 2.27624e-07 0 0 0 59.2719 2.629 5.97202 50.6709 +1 1 2 162 1.162 323.15 0 0 0.05408 -0.0283965 -0.0283965 0 0 0 -606.722 2.27355e-07 2.27353e-07 0 0 0 59.3681 2.72521 5.97202 50.6709 +1 1 2 163 1.163 323.15 0 0 0.05392 -0.0283407 -0.0283407 0 0 0 -617.528 2.27084e-07 2.27081e-07 0 0 0 59.466 2.82315 5.97202 50.6709 +1 1 2 164 1.164 323.15 0 0 0.05376 -0.0282848 -0.0282848 0 0 0 -628.334 2.26812e-07 2.2681e-07 0 0 0 59.5657 2.92282 5.97202 50.6709 +1 1 2 165 1.165 323.15 0 0 0.0536 -0.028229 -0.028229 0 0 0 -639.14 2.26541e-07 2.26539e-07 0 0 0 59.6671 3.02422 5.97202 50.6709 +1 1 2 166 1.166 323.15 0 0 0.05344 -0.0281731 -0.0281731 0 0 0 -649.946 2.2627e-07 2.26268e-07 0 0 0 59.7702 3.12735 5.97202 50.6709 +1 1 2 167 1.167 323.15 0 0 0.05328 -0.0281173 -0.0281173 0 0 0 -660.752 2.25999e-07 2.25996e-07 0 0 0 59.8751 3.2322 5.97202 50.6709 +1 1 2 168 1.168 323.15 0 0 0.05312 -0.0280615 -0.0280615 0 0 0 -671.558 2.25727e-07 2.25725e-07 0 0 0 59.9817 3.33879 5.97202 50.6709 +1 1 2 169 1.169 323.15 0 0 0.05296 -0.0280056 -0.0280056 0 0 0 -682.364 2.25456e-07 2.25454e-07 0 0 0 60.09 3.4471 5.97202 50.6709 +1 1 2 170 1.17 323.15 0 0 0.0528 -0.0279498 -0.0279498 0 0 0 -693.17 2.25185e-07 2.25183e-07 0 0 0 60.2 3.55715 5.97202 50.6709 +1 1 2 171 1.171 323.15 0 0 0.05264 -0.0278939 -0.0278939 0 0 0 -703.976 2.24914e-07 2.24911e-07 0 0 0 60.3118 3.66892 5.97202 50.6709 +1 1 2 172 1.172 323.15 0 0 0.05248 -0.0278381 -0.0278381 0 0 0 -714.782 2.24642e-07 2.2464e-07 0 0 0 60.4253 3.78242 5.97202 50.6709 +1 1 2 173 1.173 323.15 0 0 0.05232 -0.0277823 -0.0277823 0 0 0 -725.589 2.24371e-07 2.24369e-07 0 0 0 60.5405 3.89765 5.97202 50.6709 +1 1 2 174 1.174 323.15 0 0 0.05216 -0.0277264 -0.0277264 0 0 0 -736.395 2.241e-07 2.24097e-07 0 0 0 60.6575 4.01461 5.97202 50.6709 +1 1 2 175 1.175 323.15 0 0 0.052 -0.0276706 -0.0276706 0 0 0 -747.201 2.23829e-07 2.23826e-07 0 0 0 60.7762 4.13329 5.97202 50.6709 +1 1 2 176 1.176 323.15 0 0 0.05184 -0.0276147 -0.0276147 0 0 0 -758.007 2.23557e-07 2.23555e-07 0 0 0 60.8966 4.25371 5.97202 50.6709 +1 1 2 177 1.177 323.15 0 0 0.05168 -0.0275521 -0.0275521 0 0 0 -765.759 1.29017e-07 1.29015e-07 0 0 0 61.0185 4.34117 5.96347 50.7138 +1 1 2 178 1.178 323.15 0 0 0.05152 -0.0274741 -0.0274741 0 0 0 -766.656 1.28746e-07 1.28744e-07 0 0 0 61.1411 4.35134 5.9358 50.8539 +1 1 2 179 1.179 323.15 0 0 0.05136 -0.0273961 -0.0273961 0 0 0 -767.552 1.28475e-07 1.28472e-07 0 0 0 61.2638 4.36151 5.90819 50.9941 +1 1 2 180 1.18 323.15 0 0 0.0512 -0.0273181 -0.0273181 0 0 0 -768.447 1.28204e-07 1.28202e-07 0 0 0 61.3867 4.37169 5.88064 51.1344 +1 1 2 181 1.181 323.15 0 0 0.05104 -0.0272401 -0.0272401 0 0 0 -769.341 1.27932e-07 1.2793e-07 0 0 0 61.5097 4.38187 5.85315 51.2747 +1 1 2 182 1.182 323.15 0 0 0.05088 -0.0271621 -0.0271621 0 0 0 -770.235 1.27661e-07 1.27659e-07 0 0 0 61.6329 4.39206 5.82573 51.4151 +1 1 2 183 1.183 323.15 0 0 0.05072 -0.0270841 -0.0270841 0 0 0 -771.128 1.27389e-07 1.27388e-07 0 0 0 61.7562 4.40225 5.79837 51.5556 +1 1 2 184 1.184 323.15 0 0 0.05056 -0.0270061 -0.0270061 0 0 0 -772.021 1.27118e-07 1.27116e-07 0 0 0 61.8796 4.41245 5.77107 51.6961 +1 1 2 185 1.185 323.15 0 0 0.0504 -0.0269281 -0.0269281 0 0 0 -772.913 1.26846e-07 1.26845e-07 0 0 0 62.0032 4.42265 5.74383 51.8368 +1 1 2 186 1.186 323.15 0 0 0.05024 -0.0268501 -0.0268501 0 0 0 -773.804 1.26575e-07 1.26573e-07 0 0 0 62.127 4.43286 5.71666 51.9775 +1 1 2 187 1.187 323.15 0 0 0.05008 -0.026772 -0.026772 0 0 0 -774.694 1.26304e-07 1.26302e-07 0 0 0 62.2509 4.44306 5.68955 52.1182 +1 1 2 188 1.188 323.15 0 0 0.04992 -0.026694 -0.026694 0 0 0 -775.584 1.26033e-07 1.26031e-07 0 0 0 62.3749 4.45328 5.66251 52.2591 +1 1 2 189 1.189 323.15 0 0 0.04976 -0.026616 -0.026616 0 0 0 -776.473 1.25761e-07 1.2576e-07 0 0 0 62.499 4.46349 5.63552 52.4 +1 1 2 190 1.19 323.15 0 0 0.0496 -0.026538 -0.026538 0 0 0 -777.362 1.2549e-07 1.25488e-07 0 0 0 62.6234 4.47372 5.6086 52.541 +1 1 2 191 1.191 323.15 0 0 0.04944 -0.02646 -0.02646 0 0 0 -778.25 1.25219e-07 1.25218e-07 0 0 0 62.7478 4.48394 5.58174 52.6821 +1 1 2 192 1.192 323.15 0 0 0.04928 -0.026382 -0.026382 0 0 0 -779.137 1.24948e-07 1.24946e-07 0 0 0 62.8724 4.49417 5.55495 52.8233 +1 1 2 193 1.193 323.15 0 0 0.04912 -0.026304 -0.026304 0 0 0 -780.024 1.24677e-07 1.24675e-07 0 0 0 62.9971 4.5044 5.52822 52.9645 +1 1 2 194 1.194 323.15 0 0 0.04896 -0.0262259 -0.0262259 0 0 0 -780.91 1.24406e-07 1.24404e-07 0 0 0 63.122 4.51464 5.50155 53.1058 +1 1 2 195 1.195 323.15 0 0 0.0488 -0.0261479 -0.0261479 0 0 0 -781.795 1.24135e-07 1.24133e-07 0 0 0 63.247 4.52489 5.47494 53.2472 +1 1 2 196 1.196 323.15 0 0 0.04864 -0.0260699 -0.0260699 0 0 0 -782.68 1.23864e-07 1.23861e-07 0 0 0 63.3722 4.53513 5.4484 53.3886 +1 1 2 197 1.197 323.15 0 0 0.04848 -0.0259919 -0.0259919 0 0 0 -783.564 1.23592e-07 1.2359e-07 0 0 0 63.4975 4.54538 5.42192 53.5302 +1 1 2 198 1.198 323.15 0 0 0.04832 -0.0259138 -0.0259138 0 0 0 -784.447 1.23321e-07 1.23319e-07 0 0 0 63.6229 4.55564 5.3955 53.6718 +1 1 2 199 1.199 323.15 0 0 0.04816 -0.0258358 -0.0258358 0 0 0 -785.33 1.2305e-07 1.23048e-07 0 0 0 63.7485 4.5659 5.36915 53.8135 +1 1 2 200 1.2 323.15 0 0 0.048 -0.0257578 -0.0257578 0 0 0 -786.212 1.22779e-07 1.22776e-07 0 0 0 63.8742 4.57616 5.34286 53.9552 +1 1 2 201 1.201 323.15 0 0 0.04784 -0.0256798 -0.0256798 0 0 0 -787.094 1.22507e-07 1.22505e-07 0 0 0 64.0001 4.58643 5.31663 54.097 +1 1 2 202 1.202 323.15 0 0 0.04768 -0.0256017 -0.0256017 0 0 0 -787.974 1.22236e-07 1.22234e-07 0 0 0 64.1261 4.5967 5.29047 54.2389 +1 1 2 203 1.203 323.15 0 0 0.04752 -0.0255237 -0.0255237 0 0 0 -788.855 1.21964e-07 1.21963e-07 0 0 0 64.2522 4.60698 5.26436 54.3809 +1 1 2 204 1.204 323.15 0 0 0.04736 -0.0254457 -0.0254457 0 0 0 -789.734 1.21693e-07 1.21692e-07 0 0 0 64.3785 4.61726 5.23833 54.5229 +1 1 2 205 1.205 323.15 0 0 0.0472 -0.0253676 -0.0253676 0 0 0 -790.613 1.21422e-07 1.2142e-07 0 0 0 64.505 4.62754 5.21235 54.6651 +1 1 2 206 1.206 323.15 0 0 0.04704 -0.0252896 -0.0252896 0 0 0 -791.492 1.21151e-07 1.21149e-07 0 0 0 64.6315 4.63783 5.18644 54.8073 +1 1 2 207 1.207 323.15 0 0 0.04688 -0.0252116 -0.0252116 0 0 0 -792.37 1.20879e-07 1.20878e-07 0 0 0 64.7582 4.64812 5.16059 54.9495 +1 1 2 208 1.208 323.15 0 0 0.04672 -0.0251335 -0.0251335 0 0 0 -793.247 1.20608e-07 1.20607e-07 0 0 0 64.8851 4.65842 5.13481 55.0919 +1 1 2 209 1.209 323.15 0 0 0.04656 -0.0250555 -0.0250555 0 0 0 -794.124 1.20337e-07 1.20336e-07 0 0 0 65.0121 4.66872 5.10908 55.2343 +1 1 2 210 1.21 323.15 0 0 0.0464 -0.0249774 -0.0249774 0 0 0 -795 1.20066e-07 1.20064e-07 0 0 0 65.1392 4.67903 5.08343 55.3767 +1 1 2 211 1.211 323.15 0 0 0.04624 -0.0248994 -0.0248994 0 0 0 -795.875 1.19795e-07 1.19793e-07 0 0 0 65.2665 4.68934 5.05783 55.5193 +1 1 2 212 1.212 323.15 0 0 0.04608 -0.0248214 -0.0248214 0 0 0 -796.75 1.19524e-07 1.19522e-07 0 0 0 65.3939 4.69965 5.0323 55.6619 +1 1 2 213 1.213 323.15 0 0 0.04592 -0.0247433 -0.0247433 0 0 0 -797.624 1.19253e-07 1.19251e-07 0 0 0 65.5214 4.70997 5.00683 55.8046 +1 1 2 214 1.214 323.15 0 0 0.04576 -0.0246653 -0.0246653 0 0 0 -798.497 1.18982e-07 1.1898e-07 0 0 0 65.6491 4.72029 4.98142 55.9474 +1 1 2 215 1.215 323.15 0 0 0.0456 -0.0245872 -0.0245872 0 0 0 -799.37 1.18711e-07 1.18709e-07 0 0 0 65.7769 4.73062 4.95608 56.0902 +1 1 2 216 1.216 323.15 0 0 0.04544 -0.0245092 -0.0245092 0 0 0 -800.243 1.1844e-07 1.18438e-07 0 0 0 65.9049 4.74095 4.9308 56.2332 +1 1 2 217 1.217 323.15 0 0 0.04528 -0.0244311 -0.0244311 0 0 0 -801.115 1.18168e-07 1.18167e-07 0 0 0 66.033 4.75129 4.90559 56.3762 +1 1 2 218 1.218 323.15 0 0 0.04512 -0.0243531 -0.0243531 0 0 0 -801.986 1.17898e-07 1.17896e-07 0 0 0 66.1613 4.76163 4.88044 56.5192 +1 1 2 219 1.219 323.15 0 0 0.04496 -0.024275 -0.024275 0 0 0 -802.856 1.17626e-07 1.17624e-07 0 0 0 66.2897 4.77197 4.85535 56.6623 +1 1 2 220 1.22 323.15 0 0 0.0448 -0.024197 -0.024197 0 0 0 -803.726 1.17355e-07 1.17353e-07 0 0 0 66.4182 4.78232 4.83032 56.8055 +1 1 2 221 1.221 323.15 0 0 0.04464 -0.0241189 -0.0241189 0 0 0 -804.596 1.17084e-07 1.17082e-07 0 0 0 66.5469 4.79267 4.80536 56.9488 +1 1 2 222 1.222 323.15 0 0 0.04448 -0.0240408 -0.0240408 0 0 0 -805.465 1.16812e-07 1.1681e-07 0 0 0 66.6757 4.80303 4.78046 57.0922 +1 1 2 223 1.223 323.15 0 0 0.04432 -0.0239628 -0.0239628 0 0 0 -806.333 1.16541e-07 1.16539e-07 0 0 0 66.8046 4.81339 4.75563 57.2356 +1 1 2 224 1.224 323.15 0 0 0.04416 -0.0238847 -0.0238847 0 0 0 -807.201 1.1627e-07 1.16268e-07 0 0 0 66.9337 4.82375 4.73086 57.3791 +1 1 2 225 1.225 323.15 0 0 0.044 -0.0238067 -0.0238067 0 0 0 -808.068 1.15998e-07 1.15997e-07 0 0 0 67.0629 4.83412 4.70615 57.5226 +1 1 2 226 1.226 323.15 0 0 0.04384 -0.0237286 -0.0237286 0 0 0 -808.934 1.15727e-07 1.15725e-07 0 0 0 67.1923 4.84449 4.68151 57.6663 +1 1 2 227 1.227 323.15 0 0 0.04368 -0.0236505 -0.0236505 0 0 0 -809.8 1.15456e-07 1.15454e-07 0 0 0 67.3218 4.85487 4.65693 57.81 +1 1 2 228 1.228 323.15 0 0 0.04352 -0.0235725 -0.0235725 0 0 0 -810.666 1.15185e-07 1.15183e-07 0 0 0 67.4514 4.86525 4.63241 57.9537 +1 1 2 229 1.229 323.15 0 0 0.04336 -0.0234944 -0.0234944 0 0 0 -811.531 1.14914e-07 1.14912e-07 0 0 0 67.5812 4.87564 4.60796 58.0976 +1 1 2 230 1.23 323.15 0 0 0.0432 -0.0234163 -0.0234163 0 0 0 -812.395 1.14643e-07 1.14641e-07 0 0 0 67.7111 4.88603 4.58357 58.2415 +1 1 2 231 1.231 323.15 0 0 0.04304 -0.0233383 -0.0233383 0 0 0 -813.259 1.14372e-07 1.1437e-07 0 0 0 67.8411 4.89643 4.55924 58.3855 +1 1 2 232 1.232 323.15 0 0 0.04288 -0.0232602 -0.0232602 0 0 0 -814.122 1.141e-07 1.14099e-07 0 0 0 67.9713 4.90683 4.53498 58.5295 +1 1 2 233 1.233 323.15 0 0 0.04272 -0.0231821 -0.0231821 0 0 0 -814.984 1.13829e-07 1.13827e-07 0 0 0 68.1017 4.91723 4.51078 58.6737 +1 1 2 234 1.234 323.15 0 0 0.04256 -0.0231041 -0.0231041 0 0 0 -815.846 1.13558e-07 1.13556e-07 0 0 0 68.2321 4.92764 4.48665 58.8178 +1 1 2 235 1.235 323.15 0 0 0.0424 -0.023026 -0.023026 0 0 0 -816.708 1.13286e-07 1.13284e-07 0 0 0 68.3627 4.93805 4.46257 58.9621 +1 1 2 236 1.236 323.15 0 0 0.04224 -0.0229479 -0.0229479 0 0 0 -817.569 1.13015e-07 1.13013e-07 0 0 0 68.4935 4.94847 4.43857 59.1064 +1 1 2 237 1.237 323.15 0 0 0.04208 -0.0228698 -0.0228698 0 0 0 -818.429 1.12744e-07 1.12742e-07 0 0 0 68.6244 4.95889 4.41462 59.2508 +1 1 2 238 1.238 323.15 0 0 0.04192 -0.0227917 -0.0227917 0 0 0 -819.289 1.12473e-07 1.12471e-07 0 0 0 68.7554 4.96931 4.39074 59.3953 +1 1 2 239 1.239 323.15 0 0 0.04176 -0.0227137 -0.0227137 0 0 0 -820.148 1.12201e-07 1.12199e-07 0 0 0 68.8865 4.97974 4.36693 59.5399 +1 1 2 240 1.24 323.15 0 0 0.0416 -0.0226356 -0.0226356 0 0 0 -821.007 1.1193e-07 1.11928e-07 0 0 0 69.0178 4.99017 4.34317 59.6845 +1 1 2 241 1.241 323.15 0 0 0.04144 -0.0225575 -0.0225575 0 0 0 -821.865 1.11658e-07 1.11656e-07 0 0 0 69.1493 5.00061 4.31949 59.8292 +1 1 2 242 1.242 323.15 0 0 0.04128 -0.0224794 -0.0224794 0 0 0 -822.723 1.11387e-07 1.11385e-07 0 0 0 69.2808 5.01105 4.29586 59.9739 +1 1 2 243 1.243 323.15 0 0 0.04112 -0.0224013 -0.0224013 0 0 0 -823.58 1.11116e-07 1.11114e-07 0 0 0 69.4125 5.0215 4.2723 60.1187 +1 1 2 244 1.244 323.15 0 0 0.04096 -0.0223233 -0.0223233 0 0 0 -824.436 1.10845e-07 1.10843e-07 0 0 0 69.5444 5.03195 4.2488 60.2636 +1 1 2 245 1.245 323.15 0 0 0.0408 -0.0222452 -0.0222452 0 0 0 -825.292 1.10573e-07 1.10571e-07 0 0 0 69.6763 5.0424 4.22537 60.4086 +1 1 2 246 1.246 323.15 0 0 0.04064 -0.0221671 -0.0221671 0 0 0 -826.148 1.10302e-07 1.103e-07 0 0 0 69.8085 5.05286 4.202 60.5536 +1 1 2 247 1.247 323.15 0 0 0.04048 -0.022089 -0.022089 0 0 0 -827.003 1.10031e-07 1.10029e-07 0 0 0 69.9407 5.06333 4.17869 60.6987 +1 1 2 248 1.248 323.15 0 0 0.04032 -0.0220109 -0.0220109 0 0 0 -827.857 1.0976e-07 1.09757e-07 0 0 0 70.0731 5.07379 4.15545 60.8439 +1 1 2 249 1.249 323.15 0 0 0.04016 -0.0219328 -0.0219328 0 0 0 -828.711 1.09489e-07 1.09486e-07 0 0 0 70.2056 5.08426 4.13227 60.9891 +1 1 2 250 1.25 323.15 0 0 0.04 -0.0218547 -0.0218547 0 0 0 -829.564 1.09217e-07 1.09215e-07 0 0 0 70.3383 5.09474 4.10916 61.1344 +1 1 2 251 1.251 323.15 0 0 0.03984 -0.0217766 -0.0217766 0 0 0 -830.417 1.08946e-07 1.08943e-07 0 0 0 70.4711 5.10522 4.08611 61.2798 +1 1 2 252 1.252 323.15 0 0 0.03968 -0.0216985 -0.0216985 0 0 0 -831.27 1.08675e-07 1.08672e-07 0 0 0 70.604 5.11571 4.06312 61.4252 +1 1 2 253 1.253 323.15 0 0 0.03952 -0.0216204 -0.0216204 0 0 0 -832.121 1.08404e-07 1.08401e-07 0 0 0 70.7371 5.12619 4.0402 61.5707 +1 1 2 254 1.254 323.15 0 0 0.03936 -0.0215423 -0.0215423 0 0 0 -832.972 1.08132e-07 1.0813e-07 0 0 0 70.8703 5.13669 4.01734 61.7163 +1 1 2 255 1.255 323.15 0 0 0.0392 -0.0214642 -0.0214642 0 0 0 -833.823 1.07861e-07 1.07859e-07 0 0 0 71.0036 5.14718 3.99455 61.8619 +1 1 2 256 1.256 323.15 0 0 0.03904 -0.0213861 -0.0213861 0 0 0 -834.673 1.0759e-07 1.07587e-07 0 0 0 71.1371 5.15769 3.97182 62.0076 +1 1 2 257 1.257 323.15 0 0 0.03888 -0.021308 -0.021308 0 0 0 -835.523 1.07319e-07 1.07316e-07 0 0 0 71.2707 5.16819 3.94915 62.1534 +1 1 2 258 1.258 323.15 0 0 0.03872 -0.0212299 -0.0212299 0 0 0 -836.372 1.07048e-07 1.07045e-07 0 0 0 71.4045 5.1787 3.92655 62.2992 +1 1 2 259 1.259 323.15 0 0 0.03856 -0.0211518 -0.0211518 0 0 0 -837.221 1.06776e-07 1.06774e-07 0 0 0 71.5384 5.18922 3.90401 62.4451 +1 1 2 260 1.26 323.15 0 0 0.0384 -0.0210737 -0.0210737 0 0 0 -838.069 1.06506e-07 1.06503e-07 0 0 0 71.6724 5.19974 3.88154 62.5911 +1 1 2 261 1.261 323.15 0 0 0.03824 -0.0209956 -0.0209956 0 0 0 -838.917 1.06235e-07 1.06232e-07 0 0 0 71.8066 5.21026 3.85913 62.7372 +1 1 2 262 1.262 323.15 0 0 0.03808 -0.0209175 -0.0209175 0 0 0 -839.764 1.05963e-07 1.05961e-07 0 0 0 71.9409 5.22079 3.83678 62.8833 +1 1 2 263 1.263 323.15 0 0 0.03792 -0.0208394 -0.0208394 0 0 0 -840.61 1.05692e-07 1.05689e-07 0 0 0 72.0753 5.23132 3.8145 63.0295 +1 1 2 264 1.264 323.15 0 0 0.03776 -0.0207613 -0.0207613 0 0 0 -841.456 1.05421e-07 1.05418e-07 0 0 0 72.2098 5.24185 3.79228 63.1757 +1 1 2 265 1.265 323.15 0 0 0.0376 -0.0206832 -0.0206832 0 0 0 -842.302 1.0515e-07 1.05147e-07 0 0 0 72.3445 5.25239 3.77013 63.322 +1 1 2 266 1.266 323.15 0 0 0.03744 -0.0206051 -0.0206051 0 0 0 -843.147 1.04878e-07 1.04876e-07 0 0 0 72.4794 5.26294 3.74804 63.4684 +1 1 2 267 1.267 323.15 0 0 0.03728 -0.020527 -0.020527 0 0 0 -843.992 1.04607e-07 1.04605e-07 0 0 0 72.6144 5.27349 3.72601 63.6149 +1 1 2 268 1.268 323.15 0 0 0.03712 -0.0204489 -0.0204489 0 0 0 -844.836 1.04336e-07 1.04333e-07 0 0 0 72.7495 5.28404 3.70405 63.7614 +1 1 2 269 1.269 323.15 0 0 0.03696 -0.0203708 -0.0203708 0 0 0 -845.679 1.04064e-07 1.04062e-07 0 0 0 72.8847 5.2946 3.68215 63.9079 +1 1 2 270 1.27 323.15 0 0 0.0368 -0.0202926 -0.0202926 0 0 0 -846.522 1.03793e-07 1.03791e-07 0 0 0 73.0201 5.30516 3.66032 64.0546 +1 1 2 271 1.271 323.15 0 0 0.03664 -0.0202145 -0.0202145 0 0 0 -847.365 1.03522e-07 1.0352e-07 0 0 0 73.1556 5.31573 3.63855 64.2013 +1 1 2 272 1.272 323.15 0 0 0.03648 -0.0201364 -0.0201364 0 0 0 -848.207 1.03251e-07 1.03248e-07 0 0 0 73.2912 5.3263 3.61685 64.3481 +1 1 2 273 1.273 323.15 0 0 0.03632 -0.0200583 -0.0200583 0 0 0 -849.048 1.02979e-07 1.02977e-07 0 0 0 73.427 5.33687 3.59521 64.4949 +1 1 2 274 1.274 323.15 0 0 0.03616 -0.0199802 -0.0199802 0 0 0 -849.89 1.02708e-07 1.02706e-07 0 0 0 73.5629 5.34745 3.57363 64.6418 +1 1 2 275 1.275 323.15 0 0 0.036 -0.019902 -0.019902 0 0 0 -850.73 1.02436e-07 1.02434e-07 0 0 0 73.699 5.35803 3.55212 64.7888 +1 1 2 276 1.276 323.15 0 0 0.03584 -0.0198239 -0.0198239 0 0 0 -851.57 1.02165e-07 1.02163e-07 0 0 0 73.8352 5.36862 3.53067 64.9359 +1 1 2 277 1.277 323.15 0 0 0.03568 -0.0197458 -0.0197458 0 0 0 -852.41 1.01894e-07 1.01891e-07 0 0 0 73.9715 5.37921 3.50929 65.083 +1 1 2 278 1.278 323.15 0 0 0.03552 -0.0196677 -0.0196677 0 0 0 -853.249 1.01623e-07 1.0162e-07 0 0 0 74.1079 5.38981 3.48797 65.2302 +1 1 2 279 1.279 323.15 0 0 0.03536 -0.0195896 -0.0195896 0 0 0 -854.088 1.01351e-07 1.01349e-07 0 0 0 74.2445 5.40041 3.46672 65.3774 +1 1 2 280 1.28 323.15 0 0 0.0352 -0.0195114 -0.0195114 0 0 0 -854.926 1.0108e-07 1.01077e-07 0 0 0 74.3812 5.41102 3.44553 65.5247 +1 1 2 281 1.281 323.15 0 0 0.03504 -0.0194333 -0.0194333 0 0 0 -855.764 1.00808e-07 1.00806e-07 0 0 0 74.5181 5.42162 3.4244 65.6721 +1 1 2 282 1.282 323.15 0 0 0.03488 -0.0193552 -0.0193552 0 0 0 -856.601 1.00537e-07 1.00534e-07 0 0 0 74.6551 5.43224 3.40334 65.8195 +1 1 2 283 1.283 323.15 0 0 0.03472 -0.019277 -0.019277 0 0 0 -857.438 1.00265e-07 1.00263e-07 0 0 0 74.7922 5.44286 3.38234 65.967 +1 1 2 284 1.284 323.15 0 0 0.03456 -0.0191989 -0.0191989 0 0 0 -858.274 9.99941e-08 9.99917e-08 0 0 0 74.9295 5.45348 3.36141 66.1146 +1 1 2 285 1.285 323.15 0 0 0.0344 -0.0191208 -0.0191208 0 0 0 -859.11 9.97231e-08 9.97207e-08 0 0 0 75.0669 5.4641 3.34054 66.2622 +1 1 2 286 1.286 323.15 0 0 0.03424 -0.0190426 -0.0190426 0 0 0 -859.945 9.94516e-08 9.94493e-08 0 0 0 75.2044 5.47473 3.31974 66.4099 +1 1 2 287 1.287 323.15 0 0 0.03408 -0.0189645 -0.0189645 0 0 0 -860.78 9.91802e-08 9.91781e-08 0 0 0 75.342 5.48537 3.299 66.5577 +1 1 2 288 1.288 323.15 0 0 0.03392 -0.0188864 -0.0188864 0 0 0 -861.614 9.89092e-08 9.89071e-08 0 0 0 75.4798 5.49601 3.27832 66.7055 +1 1 2 289 1.289 323.15 0 0 0.03376 -0.0188082 -0.0188082 0 0 0 -862.448 9.86379e-08 9.86359e-08 0 0 0 75.6178 5.50665 3.25771 66.8534 +1 1 2 290 1.29 323.15 0 0 0.0336 -0.0187301 -0.0187301 0 0 0 -863.281 9.83665e-08 9.83646e-08 0 0 0 75.7558 5.5173 3.23717 67.0014 +1 1 2 291 1.291 323.15 0 0 0.03344 -0.018652 -0.018652 0 0 0 -864.114 9.80953e-08 9.80932e-08 0 0 0 75.894 5.52795 3.21668 67.1494 +1 1 2 292 1.292 323.15 0 0 0.03328 -0.0185738 -0.0185738 0 0 0 -864.947 9.7824e-08 9.7822e-08 0 0 0 76.0323 5.53861 3.19627 67.2975 +1 1 2 293 1.293 323.15 0 0 0.03312 -0.0184957 -0.0184957 0 0 0 -865.779 9.75523e-08 9.75502e-08 0 0 0 76.1708 5.54927 3.17591 67.4456 +1 1 2 294 1.294 323.15 0 0 0.03296 -0.0184175 -0.0184175 0 0 0 -866.61 9.72814e-08 9.72794e-08 0 0 0 76.3094 5.55993 3.15562 67.5938 +1 1 2 295 1.295 323.15 0 0 0.0328 -0.0183394 -0.0183394 0 0 0 -867.442 9.701e-08 9.70081e-08 0 0 0 76.4481 5.5706 3.1354 67.7421 +1 1 2 296 1.296 323.15 0 0 0.03264 -0.0182613 -0.0182613 0 0 0 -868.272 9.67388e-08 9.6737e-08 0 0 0 76.587 5.58128 3.11524 67.8904 +1 1 2 297 1.297 323.15 0 0 0.03248 -0.0181831 -0.0181831 0 0 0 -869.102 9.64678e-08 9.64661e-08 0 0 0 76.726 5.59196 3.09515 68.0389 +1 1 2 298 1.298 323.15 0 0 0.03232 -0.018105 -0.018105 0 0 0 -869.932 9.61967e-08 9.61951e-08 0 0 0 76.8651 5.60264 3.07512 68.1873 +1 1 2 299 1.299 323.15 0 0 0.03216 -0.0180268 -0.0180268 0 0 0 -870.761 9.59251e-08 9.59233e-08 0 0 0 77.0043 5.61333 3.05515 68.3359 +1 1 2 300 1.3 323.15 0 0 0.032 -0.0179487 -0.0179487 0 0 0 -871.59 9.56541e-08 9.56525e-08 0 0 0 77.1437 5.62402 3.03525 68.4845 +1 1 2 301 1.301 323.15 0 0 0.03184 -0.0178705 -0.0178705 0 0 0 -872.419 9.53828e-08 9.53812e-08 0 0 0 77.2832 5.63471 3.01541 68.6331 +1 1 2 302 1.302 323.15 0 0 0.03168 -0.0177924 -0.0177924 0 0 0 -873.247 9.51114e-08 9.51099e-08 0 0 0 77.4229 5.64541 2.99564 68.7818 +1 1 2 303 1.303 323.15 0 0 0.03152 -0.0177142 -0.0177142 0 0 0 -874.074 9.48397e-08 9.48381e-08 0 0 0 77.5627 5.65612 2.97593 68.9306 +1 1 2 304 1.304 323.15 0 0 0.03136 -0.0176361 -0.0176361 0 0 0 -874.901 9.45685e-08 9.45669e-08 0 0 0 77.7026 5.66682 2.95629 69.0795 +1 1 2 305 1.305 323.15 0 0 0.0312 -0.0175579 -0.0175579 0 0 0 -875.728 9.42973e-08 9.42957e-08 0 0 0 77.8426 5.67754 2.93671 69.2284 +1 1 2 306 1.306 323.15 0 0 0.03104 -0.0174798 -0.0174798 0 0 0 -876.554 9.40264e-08 9.40249e-08 0 0 0 77.9828 5.68825 2.9172 69.3774 +1 1 2 307 1.307 323.15 0 0 0.03088 -0.0174016 -0.0174016 0 0 0 -877.379 9.37552e-08 9.37537e-08 0 0 0 78.1231 5.69897 2.89775 69.5264 +1 1 2 308 1.308 323.15 0 0 0.03072 -0.0173235 -0.0173235 0 0 0 -878.205 9.34839e-08 9.34826e-08 0 0 0 78.2636 5.7097 2.87836 69.6755 +1 1 2 309 1.309 323.15 0 0 0.03056 -0.0172453 -0.0172453 0 0 0 -879.029 9.32124e-08 9.3211e-08 0 0 0 78.4042 5.72043 2.85904 69.8247 +1 1 2 310 1.31 323.15 0 0 0.0304 -0.0171672 -0.0171672 0 0 0 -879.854 9.29415e-08 9.29402e-08 0 0 0 78.5449 5.73116 2.83979 69.9739 +1 1 2 311 1.311 323.15 0 0 0.03024 -0.017089 -0.017089 0 0 0 -880.678 9.26703e-08 9.26691e-08 0 0 0 78.6857 5.7419 2.8206 70.1232 +1 1 2 312 1.312 323.15 0 0 0.03008 -0.0170108 -0.0170108 0 0 0 -881.501 9.23984e-08 9.23974e-08 0 0 0 78.8267 5.75265 2.80147 70.2726 +1 1 2 313 1.313 323.15 0 0 0.02992 -0.0169327 -0.0169327 0 0 0 -882.324 9.21271e-08 9.2126e-08 0 0 0 78.9678 5.76339 2.78241 70.422 +1 1 2 314 1.314 323.15 0 0 0.02976 -0.0168545 -0.0168545 0 0 0 -883.147 9.1856e-08 9.18549e-08 0 0 0 79.109 5.77414 2.76342 70.5715 +1 1 2 315 1.315 323.15 0 0 0.0296 -0.0167764 -0.0167764 0 0 0 -883.969 9.15847e-08 9.15837e-08 0 0 0 79.2504 5.7849 2.74448 70.721 +1 1 2 316 1.316 323.15 0 0 0.02944 -0.0166982 -0.0166982 0 0 0 -884.791 9.13134e-08 9.13124e-08 0 0 0 79.3919 5.79566 2.72562 70.8706 +1 1 2 317 1.317 323.15 0 0 0.02928 -0.01662 -0.01662 0 0 0 -885.612 9.1042e-08 9.10409e-08 0 0 0 79.5335 5.80642 2.70682 71.0203 +1 1 2 318 1.318 323.15 0 0 0.02912 -0.0165419 -0.0165419 0 0 0 -886.433 9.07706e-08 9.07696e-08 0 0 0 79.6753 5.81719 2.68808 71.17 +1 1 2 319 1.319 323.15 0 0 0.02896 -0.0164637 -0.0164637 0 0 0 -887.253 9.04992e-08 9.04982e-08 0 0 0 79.8172 5.82797 2.66941 71.3198 +1 1 2 320 1.32 323.15 0 0 0.0288 -0.0163855 -0.0163855 0 0 0 -888.073 9.02276e-08 9.02265e-08 0 0 0 79.9592 5.83874 2.6508 71.4697 +1 1 2 321 1.321 323.15 0 0 0.02864 -0.0163074 -0.0163074 0 0 0 -888.893 8.99563e-08 8.9955e-08 0 0 0 80.1014 5.84953 2.63226 71.6196 +1 1 2 322 1.322 323.15 0 0 0.02848 -0.0162292 -0.0162292 0 0 0 -889.712 8.9685e-08 8.96838e-08 0 0 0 80.2437 5.86031 2.61378 71.7696 +1 1 2 323 1.323 323.15 0 0 0.02832 -0.016151 -0.016151 0 0 0 -890.531 8.94137e-08 8.94124e-08 0 0 0 80.3861 5.8711 2.59536 71.9196 +1 1 2 324 1.324 323.15 0 0 0.02816 -0.0160729 -0.0160729 0 0 0 -891.349 8.91427e-08 8.91413e-08 0 0 0 80.5286 5.8819 2.57702 72.0697 +1 1 2 325 1.325 323.15 0 0 0.028 -0.0159947 -0.0159947 0 0 0 -892.167 8.88712e-08 8.88698e-08 0 0 0 80.6713 5.8927 2.55873 72.2199 +1 1 2 326 1.326 323.15 0 0 0.02784 -0.0159165 -0.0159165 0 0 0 -892.984 8.85998e-08 8.85984e-08 0 0 0 80.8141 5.9035 2.54051 72.3701 +1 1 2 327 1.327 323.15 0 0 0.02768 -0.0158383 -0.0158383 0 0 0 -893.802 8.83285e-08 8.8327e-08 0 0 0 80.9571 5.91431 2.52236 72.5204 +1 1 2 328 1.328 323.15 0 0 0.02752 -0.0157602 -0.0157602 0 0 0 -894.618 8.80574e-08 8.8056e-08 0 0 0 81.1002 5.92512 2.50427 72.6708 +1 1 2 329 1.329 323.15 0 0 0.02736 -0.015682 -0.015682 0 0 0 -895.434 8.77857e-08 8.77845e-08 0 0 0 81.2434 5.93594 2.48625 72.8212 +1 1 2 330 1.33 323.15 0 0 0.0272 -0.0156038 -0.0156038 0 0 0 -896.25 8.75144e-08 8.75129e-08 0 0 0 81.3867 5.94676 2.46829 72.9716 +1 1 2 331 1.331 323.15 0 0 0.02704 -0.0155256 -0.0155256 0 0 0 -897.065 8.72432e-08 8.72419e-08 0 0 0 81.5302 5.95758 2.45039 73.1222 +1 1 2 332 1.332 323.15 0 0 0.02688 -0.0154475 -0.0154475 0 0 0 -897.88 8.69718e-08 8.69704e-08 0 0 0 81.6738 5.96841 2.43256 73.2728 +1 1 2 333 1.333 323.15 0 0 0.02672 -0.0153693 -0.0153693 0 0 0 -898.695 8.67004e-08 8.6699e-08 0 0 0 81.8175 5.97925 2.4148 73.4234 +1 1 2 334 1.334 323.15 0 0 0.02656 -0.0152911 -0.0152911 0 0 0 -899.509 8.64292e-08 8.64278e-08 0 0 0 81.9613 5.99008 2.3971 73.5742 +1 1 2 335 1.335 323.15 0 0 0.0264 -0.0152129 -0.0152129 0 0 0 -900.323 8.6158e-08 8.61566e-08 0 0 0 82.1053 6.00093 2.37947 73.7249 +1 1 2 336 1.336 323.15 0 0 0.02624 -0.0151347 -0.0151347 0 0 0 -901.136 8.58869e-08 8.58857e-08 0 0 0 82.2494 6.01177 2.3619 73.8758 +1 1 2 337 1.337 323.15 0 0 0.02608 -0.0150566 -0.0150566 0 0 0 -901.949 8.56155e-08 8.56143e-08 0 0 0 82.3937 6.02263 2.34439 74.0267 +1 1 2 338 1.338 323.15 0 0 0.02592 -0.0149784 -0.0149784 0 0 0 -902.762 8.53444e-08 8.53432e-08 0 0 0 82.5381 6.03348 2.32695 74.1776 +1 1 2 339 1.339 323.15 0 0 0.02576 -0.0149002 -0.0149002 0 0 0 -903.574 8.50735e-08 8.50723e-08 0 0 0 82.6826 6.04434 2.30958 74.3287 +1 1 2 340 1.34 323.15 0 0 0.0256 -0.014822 -0.014822 0 0 0 -904.385 8.48023e-08 8.48011e-08 0 0 0 82.8272 6.0552 2.29227 74.4797 +1 1 2 341 1.341 323.15 0 0 0.02544 -0.0147438 -0.0147438 0 0 0 -905.197 8.45307e-08 8.45294e-08 0 0 0 82.972 6.06607 2.27502 74.6309 +1 1 2 342 1.342 323.15 0 0 0.02528 -0.0146656 -0.0146656 0 0 0 -906.008 8.42594e-08 8.42582e-08 0 0 0 83.1169 6.07695 2.25784 74.7821 +1 1 2 343 1.343 323.15 0 0 0.02512 -0.0145874 -0.0145874 0 0 0 -906.818 8.39881e-08 8.39868e-08 0 0 0 83.2619 6.08782 2.24073 74.9333 +1 1 2 344 1.344 323.15 0 0 0.02496 -0.0145093 -0.0145093 0 0 0 -907.628 8.37169e-08 8.37157e-08 0 0 0 83.4071 6.09871 2.22368 75.0847 +1 1 2 345 1.345 323.15 0 0 0.0248 -0.0144311 -0.0144311 0 0 0 -908.438 8.34458e-08 8.34445e-08 0 0 0 83.5523 6.10959 2.20669 75.2361 +1 1 2 346 1.346 323.15 0 0 0.02464 -0.0143529 -0.0143529 0 0 0 -909.247 8.31744e-08 8.31732e-08 0 0 0 83.6978 6.12048 2.18977 75.3875 +1 1 2 347 1.347 323.15 0 0 0.02448 -0.0142747 -0.0142747 0 0 0 -910.056 8.2903e-08 8.29018e-08 0 0 0 83.8433 6.13138 2.17292 75.539 +1 1 2 348 1.348 323.15 0 0 0.02432 -0.0141965 -0.0141965 0 0 0 -910.864 8.26317e-08 8.26305e-08 0 0 0 83.989 6.14227 2.15613 75.6906 +1 1 2 349 1.349 323.15 0 0 0.02416 -0.0141183 -0.0141183 0 0 0 -911.672 8.23604e-08 8.23592e-08 0 0 0 84.1348 6.15318 2.1394 75.8422 +1 1 2 350 1.35 323.15 0 0 0.024 -0.0140401 -0.0140401 0 0 0 -912.48 8.2089e-08 8.20878e-08 0 0 0 84.2807 6.16409 2.12275 75.9939 +1 1 2 351 1.351 323.15 0 0 0.02384 -0.0139619 -0.0139619 0 0 0 -913.287 8.18176e-08 8.18165e-08 0 0 0 84.4268 6.175 2.10615 76.1456 +1 1 2 352 1.352 323.15 0 0 0.02368 -0.0138837 -0.0138837 0 0 0 -914.094 8.15464e-08 8.15453e-08 0 0 0 84.573 6.18591 2.08962 76.2974 +1 1 2 353 1.353 323.15 0 0 0.02352 -0.0138055 -0.0138055 0 0 0 -914.901 8.12748e-08 8.12735e-08 0 0 0 84.7193 6.19683 2.07316 76.4493 +1 1 2 354 1.354 323.15 0 0 0.02336 -0.0137273 -0.0137273 0 0 0 -915.707 8.10033e-08 8.1002e-08 0 0 0 84.8657 6.20776 2.05676 76.6012 +1 1 2 355 1.355 323.15 0 0 0.0232 -0.0136491 -0.0136491 0 0 0 -916.513 8.0732e-08 8.07306e-08 0 0 0 85.0123 6.21869 2.04043 76.7532 +1 1 2 356 1.356 323.15 0 0 0.02304 -0.0135709 -0.0135709 0 0 0 -917.318 8.04607e-08 8.04594e-08 0 0 0 85.159 6.22962 2.02416 76.9052 +1 1 2 357 1.357 323.15 0 0 0.02288 -0.0134927 -0.0134927 0 0 0 -918.123 8.01896e-08 8.01882e-08 0 0 0 85.3058 6.24056 2.00795 77.0573 +1 1 2 358 1.358 323.15 0 0 0.02272 -0.0134145 -0.0134145 0 0 0 -918.928 7.99181e-08 7.99167e-08 0 0 0 85.4528 6.2515 1.99182 77.2095 +1 1 2 359 1.359 323.15 0 0 0.02256 -0.0133363 -0.0133363 0 0 0 -919.732 7.96468e-08 7.96455e-08 0 0 0 85.5999 6.26245 1.97574 77.3617 +1 1 2 360 1.36 323.15 0 0 0.0224 -0.0132581 -0.0132581 0 0 0 -920.536 7.93753e-08 7.93739e-08 0 0 0 85.7471 6.2734 1.95973 77.514 +1 1 2 361 1.361 323.15 0 0 0.02224 -0.0131799 -0.0131799 0 0 0 -921.339 7.91039e-08 7.91024e-08 0 0 0 85.8945 6.28436 1.94379 77.6663 +1 1 2 362 1.362 323.15 0 0 0.02208 -0.0131017 -0.0131017 0 0 0 -922.142 7.88327e-08 7.88311e-08 0 0 0 86.0419 6.29532 1.92791 77.8187 +1 1 2 363 1.363 323.15 0 0 0.02192 -0.0130235 -0.0130235 0 0 0 -922.945 7.85611e-08 7.85597e-08 0 0 0 86.1896 6.30628 1.9121 77.9712 +1 1 2 364 1.364 323.15 0 0 0.02176 -0.0129453 -0.0129453 0 0 0 -923.747 7.829e-08 7.82884e-08 0 0 0 86.3373 6.31725 1.89635 78.1237 +1 1 2 365 1.365 323.15 0 0 0.0216 -0.0128671 -0.0128671 0 0 0 -924.549 7.80186e-08 7.8017e-08 0 0 0 86.4852 6.32822 1.88067 78.2763 +1 1 2 366 1.366 323.15 0 0 0.02144 -0.0127889 -0.0127889 0 0 0 -925.35 7.77473e-08 7.77457e-08 0 0 0 86.6331 6.3392 1.86506 78.4289 +1 1 2 367 1.367 323.15 0 0 0.02128 -0.0127107 -0.0127107 0 0 0 -926.152 7.74758e-08 7.74742e-08 0 0 0 86.7813 6.35018 1.8495 78.5816 +1 1 2 368 1.368 323.15 0 0 0.02112 -0.0126325 -0.0126325 0 0 0 -926.952 7.72045e-08 7.7203e-08 0 0 0 86.9295 6.36117 1.83402 78.7343 +1 1 2 369 1.369 323.15 0 0 0.02096 -0.0125542 -0.0125542 0 0 0 -927.753 7.69334e-08 7.69318e-08 0 0 0 87.0779 6.37216 1.8186 78.8871 +1 1 2 370 1.37 323.15 0 0 0.0208 -0.012476 -0.012476 0 0 0 -928.553 7.66623e-08 7.66607e-08 0 0 0 87.2264 6.38315 1.80324 79.04 +1 1 2 371 1.371 323.15 0 0 0.02064 -0.0123978 -0.0123978 0 0 0 -929.353 7.63912e-08 7.63899e-08 0 0 0 87.375 6.39415 1.78795 79.1929 +1 1 2 372 1.372 323.15 0 0 0.02048 -0.0123196 -0.0123196 0 0 0 -930.152 7.61201e-08 7.61188e-08 0 0 0 87.5238 6.40515 1.77273 79.3459 +1 1 2 373 1.373 323.15 0 0 0.02032 -0.0122414 -0.0122414 0 0 0 -930.951 7.58487e-08 7.58474e-08 0 0 0 87.6727 6.41616 1.75757 79.499 +1 1 2 374 1.374 323.15 0 0 0.02016 -0.0121632 -0.0121632 0 0 0 -931.749 7.55775e-08 7.55764e-08 0 0 0 87.8217 6.42717 1.74247 79.652 +1 1 2 375 1.375 323.15 0 0 0.02 -0.012085 -0.012085 0 0 0 -932.547 7.53062e-08 7.53051e-08 0 0 0 87.9708 6.43819 1.72744 79.8052 +1 1 2 376 1.376 323.15 0 0 0.01984 -0.0120068 -0.0120068 0 0 0 -933.345 7.50352e-08 7.50341e-08 0 0 0 88.1201 6.44921 1.71248 79.9584 +1 1 2 377 1.377 323.15 0 0 0.01968 -0.0119285 -0.0119285 0 0 0 -934.143 7.47638e-08 7.47625e-08 0 0 0 88.2695 6.46023 1.69758 80.1117 +1 1 2 378 1.378 323.15 0 0 0.01952 -0.0118503 -0.0118503 0 0 0 -934.94 7.44924e-08 7.44911e-08 0 0 0 88.419 6.47126 1.68275 80.265 +1 1 2 379 1.379 323.15 0 0 0.01936 -0.0117721 -0.0117721 0 0 0 -935.736 7.42211e-08 7.42197e-08 0 0 0 88.5687 6.4823 1.66798 80.4184 +1 1 2 380 1.38 323.15 0 0 0.0192 -0.0116939 -0.0116939 0 0 0 -936.533 7.39497e-08 7.39484e-08 0 0 0 88.7185 6.49333 1.65328 80.5719 +1 1 2 381 1.381 323.15 0 0 0.01904 -0.0116157 -0.0116157 0 0 0 -937.329 7.36784e-08 7.36771e-08 0 0 0 88.8684 6.50438 1.63864 80.7254 +1 1 2 382 1.382 323.15 0 0 0.01888 -0.0115374 -0.0115374 0 0 0 -938.124 7.34073e-08 7.3406e-08 0 0 0 89.0184 6.51542 1.62407 80.8789 +1 1 2 383 1.383 323.15 0 0 0.01872 -0.0114592 -0.0114592 0 0 0 -938.92 7.3136e-08 7.31347e-08 0 0 0 89.1686 6.52647 1.60956 81.0325 +1 1 2 384 1.384 323.15 0 0 0.01856 -0.011381 -0.011381 0 0 0 -939.715 7.28648e-08 7.28637e-08 0 0 0 89.3189 6.53753 1.59512 81.1862 +1 1 2 385 1.385 323.15 0 0 0.0184 -0.0113028 -0.0113028 0 0 0 -940.509 7.25936e-08 7.25926e-08 0 0 0 89.4693 6.54859 1.58075 81.34 +1 1 2 386 1.386 323.15 0 0 0.01824 -0.0112245 -0.0112245 0 0 0 -941.303 7.23225e-08 7.23214e-08 0 0 0 89.6198 6.55965 1.56644 81.4937 +1 1 2 387 1.387 323.15 0 0 0.01808 -0.0111463 -0.0111463 0 0 0 -942.097 7.20513e-08 7.20503e-08 0 0 0 89.7705 6.57072 1.55219 81.6476 +1 1 2 388 1.388 323.15 0 0 0.01792 -0.0110681 -0.0110681 0 0 0 -942.891 7.178e-08 7.1779e-08 0 0 0 89.9213 6.5818 1.53801 81.8015 +1 1 2 389 1.389 323.15 0 0 0.01776 -0.0109899 -0.0109899 0 0 0 -943.684 7.15088e-08 7.1508e-08 0 0 0 90.0722 6.59287 1.5239 81.9555 +1 1 2 390 1.39 323.15 0 0 0.0176 -0.0109116 -0.0109116 0 0 0 -944.476 7.12375e-08 7.12366e-08 0 0 0 90.2233 6.60395 1.50985 82.1095 +1 1 2 391 1.391 323.15 0 0 0.01744 -0.0108334 -0.0108334 0 0 0 -945.269 7.09662e-08 7.09653e-08 0 0 0 90.3745 6.61504 1.49587 82.2636 +1 1 2 392 1.392 323.15 0 0 0.01728 -0.0107552 -0.0107552 0 0 0 -946.061 7.06947e-08 7.0694e-08 0 0 0 90.5258 6.62613 1.48195 82.4177 +1 1 2 393 1.393 323.15 0 0 0.01712 -0.010677 -0.010677 0 0 0 -946.853 7.04235e-08 7.04228e-08 0 0 0 90.6772 6.63723 1.4681 82.5719 +1 1 2 394 1.394 323.15 0 0 0.01696 -0.0105987 -0.0105987 0 0 0 -947.644 7.01526e-08 7.01517e-08 0 0 0 90.8288 6.64832 1.45431 82.7261 +1 1 2 395 1.395 323.15 0 0 0.0168 -0.0105205 -0.0105205 0 0 0 -948.435 6.98815e-08 6.98806e-08 0 0 0 90.9804 6.65943 1.44059 82.8804 +1 1 2 396 1.396 323.15 0 0 0.01664 -0.0104423 -0.0104423 0 0 0 -949.226 6.96103e-08 6.96093e-08 0 0 0 91.1323 6.67054 1.42694 83.0348 +1 1 2 397 1.397 323.15 0 0 0.01648 -0.010364 -0.010364 0 0 0 -950.016 6.93391e-08 6.9338e-08 0 0 0 91.2842 6.68165 1.41335 83.1892 +1 1 2 398 1.398 323.15 0 0 0.01632 -0.0102858 -0.0102858 0 0 0 -950.806 6.90676e-08 6.90665e-08 0 0 0 91.4363 6.69276 1.39982 83.3437 +1 1 2 399 1.399 323.15 0 0 0.01616 -0.0102076 -0.0102076 0 0 0 -951.595 6.87964e-08 6.87953e-08 0 0 0 91.5885 6.70388 1.38636 83.4982 +1 1 2 400 1.4 323.15 0 0 0.016 -0.0101293 -0.0101293 0 0 0 -952.385 6.85248e-08 6.85238e-08 0 0 0 91.7408 6.71501 1.37297 83.6528 +1 1 2 401 1.401 323.15 0 0 0.01584 -0.0100511 -0.0100511 0 0 0 -953.174 6.82537e-08 6.82526e-08 0 0 0 91.8932 6.72614 1.35964 83.8074 +1 1 2 402 1.402 323.15 0 0 0.01568 -0.00997285 -0.00997285 0 0 0 -953.962 6.79825e-08 6.79813e-08 0 0 0 92.0458 6.73727 1.34638 83.9621 +1 1 2 403 1.403 323.15 0 0 0.01552 -0.00989461 -0.00989461 0 0 0 -954.75 6.77111e-08 6.77099e-08 0 0 0 92.1985 6.74841 1.33318 84.1169 +1 1 2 404 1.404 323.15 0 0 0.01536 -0.00981637 -0.00981637 0 0 0 -955.538 6.74398e-08 6.74387e-08 0 0 0 92.3513 6.75955 1.32005 84.2717 +1 1 2 405 1.405 323.15 0 0 0.0152 -0.00973813 -0.00973813 0 0 0 -956.326 6.71687e-08 6.71675e-08 0 0 0 92.5043 6.7707 1.30699 84.4266 +1 1 2 406 1.406 323.15 0 0 0.01504 -0.00965989 -0.00965989 0 0 0 -957.113 6.68975e-08 6.68962e-08 0 0 0 92.6573 6.78185 1.29399 84.5815 +1 1 2 407 1.407 323.15 0 0 0.01488 -0.00958165 -0.00958165 0 0 0 -957.9 6.66262e-08 6.6625e-08 0 0 0 92.8105 6.79301 1.28105 84.7365 +1 1 2 408 1.408 323.15 0 0 0.01472 -0.00950341 -0.00950341 0 0 0 -958.686 6.63552e-08 6.6354e-08 0 0 0 92.9639 6.80417 1.26818 84.8915 +1 1 2 409 1.409 323.15 0 0 0.01456 -0.00942517 -0.00942517 0 0 0 -959.473 6.60841e-08 6.60827e-08 0 0 0 93.1173 6.81533 1.25538 85.0466 +1 1 2 410 1.41 323.15 0 0 0.0144 -0.00934693 -0.00934693 0 0 0 -960.258 6.58128e-08 6.58115e-08 0 0 0 93.2709 6.8265 1.24264 85.2018 +1 1 2 411 1.411 323.15 0 0 0.01424 -0.00926868 -0.00926868 0 0 0 -961.044 6.55417e-08 6.55403e-08 0 0 0 93.4246 6.83767 1.22997 85.357 +1 1 2 412 1.412 323.15 0 0 0.01408 -0.00919044 -0.00919044 0 0 0 -961.829 6.52702e-08 6.52689e-08 0 0 0 93.5784 6.84885 1.21736 85.5122 +1 1 2 413 1.413 323.15 0 0 0.01392 -0.00911219 -0.00911219 0 0 0 -962.614 6.4999e-08 6.49977e-08 0 0 0 93.7324 6.86003 1.20482 85.6675 +1 1 2 414 1.414 323.15 0 0 0.01376 -0.00903395 -0.00903395 0 0 0 -963.398 6.47279e-08 6.47266e-08 0 0 0 93.8865 6.87122 1.19235 85.8229 +1 1 2 415 1.415 323.15 0 0 0.0136 -0.0089557 -0.0089557 0 0 0 -964.183 6.44568e-08 6.44555e-08 0 0 0 94.0407 6.88241 1.17994 85.9783 +1 1 2 416 1.416 323.15 0 0 0.01344 -0.00887745 -0.00887745 0 0 0 -964.967 6.41857e-08 6.41844e-08 0 0 0 94.195 6.8936 1.16759 86.1338 +1 1 2 417 1.417 323.15 0 0 0.01328 -0.0087992 -0.0087992 0 0 0 -965.75 6.39145e-08 6.39132e-08 0 0 0 94.3495 6.9048 1.15532 86.2893 +1 1 2 418 1.418 323.15 0 0 0.01312 -0.00872095 -0.00872095 0 0 0 -966.533 6.3643e-08 6.36417e-08 0 0 0 94.504 6.91601 1.1431 86.4449 +1 1 2 419 1.419 323.15 0 0 0.01296 -0.0086427 -0.0086427 0 0 0 -967.316 6.33716e-08 6.33702e-08 0 0 0 94.6588 6.92721 1.13096 86.6006 +1 1 2 420 1.42 323.15 0 0 0.0128 -0.00856445 -0.00856445 0 0 0 -968.099 6.31004e-08 6.30991e-08 0 0 0 94.8136 6.93843 1.11887 86.7563 +1 1 2 421 1.421 323.15 0 0 0.01264 -0.0084862 -0.0084862 0 0 0 -968.881 6.2829e-08 6.28276e-08 0 0 0 94.9685 6.94964 1.10686 86.912 +1 1 2 422 1.422 323.15 0 0 0.01248 -0.00840795 -0.00840795 0 0 0 -969.663 6.25576e-08 6.25562e-08 0 0 0 95.1236 6.96086 1.09491 87.0679 +1 1 2 423 1.423 323.15 0 0 0.01232 -0.0083297 -0.0083297 0 0 0 -970.444 6.22866e-08 6.22851e-08 0 0 0 95.2788 6.97209 1.08303 87.2237 +1 1 2 424 1.424 323.15 0 0 0.01216 -0.00825144 -0.00825144 0 0 0 -971.225 6.20156e-08 6.20141e-08 0 0 0 95.4342 6.98332 1.07121 87.3796 +1 1 2 425 1.425 323.15 0 0 0.012 -0.00817319 -0.00817319 0 0 0 -972.006 6.17445e-08 6.17428e-08 0 0 0 95.5896 6.99455 1.05945 87.5356 +1 1 2 426 1.426 323.15 0 0 0.01184 -0.00809494 -0.00809494 0 0 0 -972.787 6.14733e-08 6.14716e-08 0 0 0 95.7452 7.00579 1.04777 87.6917 +1 1 2 427 1.427 323.15 0 0 0.01168 -0.00801668 -0.00801668 0 0 0 -973.567 6.12021e-08 6.12004e-08 0 0 0 95.9009 7.01703 1.03615 87.8477 +1 1 2 428 1.428 323.15 0 0 0.01152 -0.00793842 -0.00793842 0 0 0 -974.347 6.09307e-08 6.09291e-08 0 0 0 96.0568 7.02828 1.02459 88.0039 +1 1 2 429 1.429 323.15 0 0 0.01136 -0.00786017 -0.00786017 0 0 0 -975.127 6.06594e-08 6.06577e-08 0 0 0 96.2127 7.03953 1.0131 88.1601 +1 1 2 430 1.43 323.15 0 0 0.0112 -0.00778191 -0.00778191 0 0 0 -975.906 6.03882e-08 6.03865e-08 0 0 0 96.3688 7.05079 1.00168 88.3163 +1 1 2 431 1.431 323.15 0 0 0.01104 -0.00770365 -0.00770365 0 0 0 -976.685 6.01169e-08 6.01154e-08 0 0 0 96.525 7.06205 0.990318 88.4726 +1 1 2 432 1.432 323.15 0 0 0.01088 -0.00762539 -0.00762539 0 0 0 -977.463 5.98457e-08 5.98443e-08 0 0 0 96.6813 7.07331 0.979026 88.629 +1 1 2 433 1.433 323.15 0 0 0.01072 -0.00754713 -0.00754713 0 0 0 -978.242 5.95744e-08 5.95731e-08 0 0 0 96.8378 7.08458 0.967799 88.7854 +1 1 2 434 1.434 323.15 0 0 0.01056 -0.00746887 -0.00746887 0 0 0 -979.02 5.93031e-08 5.93018e-08 0 0 0 96.9944 7.09586 0.956638 88.9419 +1 1 2 435 1.435 323.15 0 0 0.0104 -0.00739061 -0.00739061 0 0 0 -979.797 5.9032e-08 5.90306e-08 0 0 0 97.1511 7.10713 0.945543 89.0984 +1 1 2 436 1.436 323.15 0 0 0.01024 -0.00731235 -0.00731235 0 0 0 -980.575 5.87608e-08 5.87594e-08 0 0 0 97.3079 7.11841 0.934514 89.255 +1 1 2 437 1.437 323.15 0 0 0.01008 -0.00723409 -0.00723409 0 0 0 -981.352 5.84893e-08 5.8488e-08 0 0 0 97.4649 7.1297 0.92355 89.4116 +1 1 2 438 1.438 323.15 0 0 0.00992 -0.00715582 -0.00715582 0 0 0 -982.129 5.82183e-08 5.8217e-08 0 0 0 97.6219 7.14099 0.912653 89.5683 +1 1 2 439 1.439 323.15 0 0 0.00976 -0.00707756 -0.00707756 0 0 0 -982.905 5.79471e-08 5.79458e-08 0 0 0 97.7791 7.15229 0.901821 89.725 +1 1 2 440 1.44 323.15 0 0 0.0096 -0.00699929 -0.00699929 0 0 0 -983.681 5.76756e-08 5.76744e-08 0 0 0 97.9365 7.16359 0.891055 89.8818 +1 1 2 441 1.441 323.15 0 0 0.00944 -0.00692103 -0.00692103 0 0 0 -984.457 5.74043e-08 5.74032e-08 0 0 0 98.0939 7.17489 0.880354 90.0387 +1 1 2 442 1.442 323.15 0 0 0.00928 -0.00684276 -0.00684276 0 0 0 -985.232 5.7133e-08 5.7132e-08 0 0 0 98.2515 7.1862 0.86972 90.1956 +1 1 2 443 1.443 323.15 0 0 0.00912 -0.00676449 -0.00676449 0 0 0 -986.008 5.6862e-08 5.68608e-08 0 0 0 98.4092 7.19751 0.859151 90.3525 +1 1 2 444 1.444 323.15 0 0 0.00896 -0.00668623 -0.00668623 0 0 0 -986.782 5.65908e-08 5.65896e-08 0 0 0 98.567 7.20883 0.848649 90.5095 +1 1 2 445 1.445 323.15 0 0 0.0088 -0.00660796 -0.00660796 0 0 0 -987.557 5.63196e-08 5.63184e-08 0 0 0 98.725 7.22015 0.838212 90.6666 +1 1 2 446 1.446 323.15 0 0 0.00864 -0.00652969 -0.00652969 0 0 0 -988.331 5.60482e-08 5.6047e-08 0 0 0 98.883 7.23147 0.827841 90.8237 +1 1 2 447 1.447 323.15 0 0 0.00848 -0.00645142 -0.00645142 0 0 0 -989.105 5.57771e-08 5.57759e-08 0 0 0 99.0412 7.2428 0.817536 90.9809 +1 1 2 448 1.448 323.15 0 0 0.00832 -0.00637315 -0.00637315 0 0 0 -989.879 5.55059e-08 5.55047e-08 0 0 0 99.1995 7.25414 0.807297 91.1381 +1 1 2 449 1.449 323.15 0 0 0.00816 -0.00629488 -0.00629488 0 0 0 -990.652 5.52346e-08 5.52334e-08 0 0 0 99.358 7.26548 0.797123 91.2954 +1 1 2 450 1.45 323.15 0 0 0.008 -0.00621661 -0.00621661 0 0 0 -991.425 5.49631e-08 5.4962e-08 0 0 0 99.5166 7.27682 0.787016 91.4527 +1 1 2 451 1.451 323.15 0 0 0.00784 -0.00613833 -0.00613833 0 0 0 -992.198 5.46919e-08 5.46906e-08 0 0 0 99.6752 7.28817 0.776974 91.6101 +1 1 2 452 1.452 323.15 0 0 0.00768 -0.00606006 -0.00606006 0 0 0 -992.97 5.44207e-08 5.44195e-08 0 0 0 99.8341 7.29952 0.766999 91.7675 +1 1 2 453 1.453 323.15 0 0 0.00752 -0.00598179 -0.00598179 0 0 0 -993.742 5.41496e-08 5.41484e-08 0 0 0 99.993 7.31088 0.757089 91.925 +1 1 2 454 1.454 323.15 0 0 0.00736 -0.00590351 -0.00590351 0 0 0 -994.514 5.38784e-08 5.38773e-08 0 0 0 100.152 7.32224 0.747245 92.0826 +1 1 2 455 1.455 323.15 0 0 0.0072 -0.00582524 -0.00582524 0 0 0 -995.286 5.36069e-08 5.36059e-08 0 0 0 100.311 7.3336 0.737467 92.2402 +1 1 2 456 1.456 323.15 0 0 0.00704 -0.00574696 -0.00574696 0 0 0 -996.057 5.33356e-08 5.33347e-08 0 0 0 100.471 7.34497 0.727755 92.3978 +1 1 2 457 1.457 323.15 0 0 0.00688 -0.00566869 -0.00566869 0 0 0 -996.828 5.30644e-08 5.30635e-08 0 0 0 100.63 7.35634 0.71811 92.5555 +1 1 2 458 1.458 323.15 0 0 0.00672 -0.00559041 -0.00559041 0 0 0 -997.598 5.27931e-08 5.27923e-08 0 0 0 100.79 7.36772 0.708529 92.7133 +1 1 2 459 1.459 323.15 0 0 0.00656 -0.00551213 -0.00551213 0 0 0 -998.369 5.25218e-08 5.2521e-08 0 0 0 100.949 7.3791 0.699015 92.8711 +1 1 2 460 1.46 323.15 0 0 0.0064 -0.00543385 -0.00543385 0 0 0 -999.139 5.22506e-08 5.22499e-08 0 0 0 101.109 7.39049 0.689567 93.029 +1 1 2 461 1.461 323.15 0 0 0.00624 -0.00535557 -0.00535557 0 0 0 -999.908 5.19795e-08 5.19787e-08 0 0 0 101.269 7.40188 0.680185 93.1869 +1 1 2 462 1.462 323.15 0 0 0.00608 -0.00527729 -0.00527729 0 0 0 -1000.68 5.17083e-08 5.17075e-08 0 0 0 101.429 7.41328 0.670869 93.3448 +1 1 2 463 1.463 323.15 0 0 0.00592 -0.00519901 -0.00519901 0 0 0 -1001.45 5.14371e-08 5.14363e-08 0 0 0 101.589 7.42468 0.661619 93.5029 +1 1 2 464 1.464 323.15 0 0 0.00576 -0.00512073 -0.00512073 0 0 0 -1002.22 5.1166e-08 5.11652e-08 0 0 0 101.749 7.43608 0.652435 93.6609 +1 1 2 465 1.465 323.15 0 0 0.0056 -0.00504245 -0.00504245 0 0 0 -1002.98 5.08946e-08 5.08939e-08 0 0 0 101.91 7.44749 0.643316 93.8191 +1 1 2 466 1.466 323.15 0 0 0.00544 -0.00496417 -0.00496417 0 0 0 -1003.75 5.06233e-08 5.06225e-08 0 0 0 102.07 7.4589 0.634264 93.9772 +1 1 2 467 1.467 323.15 0 0 0.00528 -0.00488588 -0.00488588 0 0 0 -1004.52 5.03522e-08 5.03514e-08 0 0 0 102.231 7.47032 0.625278 94.1355 +1 1 2 468 1.468 323.15 0 0 0.00512 -0.0048076 -0.0048076 0 0 0 -1005.29 5.0081e-08 5.00803e-08 0 0 0 102.392 7.48174 0.616358 94.2937 +1 1 2 469 1.469 323.15 0 0 0.00496 -0.00472932 -0.00472932 0 0 0 -1006.06 4.98097e-08 4.9809e-08 0 0 0 102.553 7.49317 0.607504 94.4521 +1 1 2 470 1.47 323.15 0 0 0.0048 -0.00465103 -0.00465103 0 0 0 -1006.82 4.95384e-08 4.95377e-08 0 0 0 102.714 7.5046 0.598716 94.6105 +1 1 2 471 1.471 323.15 0 0 0.00464 -0.00457275 -0.00457275 0 0 0 -1007.59 4.9267e-08 4.92663e-08 0 0 0 102.875 7.51603 0.589993 94.7689 +1 1 2 472 1.472 323.15 0 0 0.00448 -0.00449446 -0.00449446 0 0 0 -1008.36 4.89958e-08 4.89951e-08 0 0 0 103.036 7.52747 0.581337 94.9274 +1 1 2 473 1.473 323.15 0 0 0.00432 -0.00441617 -0.00441617 0 0 0 -1009.12 4.87245e-08 4.87238e-08 0 0 0 103.198 7.53891 0.572747 95.0859 +1 1 2 474 1.474 323.15 0 0 0.00416 -0.00433788 -0.00433788 0 0 0 -1009.89 4.84533e-08 4.84526e-08 0 0 0 103.359 7.55036 0.564223 95.2445 +1 1 2 475 1.475 323.15 0 0 0.004 -0.0042596 -0.0042596 0 0 0 -1010.65 4.81821e-08 4.81813e-08 0 0 0 103.521 7.56181 0.555766 95.4032 +1 1 2 476 1.476 323.15 0 0 0.00384 -0.00418131 -0.00418131 0 0 0 -1011.42 4.79109e-08 4.79101e-08 0 0 0 103.683 7.57327 0.547374 95.5619 +1 1 2 477 1.477 323.15 0 0 0.00368 -0.00410302 -0.00410302 0 0 0 -1012.18 4.76394e-08 4.76387e-08 0 0 0 103.844 7.58473 0.539048 95.7206 +1 1 2 478 1.478 323.15 0 0 0.00352 -0.00402473 -0.00402473 0 0 0 -1012.95 4.73681e-08 4.73674e-08 0 0 0 104.006 7.5962 0.530788 95.8795 +1 1 2 479 1.479 323.15 0 0 0.00336 -0.00394644 -0.00394644 0 0 0 -1013.71 4.70969e-08 4.70963e-08 0 0 0 104.169 7.60767 0.522595 96.0383 +1 1 2 480 1.48 323.15 0 0 0.0032 -0.00386815 -0.00386815 0 0 0 -1014.48 4.68256e-08 4.6825e-08 0 0 0 104.331 7.61914 0.514467 96.1972 +1 1 2 481 1.481 323.15 0 0 0.00304 -0.00378985 -0.00378985 0 0 0 -1015.24 4.65544e-08 4.65539e-08 0 0 0 104.493 7.63062 0.506406 96.3562 +1 1 2 482 1.482 323.15 0 0 0.00288 -0.00371156 -0.00371156 0 0 0 -1016 4.62832e-08 4.62827e-08 0 0 0 104.656 7.6421 0.49841 96.5152 +1 1 2 483 1.483 323.15 0 0 0.00272 -0.00363327 -0.00363327 0 0 0 -1016.77 4.60121e-08 4.60114e-08 0 0 0 104.818 7.65359 0.490481 96.6743 +1 1 2 484 1.484 323.15 0 0 0.00256 -0.00355497 -0.00355497 0 0 0 -1017.53 4.5741e-08 4.57403e-08 0 0 0 104.981 7.66508 0.482618 96.8334 +1 1 2 485 1.485 323.15 0 0 0.0024 -0.00347668 -0.00347668 0 0 0 -1018.29 4.54697e-08 4.54689e-08 0 0 0 105.144 7.67657 0.474821 96.9925 +1 1 2 486 1.486 323.15 0 0 0.00224 -0.00339838 -0.00339838 0 0 0 -1019.06 4.51985e-08 4.51978e-08 0 0 0 105.307 7.68807 0.46709 97.1518 +1 1 2 487 1.487 323.15 0 0 0.00208 -0.00332009 -0.00332009 0 0 0 -1019.82 4.49274e-08 4.49267e-08 0 0 0 105.47 7.69958 0.459425 97.311 +1 1 2 488 1.488 323.15 0 0 0.00192 -0.00324179 -0.00324179 0 0 0 -1020.58 4.46562e-08 4.46556e-08 0 0 0 105.633 7.71109 0.451827 97.4703 +1 1 2 489 1.489 323.15 0 0 0.00176 -0.00316349 -0.00316349 0 0 0 -1021.34 4.4385e-08 4.43844e-08 0 0 0 105.797 7.7226 0.444294 97.6297 +1 1 2 490 1.49 323.15 0 0 0.0016 -0.0030852 -0.0030852 0 0 0 -1022.1 4.41137e-08 4.4113e-08 0 0 0 105.96 7.73412 0.436828 97.7891 +1 1 2 491 1.491 323.15 0 0 0.00144 -0.0030069 -0.0030069 0 0 0 -1022.86 4.38424e-08 4.38419e-08 0 0 0 106.124 7.74564 0.429428 97.9486 +1 1 2 492 1.492 323.15 0 0 0.00128 -0.0029286 -0.0029286 0 0 0 -1023.62 4.35711e-08 4.35705e-08 0 0 0 106.287 7.75717 0.422094 98.1081 +1 1 2 493 1.493 323.15 0 0 0.00112 -0.0028503 -0.0028503 0 0 0 -1024.38 4.32997e-08 4.32991e-08 0 0 0 106.451 7.7687 0.414826 98.2677 +1 1 2 494 1.494 323.15 0 0 0.00096 -0.002772 -0.002772 0 0 0 -1025.15 4.30285e-08 4.3028e-08 0 0 0 106.615 7.78023 0.407625 98.4274 +1 1 2 495 1.495 323.15 0 0 0.0008 -0.0026937 -0.0026937 0 0 0 -1025.91 4.27571e-08 4.27566e-08 0 0 0 106.779 7.79177 0.400489 98.587 +1 1 2 496 1.496 323.15 0 0 0.00064 -0.00261539 -0.00261539 0 0 0 -1026.66 4.24859e-08 4.24855e-08 0 0 0 106.944 7.80332 0.39342 98.7468 +1 1 2 497 1.497 323.15 0 0 0.00048 -0.00253709 -0.00253709 0 0 0 -1027.42 4.22147e-08 4.22142e-08 0 0 0 107.108 7.81486 0.386417 98.9065 +1 1 2 498 1.498 323.15 0 0 0.00032 -0.00245879 -0.00245879 0 0 0 -1028.18 4.19435e-08 4.1943e-08 0 0 0 107.272 7.82642 0.37948 99.0664 +1 1 2 499 1.499 323.15 0 0 0.00016 -0.00238049 -0.00238049 0 0 0 -1028.94 4.16724e-08 4.16718e-08 0 0 0 107.437 7.83797 0.372609 99.2263 +1 1 2 500 1.5 323.15 0 0 -8.22693e-16 -0.00230218 -0.00230218 0 0 0 -1029.7 4.14011e-08 4.14004e-08 0 0 0 107.602 7.84953 0.365805 99.3862 +1 1 2 501 1.501 323.15 0 0 -0.00016 -0.00222388 -0.00222388 0 0 0 -1030.46 4.11298e-08 4.11291e-08 0 0 0 107.766 7.8611 0.359066 99.5462 +1 1 2 502 1.502 323.15 0 0 -0.00032 -0.00214557 -0.00214557 0 0 0 -1031.22 4.08587e-08 4.08579e-08 0 0 0 107.931 7.87267 0.352394 99.7062 +1 1 2 503 1.503 323.15 0 0 -0.00048 -0.00206727 -0.00206727 0 0 0 -1031.97 4.05874e-08 4.05867e-08 0 0 0 108.096 7.88424 0.345789 99.8663 +1 1 2 504 1.504 323.15 0 0 -0.00064 -0.00198896 -0.00198896 0 0 0 -1032.73 4.03162e-08 4.03155e-08 0 0 0 108.262 7.89582 0.339249 100.026 +1 1 2 505 1.505 323.15 0 0 -0.0008 -0.00191065 -0.00191065 0 0 0 -1033.49 4.00451e-08 4.00444e-08 0 0 0 108.427 7.9074 0.332776 100.187 +1 1 2 506 1.506 323.15 0 0 -0.00096 -0.00183235 -0.00183235 0 0 0 -1034.25 3.97739e-08 3.97733e-08 0 0 0 108.592 7.91899 0.326369 100.347 +1 1 2 507 1.507 323.15 0 0 -0.00112 -0.00175404 -0.00175404 0 0 0 -1035 3.95025e-08 3.9502e-08 0 0 0 108.758 7.93058 0.320028 100.507 +1 1 2 508 1.508 323.15 0 0 -0.00128 -0.00167573 -0.00167573 0 0 0 -1035.76 3.92313e-08 3.92308e-08 0 0 0 108.923 7.94218 0.313753 100.668 +1 1 2 509 1.509 323.15 0 0 -0.00144 -0.00159742 -0.00159742 0 0 0 -1036.52 3.89599e-08 3.89594e-08 0 0 0 109.089 7.95378 0.307545 100.828 +1 1 2 510 1.51 323.15 0 0 -0.0016 -0.00151911 -0.00151911 0 0 0 -1037.27 3.86886e-08 3.86882e-08 0 0 0 109.255 7.96538 0.301403 100.988 +1 1 2 511 1.511 323.15 0 0 -0.00176 -0.0014408 -0.0014408 0 0 0 -1038.03 3.84175e-08 3.84171e-08 0 0 0 109.421 7.97699 0.295327 101.149 +1 1 2 512 1.512 323.15 0 0 -0.00192 -0.00136249 -0.00136249 0 0 0 -1038.78 3.81462e-08 3.81458e-08 0 0 0 109.587 7.98861 0.289317 101.309 +1 1 2 513 1.513 323.15 0 0 -0.00208 -0.00128418 -0.00128418 0 0 0 -1039.54 3.78748e-08 3.78744e-08 0 0 0 109.754 8.00023 0.283374 101.47 +1 1 2 514 1.514 323.15 0 0 -0.00224 -0.00120586 -0.00120586 0 0 0 -1040.29 3.76035e-08 3.7603e-08 0 0 0 109.92 8.01185 0.277497 101.631 +1 1 2 515 1.515 323.15 0 0 -0.0024 -0.00112755 -0.00112755 0 0 0 -1041.05 3.73324e-08 3.7332e-08 0 0 0 110.086 8.02347 0.271687 101.791 +1 1 2 516 1.516 323.15 0 0 -0.00256 -0.00104924 -0.00104924 0 0 0 -1041.8 3.7061e-08 3.70606e-08 0 0 0 110.253 8.0351 0.265942 101.952 +1 1 2 517 1.517 323.15 0 0 -0.00272 -0.000970923 -0.000970923 0 0 0 -1042.56 3.67898e-08 3.67894e-08 0 0 0 110.42 8.04674 0.260264 102.113 +1 1 2 518 1.518 323.15 0 0 -0.00288 -0.000892608 -0.000892608 0 0 0 -1043.31 3.65184e-08 3.6518e-08 0 0 0 110.587 8.05838 0.254653 102.274 +1 1 2 519 1.519 323.15 0 0 -0.00304 -0.000814292 -0.000814292 0 0 0 -1044.06 3.62472e-08 3.62469e-08 0 0 0 110.754 8.07002 0.249107 102.435 +1 1 2 520 1.52 323.15 0 0 -0.0032 -0.000735976 -0.000735976 0 0 0 -1044.82 3.5976e-08 3.59758e-08 0 0 0 110.921 8.08167 0.243628 102.595 +1 1 2 521 1.521 323.15 0 0 -0.00336 -0.00065766 -0.00065766 0 0 0 -1045.57 3.57048e-08 3.57046e-08 0 0 0 111.088 8.09332 0.238215 102.756 +1 1 2 522 1.522 323.15 0 0 -0.00352 -0.000579343 -0.000579343 0 0 0 -1046.32 3.54335e-08 3.54333e-08 0 0 0 111.255 8.10498 0.232869 102.918 +1 1 2 523 1.523 323.15 0 0 -0.00368 -0.000501025 -0.000501025 0 0 0 -1047.07 3.51624e-08 3.51622e-08 0 0 0 111.423 8.11664 0.227589 103.079 +1 1 2 524 1.524 323.15 0 0 -0.00384 -0.000422707 -0.000422707 0 0 0 -1047.83 3.48911e-08 3.48909e-08 0 0 0 111.59 8.12831 0.222375 103.24 +1 1 2 525 1.525 323.15 0 0 -0.004 -0.000344388 -0.000344388 0 0 0 -1048.58 3.46198e-08 3.46195e-08 0 0 0 111.758 8.13998 0.217228 103.401 +1 1 2 526 1.526 323.15 0 0 -0.00416 -0.000266069 -0.000266069 0 0 0 -1049.33 3.43485e-08 3.43482e-08 0 0 0 111.926 8.15165 0.212147 103.562 +1 1 2 527 1.527 323.15 0 0 -0.00432 -0.000187749 -0.000187749 0 0 0 -1050.08 3.40774e-08 3.4077e-08 0 0 0 112.094 8.16333 0.207132 103.723 +1 1 2 528 1.528 323.15 0 0 -0.00448 -0.000109428 -0.000109428 0 0 0 -1050.83 3.38062e-08 3.38058e-08 0 0 0 112.262 8.17502 0.202184 103.885 +1 1 2 529 1.529 323.15 0 0 -0.00464 -3.11069e-05 -3.11069e-05 0 0 0 -1051.58 3.35348e-08 3.35345e-08 0 0 0 112.43 8.1867 0.197302 104.046 +1 1 2 530 1.53 323.15 0 0 -0.0048 4.72148e-05 4.72148e-05 0 0 0 -1052.33 3.32635e-08 3.32632e-08 0 0 0 112.599 8.1984 0.192486 104.208 +1 1 2 531 1.531 323.15 0 0 -0.00496 0.000125537 0.000125537 0 0 0 -1053.08 3.29923e-08 3.29919e-08 0 0 0 112.767 8.21009 0.187737 104.369 +1 1 2 532 1.532 323.15 0 0 -0.00512 0.00020386 0.00020386 0 0 0 -1053.83 3.27213e-08 3.27209e-08 0 0 0 112.936 8.22179 0.183054 104.531 +1 1 2 533 1.533 323.15 0 0 -0.00528 0.000282183 0.000282183 0 0 0 -1054.58 3.24501e-08 3.24498e-08 0 0 0 113.104 8.2335 0.178438 104.692 +1 1 2 534 1.534 323.15 0 0 -0.00544 0.000360507 0.000360507 0 0 0 -1055.33 3.2179e-08 3.21786e-08 0 0 0 113.273 8.24521 0.173888 104.854 +1 1 2 535 1.535 323.15 0 0 -0.0056 0.000438832 0.000438832 0 0 0 -1056.08 3.19077e-08 3.19073e-08 0 0 0 113.442 8.25692 0.169404 105.016 +1 1 2 536 1.536 323.15 0 0 -0.00576 0.000517157 0.000517157 0 0 0 -1056.83 3.16364e-08 3.1636e-08 0 0 0 113.611 8.26864 0.164987 105.177 +1 1 2 537 1.537 323.15 0 0 -0.00592 0.000595483 0.000595483 0 0 0 -1057.58 3.13651e-08 3.13647e-08 0 0 0 113.78 8.28036 0.160636 105.339 +1 1 2 538 1.538 323.15 0 0 -0.00608 0.000673809 0.000673809 0 0 0 -1058.33 3.1094e-08 3.10936e-08 0 0 0 113.949 8.29209 0.156352 105.501 +1 1 2 539 1.539 323.15 0 0 -0.00624 0.000752136 0.000752136 0 0 0 -1059.08 3.08226e-08 3.08223e-08 0 0 0 114.119 8.30382 0.152134 105.663 +1 1 2 540 1.54 323.15 0 0 -0.0064 0.000830463 0.000830463 0 0 0 -1059.83 3.05513e-08 3.05508e-08 0 0 0 114.288 8.31555 0.147982 105.825 +1 1 2 541 1.541 323.15 0 0 -0.00656 0.000908791 0.000908791 0 0 0 -1060.57 3.02801e-08 3.02797e-08 0 0 0 114.458 8.32729 0.143897 105.987 +1 1 2 542 1.542 323.15 0 0 -0.00672 0.00098712 0.00098712 0 0 0 -1061.32 3.00089e-08 3.00085e-08 0 0 0 114.628 8.33904 0.139879 106.149 +1 1 2 543 1.543 323.15 0 0 -0.00688 0.00106545 0.00106545 0 0 0 -1062.07 2.97378e-08 2.97375e-08 0 0 0 114.798 8.35079 0.135926 106.311 +1 1 2 544 1.544 323.15 0 0 -0.00704 0.00114378 0.00114378 0 0 0 -1062.82 2.94665e-08 2.94661e-08 0 0 0 114.967 8.36254 0.132041 106.473 +1 1 2 545 1.545 323.15 0 0 -0.0072 0.00122211 0.00122211 0 0 0 -1063.56 2.91951e-08 2.91947e-08 0 0 0 115.138 8.3743 0.128221 106.635 +1 1 2 546 1.546 323.15 0 0 -0.00736 0.00130044 0.00130044 0 0 0 -1064.31 2.89237e-08 2.89235e-08 0 0 0 115.308 8.38606 0.124469 106.797 +1 1 2 547 1.547 323.15 0 0 -0.00752 0.00137877 0.00137877 0 0 0 -1065.06 2.86525e-08 2.86522e-08 0 0 0 115.478 8.39783 0.120782 106.96 +1 1 2 548 1.548 323.15 0 0 -0.00768 0.0014571 0.0014571 0 0 0 -1065.8 2.83813e-08 2.8381e-08 0 0 0 115.649 8.4096 0.117162 107.122 +1 1 2 549 1.549 323.15 0 0 -0.00784 0.00153543 0.00153543 0 0 0 -1066.55 2.81101e-08 2.81099e-08 0 0 0 115.819 8.42137 0.113609 107.284 +1 1 2 550 1.55 323.15 0 0 -0.008 0.00161377 0.00161377 0 0 0 -1067.29 2.78389e-08 2.78388e-08 0 0 0 115.99 8.43315 0.110122 107.447 +1 1 2 551 1.551 323.15 0 0 -0.00816 0.0016921 0.0016921 0 0 0 -1068.04 2.75676e-08 2.75675e-08 0 0 0 116.161 8.44493 0.106702 107.609 +1 1 2 552 1.552 323.15 0 0 -0.00832 0.00177044 0.00177044 0 0 0 -1068.78 2.72962e-08 2.72961e-08 0 0 0 116.332 8.45672 0.103348 107.772 +1 1 2 553 1.553 323.15 0 0 -0.00848 0.00184877 0.00184877 0 0 0 -1069.53 2.70248e-08 2.70247e-08 0 0 0 116.503 8.46851 0.10006 107.934 +1 1 2 554 1.554 323.15 0 0 -0.00864 0.0019271 0.0019271 0 0 0 -1070.27 2.67537e-08 2.67535e-08 0 0 0 116.674 8.48031 0.0968391 108.097 +1 1 2 555 1.555 323.15 0 0 -0.0088 0.00200544 0.00200544 0 0 0 -1071.02 2.64824e-08 2.64822e-08 0 0 0 116.845 8.49211 0.0936847 108.259 +1 1 2 556 1.556 323.15 0 0 -0.00896 0.00208378 0.00208378 0 0 0 -1071.76 2.62114e-08 2.62112e-08 0 0 0 117.017 8.50392 0.0905967 108.422 +1 1 2 557 1.557 323.15 0 0 -0.00912 0.00216211 0.00216211 0 0 0 -1072.51 2.594e-08 2.59399e-08 0 0 0 117.188 8.51573 0.0875753 108.585 +1 1 2 558 1.558 323.15 0 0 -0.00928 0.00224045 0.00224045 0 0 0 -1073.25 2.56686e-08 2.56687e-08 0 0 0 117.36 8.52754 0.0846204 108.748 +1 1 2 559 1.559 323.15 0 0 -0.00944 0.00231879 0.00231879 0 0 0 -1073.99 2.53974e-08 2.53974e-08 0 0 0 117.532 8.53936 0.081732 108.911 +1 1 2 560 1.56 323.15 0 0 -0.0096 0.00239713 0.00239713 0 0 0 -1074.74 2.51263e-08 2.51263e-08 0 0 0 117.704 8.55118 0.0789101 109.073 +1 1 2 561 1.561 323.15 0 0 -0.00976 0.00247547 0.00247547 0 0 0 -1075.48 2.48553e-08 2.48552e-08 0 0 0 117.876 8.56301 0.0761548 109.236 +1 1 2 562 1.562 323.15 0 0 -0.00992 0.0025538 0.0025538 0 0 0 -1076.22 2.45841e-08 2.45841e-08 0 0 0 118.048 8.57484 0.073466 109.399 +1 1 2 563 1.563 323.15 0 0 -0.01008 0.00263214 0.00263214 0 0 0 -1076.97 2.43128e-08 2.43128e-08 0 0 0 118.22 8.58667 0.0708438 109.562 +1 1 2 564 1.564 323.15 0 0 -0.01024 0.00271049 0.00271049 0 0 0 -1077.71 2.40413e-08 2.40414e-08 0 0 0 118.392 8.59851 0.0682881 109.726 +1 1 2 565 1.565 323.15 0 0 -0.0104 0.00278883 0.00278883 0 0 0 -1078.45 2.37701e-08 2.37702e-08 0 0 0 118.565 8.61036 0.0657989 109.889 +1 1 2 566 1.566 323.15 0 0 -0.01056 0.00286717 0.00286717 0 0 0 -1079.19 2.34987e-08 2.34987e-08 0 0 0 118.737 8.62221 0.0633764 110.052 +1 1 2 567 1.567 323.15 0 0 -0.01072 0.00294551 0.00294551 0 0 0 -1079.93 2.32274e-08 2.32273e-08 0 0 0 118.91 8.63406 0.0610203 110.215 +1 1 2 568 1.568 323.15 0 0 -0.01088 0.00302385 0.00302385 0 0 0 -1080.67 2.29562e-08 2.2956e-08 0 0 0 119.083 8.64592 0.0587309 110.378 +1 1 2 569 1.569 323.15 0 0 -0.01104 0.0031022 0.0031022 0 0 0 -1081.41 2.2685e-08 2.26849e-08 0 0 0 119.256 8.65778 0.056508 110.542 +1 1 2 570 1.57 323.15 0 0 -0.0112 0.00318054 0.00318054 0 0 0 -1082.16 2.24136e-08 2.24134e-08 0 0 0 119.429 8.66965 0.0543517 110.705 +1 1 2 571 1.571 323.15 0 0 -0.01136 0.00325888 0.00325888 0 0 0 -1082.9 2.21422e-08 2.2142e-08 0 0 0 119.602 8.68152 0.052262 110.869 +1 1 2 572 1.572 323.15 0 0 -0.01152 0.00333723 0.00333723 0 0 0 -1083.64 2.18709e-08 2.18707e-08 0 0 0 119.776 8.69339 0.0502389 111.032 +1 1 2 573 1.573 323.15 0 0 -0.01168 0.00341557 0.00341557 0 0 0 -1084.38 2.15999e-08 2.15997e-08 0 0 0 119.949 8.70527 0.0482824 111.196 +1 1 2 574 1.574 323.15 0 0 -0.01184 0.00349392 0.00349392 0 0 0 -1085.12 2.1329e-08 2.13288e-08 0 0 0 120.123 8.71716 0.0463925 111.359 +1 1 2 575 1.575 323.15 0 0 -0.012 0.00357227 0.00357227 0 0 0 -1085.86 2.10578e-08 2.10576e-08 0 0 0 120.296 8.72904 0.0445691 111.523 +1 1 2 576 1.576 323.15 0 0 -0.01216 0.00365061 0.00365061 0 0 0 -1086.6 2.07864e-08 2.07862e-08 0 0 0 120.47 8.74094 0.0428124 111.686 +1 1 2 577 1.577 323.15 0 0 -0.01232 0.00372896 0.00372896 0 0 0 -1087.34 2.05152e-08 2.0515e-08 0 0 0 120.644 8.75283 0.0411223 111.85 +1 1 2 578 1.578 323.15 0 0 -0.01248 0.00380731 0.00380731 0 0 0 -1088.07 2.0244e-08 2.02437e-08 0 0 0 120.818 8.76473 0.0394988 112.014 +1 1 2 579 1.579 323.15 0 0 -0.01264 0.00388566 0.00388566 0 0 0 -1088.81 1.99726e-08 1.99724e-08 0 0 0 120.992 8.77664 0.0379419 112.178 +1 1 2 580 1.58 323.15 0 0 -0.0128 0.003964 0.003964 0 0 0 -1089.55 1.97013e-08 1.97012e-08 0 0 0 121.166 8.78855 0.0364517 112.341 +1 1 2 581 1.581 323.15 0 0 -0.01296 0.00404235 0.00404235 0 0 0 -1090.29 1.943e-08 1.94299e-08 0 0 0 121.341 8.80046 0.0350281 112.505 +1 1 2 582 1.582 323.15 0 0 -0.01312 0.0041207 0.0041207 0 0 0 -1091.03 1.91589e-08 1.91588e-08 0 0 0 121.515 8.81238 0.0336711 112.669 +1 1 2 583 1.583 323.15 0 0 -0.01328 0.00419905 0.00419905 0 0 0 -1091.77 1.88876e-08 1.88875e-08 0 0 0 121.69 8.8243 0.0323808 112.833 +1 1 2 584 1.584 323.15 0 0 -0.01344 0.00427741 0.00427741 0 0 0 -1092.5 1.86164e-08 1.86162e-08 0 0 0 121.865 8.83623 0.0311571 112.997 +1 1 2 585 1.585 323.15 0 0 -0.0136 0.00435576 0.00435576 0 0 0 -1093.24 1.83455e-08 1.83453e-08 0 0 0 122.04 8.84816 0.03 113.161 +1 1 2 586 1.586 323.15 0 0 -0.01376 0.00443411 0.00443411 0 0 0 -1093.98 1.80741e-08 1.80739e-08 0 0 0 122.215 8.8601 0.0289096 113.326 +1 1 2 587 1.587 323.15 0 0 -0.01392 0.00451246 0.00451246 0 0 0 -1094.71 1.78029e-08 1.78027e-08 0 0 0 122.39 8.87204 0.0278859 113.49 +1 1 2 588 1.588 323.15 0 0 -0.01408 0.00459081 0.00459081 0 0 0 -1095.45 1.75316e-08 1.75315e-08 0 0 0 122.565 8.88398 0.0269288 113.654 +1 1 2 589 1.589 323.15 0 0 -0.01424 0.00466917 0.00466917 0 0 0 -1096.19 1.72605e-08 1.72604e-08 0 0 0 122.74 8.89593 0.0260384 113.818 +1 1 2 590 1.59 323.15 0 0 -0.0144 0.00474752 0.00474752 0 0 0 -1096.92 1.69892e-08 1.6989e-08 0 0 0 122.916 8.90789 0.0252147 113.983 +1 1 2 591 1.591 323.15 0 0 -0.01456 0.00482588 0.00482588 0 0 0 -1097.66 1.67178e-08 1.67176e-08 0 0 0 123.091 8.91984 0.0244576 114.147 +1 1 2 592 1.592 323.15 0 0 -0.01472 0.00490423 0.00490423 0 0 0 -1098.4 1.64465e-08 1.64463e-08 0 0 0 123.267 8.93181 0.0237672 114.311 +1 1 2 593 1.593 323.15 0 0 -0.01488 0.00498259 0.00498259 0 0 0 -1099.13 1.61752e-08 1.6175e-08 0 0 0 123.443 8.94377 0.0231436 114.476 +1 1 2 594 1.594 323.15 0 0 -0.01504 0.00506094 0.00506094 0 0 0 -1099.87 1.59039e-08 1.59037e-08 0 0 0 123.619 8.95574 0.0225866 114.64 +1 1 2 595 1.595 323.15 0 0 -0.0152 0.0051393 0.0051393 0 0 0 -1100.6 1.56329e-08 1.56327e-08 0 0 0 123.795 8.96772 0.0220962 114.805 +1 1 2 596 1.596 323.15 0 0 -0.01536 0.00521766 0.00521766 0 0 0 -1101.34 1.53617e-08 1.53614e-08 0 0 0 123.971 8.9797 0.0216726 114.969 +1 1 2 597 1.597 323.15 0 0 -0.01552 0.00529601 0.00529601 0 0 0 -1102.07 1.50903e-08 1.509e-08 0 0 0 124.147 8.99168 0.0213157 115.134 +1 1 2 598 1.598 323.15 0 0 -0.01568 0.00537437 0.00537437 0 0 0 -1102.81 1.48191e-08 1.48188e-08 0 0 0 124.323 9.00367 0.0210255 115.299 +1 1 2 599 1.599 323.15 0 0 -0.01584 0.00545273 0.00545273 0 0 0 -1103.54 1.45478e-08 1.45475e-08 0 0 0 124.5 9.01566 0.020802 115.464 +1 1 2 600 1.6 323.15 0 0 -0.016 0.00553109 0.00553109 0 0 0 -1104.27 1.42768e-08 1.42764e-08 0 0 0 124.677 9.02766 0.0206453 115.628 +1 1 2 601 1.601 323.15 0 0 -0.01616 0.00560945 0.00560945 0 0 0 -1105.01 1.40055e-08 1.40051e-08 0 0 0 124.853 9.03966 0.0205552 115.793 +1 1 2 602 1.602 323.15 0 0 -0.01632 0.00568781 0.00568781 0 0 0 -1105.74 1.37342e-08 1.37337e-08 0 0 0 125.03 9.05167 0.0205319 115.958 +1 1 2 603 1.603 323.15 0 0 -0.01648 0.00576617 0.00576617 0 0 0 -1106.47 1.34629e-08 1.34623e-08 0 0 0 125.207 9.06367 0.0205753 116.123 +1 1 2 604 1.604 323.15 0 0 -0.01664 0.00584453 0.00584453 0 0 0 -1107.21 1.31918e-08 1.31913e-08 0 0 0 125.384 9.07569 0.0206855 116.288 +1 1 2 605 1.605 323.15 0 0 -0.0168 0.00592289 0.00592289 0 0 0 -1107.94 1.29209e-08 1.29204e-08 0 0 0 125.561 9.08771 0.0208623 116.453 +1 1 2 606 1.606 323.15 0 0 -0.01696 0.00600125 0.00600125 0 0 0 -1108.67 1.26496e-08 1.26491e-08 0 0 0 125.739 9.09973 0.021106 116.618 +1 1 2 607 1.607 323.15 0 0 -0.01712 0.00607962 0.00607962 0 0 0 -1109.41 1.23785e-08 1.2378e-08 0 0 0 125.916 9.11176 0.0214163 116.783 +1 1 2 608 1.608 323.15 0 0 -0.01728 0.00615798 0.00615798 0 0 0 -1110.14 1.21071e-08 1.21066e-08 0 0 0 126.094 9.12379 0.0217934 116.948 +1 1 2 609 1.609 323.15 0 0 -0.01744 0.00623634 0.00623634 0 0 0 -1110.87 1.18357e-08 1.18352e-08 0 0 0 126.272 9.13583 0.0222373 117.113 +1 1 2 610 1.61 323.15 0 0 -0.0176 0.00631471 0.00631471 0 0 0 -1111.6 1.15643e-08 1.15638e-08 0 0 0 126.449 9.14787 0.022748 117.279 +1 1 2 611 1.611 323.15 0 0 -0.01776 0.00639307 0.00639307 0 0 0 -1112.33 1.12932e-08 1.12925e-08 0 0 0 126.627 9.15991 0.0233254 117.444 +1 1 2 612 1.612 323.15 0 0 -0.01792 0.00647144 0.00647144 0 0 0 -1113.06 1.1022e-08 1.10213e-08 0 0 0 126.805 9.17196 0.0239695 117.609 +1 1 2 613 1.613 323.15 0 0 -0.01808 0.0065498 0.0065498 0 0 0 -1113.8 1.0751e-08 1.07503e-08 0 0 0 126.983 9.18401 0.0246805 117.775 +1 1 2 614 1.614 323.15 0 0 -0.01824 0.00662817 0.00662817 0 0 0 -1114.53 1.04799e-08 1.04793e-08 0 0 0 127.162 9.19607 0.0254582 117.94 +1 1 2 615 1.615 323.15 0 0 -0.0184 0.00670653 0.00670653 0 0 0 -1115.26 1.02087e-08 1.02081e-08 0 0 0 127.34 9.20813 0.0263027 118.106 +1 1 2 616 1.616 323.15 0 0 -0.01856 0.0067849 0.0067849 0 0 0 -1115.99 9.93737e-09 9.93684e-09 0 0 0 127.519 9.2202 0.027214 118.271 +1 1 2 617 1.617 323.15 0 0 -0.01872 0.00686327 0.00686327 0 0 0 -1116.72 9.66617e-09 9.66568e-09 0 0 0 127.697 9.23227 0.0281921 118.437 +1 1 2 618 1.618 323.15 0 0 -0.01888 0.00694163 0.00694163 0 0 0 -1117.45 9.39522e-09 9.3948e-09 0 0 0 127.876 9.24435 0.0292369 118.602 +1 1 2 619 1.619 323.15 0 0 -0.01904 0.00702 0.00702 0 0 0 -1118.18 9.12421e-09 9.12377e-09 0 0 0 128.055 9.25642 0.0303486 118.768 +1 1 2 620 1.62 323.15 0 0 -0.0192 0.00709837 0.00709837 0 0 0 -1118.91 8.85292e-09 8.85248e-09 0 0 0 128.234 9.26851 0.0315271 118.934 +1 1 2 621 1.621 323.15 0 0 -0.01936 0.00717674 0.00717674 0 0 0 -1119.64 8.58159e-09 8.58127e-09 0 0 0 128.413 9.2806 0.0327724 119.099 +1 1 2 622 1.622 323.15 0 0 -0.01952 0.00725511 0.00725511 0 0 0 -1120.37 8.31024e-09 8.30985e-09 0 0 0 128.592 9.29269 0.0340844 119.265 +1 1 2 623 1.623 323.15 0 0 -0.01968 0.00733348 0.00733348 0 0 0 -1121.09 8.03897e-09 8.03869e-09 0 0 0 128.771 9.30479 0.0354633 119.431 +1 1 2 624 1.624 323.15 0 0 -0.01984 0.00741185 0.00741185 0 0 0 -1121.82 7.76777e-09 7.76753e-09 0 0 0 128.951 9.31689 0.0369091 119.597 +1 1 2 625 1.625 323.15 0 0 -0.02 0.00749022 0.00749022 0 0 0 -1122.55 7.49632e-09 7.49613e-09 0 0 0 129.13 9.32899 0.0384216 119.763 +1 1 2 626 1.626 323.15 0 0 -0.02016 0.00756859 0.00756859 0 0 0 -1123.28 7.225e-09 7.22498e-09 0 0 0 129.31 9.3411 0.040001 119.929 +1 1 2 627 1.627 323.15 0 0 -0.02032 0.00764697 0.00764697 0 0 0 -1124.01 6.95385e-09 6.95373e-09 0 0 0 129.49 9.35322 0.0416472 120.095 +1 1 2 628 1.628 323.15 0 0 -0.02048 0.00772534 0.00772534 0 0 0 -1124.74 6.68252e-09 6.68227e-09 0 0 0 129.67 9.36534 0.0433602 120.261 +1 1 2 629 1.629 323.15 0 0 -0.02064 0.00780371 0.00780371 0 0 0 -1125.46 6.4113e-09 6.41109e-09 0 0 0 129.85 9.37746 0.0451401 120.427 +1 1 2 630 1.63 323.15 0 0 -0.0208 0.00788209 0.00788209 0 0 0 -1126.19 6.14006e-09 6.13985e-09 0 0 0 130.03 9.38959 0.0469869 120.593 +1 1 2 631 1.631 323.15 0 0 -0.02096 0.00796046 0.00796046 0 0 0 -1126.92 5.86907e-09 5.86891e-09 0 0 0 130.21 9.40172 0.0489004 120.759 +1 1 2 632 1.632 323.15 0 0 -0.02112 0.00803883 0.00803883 0 0 0 -1127.65 5.59784e-09 5.5977e-09 0 0 0 130.39 9.41385 0.0508809 120.926 +1 1 2 633 1.633 323.15 0 0 -0.02128 0.00811721 0.00811721 0 0 0 -1128.37 5.32639e-09 5.32627e-09 0 0 0 130.571 9.42599 0.0529281 121.092 +1 1 2 634 1.634 323.15 0 0 -0.02144 0.00819558 0.00819558 0 0 0 -1129.1 5.05499e-09 5.05495e-09 0 0 0 130.751 9.43814 0.0550423 121.258 +1 1 2 635 1.635 323.15 0 0 -0.0216 0.00827396 0.00827396 0 0 0 -1129.83 4.78376e-09 4.78364e-09 0 0 0 130.932 9.45029 0.0572233 121.425 +1 1 2 636 1.636 323.15 0 0 -0.02176 0.00835234 0.00835234 0 0 0 -1130.55 4.51253e-09 4.51246e-09 0 0 0 131.113 9.46244 0.0594712 121.591 +1 1 2 637 1.637 323.15 0 0 -0.02192 0.00843071 0.00843071 0 0 0 -1131.28 4.24144e-09 4.24138e-09 0 0 0 131.294 9.4746 0.0617859 121.758 +1 1 2 638 1.638 323.15 0 0 -0.02208 0.00850909 0.00850909 0 0 0 -1132 3.97006e-09 3.97003e-09 0 0 0 131.475 9.48676 0.0641676 121.924 +1 1 2 639 1.639 323.15 0 0 -0.02224 0.00858747 0.00858747 0 0 0 -1132.73 3.69845e-09 3.69843e-09 0 0 0 131.656 9.49893 0.0666161 122.091 +1 1 2 640 1.64 323.15 0 0 -0.0224 0.00866585 0.00866585 0 0 0 -1133.46 3.42746e-09 3.42744e-09 0 0 0 131.838 9.5111 0.0691315 122.257 +1 1 2 641 1.641 323.15 0 0 -0.02256 0.00874422 0.00874422 0 0 0 -1134.18 3.15614e-09 3.15602e-09 0 0 0 132.019 9.52327 0.0717137 122.424 +1 1 2 642 1.642 323.15 0 0 -0.02272 0.0088226 0.0088226 0 0 0 -1134.91 2.88486e-09 2.8848e-09 0 0 0 132.2 9.53545 0.0743629 122.591 +1 1 2 643 1.643 323.15 0 0 -0.02288 0.00890098 0.00890098 0 0 0 -1135.63 2.61357e-09 2.61363e-09 0 0 0 132.382 9.54764 0.077079 122.757 +1 1 2 644 1.644 323.15 0 0 -0.02304 0.00897936 0.00897936 0 0 0 -1136.36 2.34227e-09 2.34233e-09 0 0 0 132.564 9.55982 0.079862 122.924 +1 1 2 645 1.645 323.15 0 0 -0.0232 0.00905774 0.00905774 0 0 0 -1137.08 2.07109e-09 2.0713e-09 0 0 0 132.746 9.57202 0.0827118 123.091 +1 1 2 646 1.646 323.15 0 0 -0.02336 0.00913612 0.00913612 0 0 0 -1137.8 1.79975e-09 1.79981e-09 0 0 0 132.928 9.58421 0.0856286 123.258 +1 1 2 647 1.647 323.15 0 0 -0.02352 0.0092145 0.0092145 0 0 0 -1138.53 1.52848e-09 1.52846e-09 0 0 0 133.11 9.59641 0.0886123 123.425 +1 1 2 648 1.648 323.15 0 0 -0.02368 0.00929289 0.00929289 0 0 0 -1139.25 1.25711e-09 1.25705e-09 0 0 0 133.292 9.60862 0.0916629 123.592 +1 1 2 649 1.649 323.15 0 0 -0.02384 0.00937127 0.00937127 0 0 0 -1139.98 9.85823e-10 9.85833e-10 0 0 0 133.474 9.62083 0.0947805 123.759 +1 1 2 650 1.65 323.15 0 0 -0.024 0.00944965 0.00944965 0 0 0 -1140.7 7.14596e-10 7.14636e-10 0 0 0 133.657 9.63304 0.0979649 123.926 +1 1 2 651 1.651 323.15 0 0 -0.02416 0.00952803 0.00952803 0 0 0 -1141.42 4.43456e-10 4.43532e-10 0 0 0 133.839 9.64526 0.101216 124.093 +1 1 2 652 1.652 323.15 0 0 -0.02432 0.00960642 0.00960642 0 0 0 -1142.14 1.72407e-10 1.72531e-10 0 0 0 134.022 9.65748 0.104535 124.26 +1 1 2 653 1.653 323.15 0 0 -0.02448 0.0096848 0.0096848 0 0 0 -1142.87 -9.87744e-11 -9.868e-11 0 0 0 134.205 9.66971 0.10792 124.427 +1 1 2 654 1.654 323.15 0 0 -0.02464 0.00976319 0.00976319 0 0 0 -1143.59 -3.70015e-10 -3.69993e-10 0 0 0 134.388 9.68194 0.111372 124.595 +1 1 2 655 1.655 323.15 0 0 -0.0248 0.00984157 0.00984157 0 0 0 -1144.31 -6.41083e-10 -6.41097e-10 0 0 0 134.571 9.69418 0.114891 124.762 +1 1 2 656 1.656 323.15 0 0 -0.02496 0.00991996 0.00991996 0 0 0 -1145.03 -9.12388e-10 -9.12315e-10 0 0 0 134.754 9.70642 0.118477 124.929 +1 1 2 657 1.657 323.15 0 0 -0.02512 0.00999834 0.00999834 0 0 0 -1145.76 -1.18368e-09 -1.1837e-09 0 0 0 134.937 9.71866 0.12213 125.096 +1 1 2 658 1.658 323.15 0 0 -0.02528 0.0100767 0.0100767 0 0 0 -1146.48 -1.45491e-09 -1.45499e-09 0 0 0 135.121 9.73091 0.12585 125.264 +1 1 2 659 1.659 323.15 0 0 -0.02544 0.0101551 0.0101551 0 0 0 -1147.2 -1.72637e-09 -1.72651e-09 0 0 0 135.304 9.74317 0.129637 125.431 +1 1 2 660 1.66 323.15 0 0 -0.0256 0.0102335 0.0102335 0 0 0 -1147.92 -1.99757e-09 -1.99778e-09 0 0 0 135.488 9.75542 0.133491 125.599 +1 1 2 661 1.661 323.15 0 0 -0.02576 0.0103119 0.0103119 0 0 0 -1148.64 -2.26909e-09 -2.26929e-09 0 0 0 135.671 9.76769 0.137412 125.766 +1 1 2 662 1.662 323.15 0 0 -0.02592 0.0103903 0.0103903 0 0 0 -1149.36 -2.54031e-09 -2.54066e-09 0 0 0 135.855 9.77995 0.1414 125.934 +1 1 2 663 1.663 323.15 0 0 -0.02608 0.0104687 0.0104687 0 0 0 -1150.08 -2.81179e-09 -2.81212e-09 0 0 0 136.039 9.79222 0.145455 126.102 +1 1 2 664 1.664 323.15 0 0 -0.02624 0.0105471 0.0105471 0 0 0 -1150.81 -3.0831e-09 -3.08339e-09 0 0 0 136.223 9.8045 0.149576 126.269 +1 1 2 665 1.665 323.15 0 0 -0.0264 0.0106254 0.0106254 0 0 0 -1151.53 -3.35418e-09 -3.35451e-09 0 0 0 136.408 9.81678 0.153765 126.437 +1 1 2 666 1.666 323.15 0 0 -0.02656 0.0107038 0.0107038 0 0 0 -1152.25 -3.62534e-09 -3.6257e-09 0 0 0 136.592 9.82906 0.158021 126.605 +1 1 2 667 1.667 323.15 0 0 -0.02672 0.0107822 0.0107822 0 0 0 -1152.97 -3.89659e-09 -3.89702e-09 0 0 0 136.776 9.84135 0.162344 126.773 +1 1 2 668 1.668 323.15 0 0 -0.02688 0.0108606 0.0108606 0 0 0 -1153.69 -4.16786e-09 -4.16833e-09 0 0 0 136.961 9.85364 0.166734 126.94 +1 1 2 669 1.669 323.15 0 0 -0.02704 0.010939 0.010939 0 0 0 -1154.41 -4.43912e-09 -4.43962e-09 0 0 0 137.145 9.86594 0.17119 127.108 +1 1 2 670 1.67 323.15 0 0 -0.0272 0.0110174 0.0110174 0 0 0 -1155.12 -4.7108e-09 -4.71126e-09 0 0 0 137.33 9.87824 0.175714 127.276 +1 1 2 671 1.671 323.15 0 0 -0.02736 0.0110958 0.0110958 0 0 0 -1155.84 -4.98207e-09 -4.98254e-09 0 0 0 137.515 9.89054 0.180305 127.444 +1 1 2 672 1.672 323.15 0 0 -0.02752 0.0111742 0.0111742 0 0 0 -1156.56 -5.25307e-09 -5.25363e-09 0 0 0 137.7 9.90285 0.184963 127.612 +1 1 2 673 1.673 323.15 0 0 -0.02768 0.0112526 0.0112526 0 0 0 -1157.28 -5.52457e-09 -5.52511e-09 0 0 0 137.885 9.91517 0.189687 127.78 +1 1 2 674 1.674 323.15 0 0 -0.02784 0.011331 0.011331 0 0 0 -1158 -5.79574e-09 -5.79625e-09 0 0 0 138.07 9.92748 0.194479 127.948 +1 1 2 675 1.675 323.15 0 0 -0.028 0.0114094 0.0114094 0 0 0 -1158.72 -6.06684e-09 -6.06734e-09 0 0 0 138.256 9.93981 0.199338 128.117 +1 1 2 676 1.676 323.15 0 0 -0.02816 0.0114878 0.0114878 0 0 0 -1159.44 -6.33823e-09 -6.33869e-09 0 0 0 138.441 9.95213 0.204264 128.285 +1 1 2 677 1.677 323.15 0 0 -0.02832 0.0115661 0.0115661 0 0 0 -1160.16 -6.60929e-09 -6.60967e-09 0 0 0 138.627 9.96447 0.209257 128.453 +1 1 2 678 1.678 323.15 0 0 -0.02848 0.0116445 0.0116445 0 0 0 -1160.87 -6.88053e-09 -6.88093e-09 0 0 0 138.812 9.9768 0.214316 128.621 +1 1 2 679 1.679 323.15 0 0 -0.02864 0.0117229 0.0117229 0 0 0 -1161.59 -7.15167e-09 -7.15207e-09 0 0 0 138.998 9.98914 0.219443 128.79 +1 1 2 680 1.68 323.15 0 0 -0.0288 0.0118013 0.0118013 0 0 0 -1162.31 -7.42283e-09 -7.42321e-09 0 0 0 139.184 10.0015 0.224637 128.958 +1 1 2 681 1.681 323.15 0 0 -0.02896 0.0118797 0.0118797 0 0 0 -1163.03 -7.69438e-09 -7.69481e-09 0 0 0 139.37 10.0138 0.229898 129.126 +1 1 2 682 1.682 323.15 0 0 -0.02912 0.0119581 0.0119581 0 0 0 -1163.74 -7.9656e-09 -7.96598e-09 0 0 0 139.556 10.0262 0.235226 129.295 +1 1 2 683 1.683 323.15 0 0 -0.02928 0.0120365 0.0120365 0 0 0 -1164.46 -8.23693e-09 -8.23729e-09 0 0 0 139.743 10.0385 0.240621 129.463 +1 1 2 684 1.684 323.15 0 0 -0.02944 0.0121149 0.0121149 0 0 0 -1165.18 -8.50828e-09 -8.50859e-09 0 0 0 139.929 10.0509 0.246083 129.632 +1 1 2 685 1.685 323.15 0 0 -0.0296 0.0121933 0.0121933 0 0 0 -1165.89 -8.77963e-09 -8.77994e-09 0 0 0 140.115 10.0633 0.251613 129.801 +1 1 2 686 1.686 323.15 0 0 -0.02976 0.0122717 0.0122717 0 0 0 -1166.61 -9.05096e-09 -9.05116e-09 0 0 0 140.302 10.0756 0.257209 129.969 +1 1 2 687 1.687 323.15 0 0 -0.02992 0.0123501 0.0123501 0 0 0 -1167.33 -9.32212e-09 -9.3223e-09 0 0 0 140.489 10.088 0.262872 130.138 +1 1 2 688 1.688 323.15 0 0 -0.03008 0.0124285 0.0124285 0 0 0 -1168.04 -9.59352e-09 -9.59374e-09 0 0 0 140.676 10.1004 0.268603 130.307 +1 1 2 689 1.689 323.15 0 0 -0.03024 0.0125069 0.0125069 0 0 0 -1168.76 -9.86507e-09 -9.86524e-09 0 0 0 140.863 10.1128 0.2744 130.475 +1 1 2 690 1.69 323.15 0 0 -0.0304 0.0125853 0.0125853 0 0 0 -1169.47 -1.01361e-08 -1.01364e-08 0 0 0 141.05 10.1252 0.280265 130.644 +1 1 2 691 1.691 323.15 0 0 -0.03056 0.0126637 0.0126637 0 0 0 -1170.19 -1.04072e-08 -1.04075e-08 0 0 0 141.237 10.1376 0.286196 130.813 +1 1 2 692 1.692 323.15 0 0 -0.03072 0.0127421 0.0127421 0 0 0 -1170.9 -1.06783e-08 -1.06786e-08 0 0 0 141.424 10.15 0.292195 130.982 +1 1 2 693 1.693 323.15 0 0 -0.03088 0.0128205 0.0128205 0 0 0 -1171.62 -1.09498e-08 -1.095e-08 0 0 0 141.611 10.1624 0.298261 131.151 +1 1 2 694 1.694 323.15 0 0 -0.03104 0.0128989 0.0128989 0 0 0 -1172.33 -1.12211e-08 -1.12214e-08 0 0 0 141.799 10.1748 0.304393 131.32 +1 1 2 695 1.695 323.15 0 0 -0.0312 0.0129773 0.0129773 0 0 0 -1173.05 -1.14923e-08 -1.14926e-08 0 0 0 141.987 10.1872 0.310593 131.489 +1 1 2 696 1.696 323.15 0 0 -0.03136 0.0130557 0.0130557 0 0 0 -1173.76 -1.17635e-08 -1.17639e-08 0 0 0 142.174 10.1996 0.31686 131.658 +1 1 2 697 1.697 323.15 0 0 -0.03152 0.0131341 0.0131341 0 0 0 -1174.48 -1.20349e-08 -1.20354e-08 0 0 0 142.362 10.212 0.323195 131.827 +1 1 2 698 1.698 323.15 0 0 -0.03168 0.0132125 0.0132125 0 0 0 -1175.19 -1.23062e-08 -1.23066e-08 0 0 0 142.55 10.2244 0.329596 131.996 +1 1 2 699 1.699 323.15 0 0 -0.03184 0.0132909 0.0132909 0 0 0 -1175.91 -1.25774e-08 -1.25779e-08 0 0 0 142.738 10.2369 0.336064 132.165 +1 1 2 700 1.7 323.15 0 0 -0.032 0.0133693 0.0133693 0 0 0 -1176.62 -1.28486e-08 -1.28491e-08 0 0 0 142.926 10.2493 0.342599 132.335 +1 1 2 701 1.701 323.15 0 0 -0.03216 0.0134477 0.0134477 0 0 0 -1177.33 -1.31198e-08 -1.31203e-08 0 0 0 143.115 10.2617 0.349202 132.504 +1 1 2 702 1.702 323.15 0 0 -0.03232 0.0135262 0.0135262 0 0 0 -1178.05 -1.33912e-08 -1.33918e-08 0 0 0 143.303 10.2742 0.355872 132.673 +1 1 2 703 1.703 323.15 0 0 -0.03248 0.0136046 0.0136046 0 0 0 -1178.76 -1.36627e-08 -1.36633e-08 0 0 0 143.492 10.2866 0.362608 132.843 +1 1 2 704 1.704 323.15 0 0 -0.03264 0.013683 0.013683 0 0 0 -1179.47 -1.39341e-08 -1.39348e-08 0 0 0 143.68 10.299 0.369412 133.012 +1 1 2 705 1.705 323.15 0 0 -0.0328 0.0137614 0.0137614 0 0 0 -1180.18 -1.42053e-08 -1.42058e-08 0 0 0 143.869 10.3115 0.376283 133.181 +1 1 2 706 1.706 323.15 0 0 -0.03296 0.0138398 0.0138398 0 0 0 -1180.9 -1.44768e-08 -1.44772e-08 0 0 0 144.058 10.324 0.383222 133.351 +1 1 2 707 1.707 323.15 0 0 -0.03312 0.0139182 0.0139182 0 0 0 -1181.61 -1.4748e-08 -1.47485e-08 0 0 0 144.247 10.3364 0.390227 133.52 +1 1 2 708 1.708 323.15 0 0 -0.03328 0.0139966 0.0139966 0 0 0 -1182.32 -1.50193e-08 -1.50198e-08 0 0 0 144.436 10.3489 0.397299 133.69 +1 1 2 709 1.709 323.15 0 0 -0.03344 0.014075 0.014075 0 0 0 -1183.03 -1.52908e-08 -1.52913e-08 0 0 0 144.625 10.3614 0.404439 133.86 +1 1 2 710 1.71 323.15 0 0 -0.0336 0.0141534 0.0141534 0 0 0 -1183.75 -1.55619e-08 -1.55624e-08 0 0 0 144.815 10.3738 0.411646 134.029 +1 1 2 711 1.711 323.15 0 0 -0.03376 0.0142318 0.0142318 0 0 0 -1184.46 -1.5833e-08 -1.58335e-08 0 0 0 145.004 10.3863 0.418919 134.199 +1 1 2 712 1.712 323.15 0 0 -0.03392 0.0143102 0.0143102 0 0 0 -1185.17 -1.61043e-08 -1.61047e-08 0 0 0 145.194 10.3988 0.42626 134.369 +1 1 2 713 1.713 323.15 0 0 -0.03408 0.0143886 0.0143886 0 0 0 -1185.88 -1.63756e-08 -1.63758e-08 0 0 0 145.383 10.4113 0.433669 134.538 +1 1 2 714 1.714 323.15 0 0 -0.03424 0.014467 0.014467 0 0 0 -1186.59 -1.66469e-08 -1.66472e-08 0 0 0 145.573 10.4238 0.441144 134.708 +1 1 2 715 1.715 323.15 0 0 -0.0344 0.0145455 0.0145455 0 0 0 -1187.3 -1.69183e-08 -1.69187e-08 0 0 0 145.763 10.4363 0.448686 134.878 +1 1 2 716 1.716 323.15 0 0 -0.03456 0.0146239 0.0146239 0 0 0 -1188.01 -1.71896e-08 -1.71899e-08 0 0 0 145.953 10.4488 0.456296 135.048 +1 1 2 717 1.717 323.15 0 0 -0.03472 0.0147023 0.0147023 0 0 0 -1188.72 -1.74609e-08 -1.74611e-08 0 0 0 146.143 10.4613 0.463973 135.218 +1 1 2 718 1.718 323.15 0 0 -0.03488 0.0147807 0.0147807 0 0 0 -1189.44 -1.77321e-08 -1.77323e-08 0 0 0 146.334 10.4738 0.471717 135.388 +1 1 2 719 1.719 323.15 0 0 -0.03504 0.0148591 0.0148591 0 0 0 -1190.15 -1.80031e-08 -1.80033e-08 0 0 0 146.524 10.4863 0.479528 135.558 +1 1 2 720 1.72 323.15 0 0 -0.0352 0.0149375 0.0149375 0 0 0 -1190.86 -1.82745e-08 -1.82747e-08 0 0 0 146.714 10.4988 0.487406 135.728 +1 1 2 721 1.721 323.15 0 0 -0.03536 0.0150159 0.0150159 0 0 0 -1191.57 -1.85459e-08 -1.85461e-08 0 0 0 146.905 10.5113 0.495352 135.898 +1 1 2 722 1.722 323.15 0 0 -0.03552 0.0150943 0.0150943 0 0 0 -1192.28 -1.88172e-08 -1.88173e-08 0 0 0 147.096 10.5239 0.503364 136.068 +1 1 2 723 1.723 323.15 0 0 -0.03568 0.0151727 0.0151727 0 0 0 -1192.99 -1.90885e-08 -1.90886e-08 0 0 0 147.287 10.5364 0.511444 136.239 +1 1 2 724 1.724 323.15 0 0 -0.03584 0.0152512 0.0152512 0 0 0 -1193.69 -1.93597e-08 -1.93599e-08 0 0 0 147.477 10.5489 0.519591 136.409 +1 1 2 725 1.725 323.15 0 0 -0.036 0.0153296 0.0153296 0 0 0 -1194.4 -1.96308e-08 -1.9631e-08 0 0 0 147.669 10.5615 0.527805 136.579 +1 1 2 726 1.726 323.15 0 0 -0.03616 0.015408 0.015408 0 0 0 -1195.11 -1.99021e-08 -1.99023e-08 0 0 0 147.86 10.574 0.536087 136.75 +1 1 2 727 1.727 323.15 0 0 -0.03632 0.0154864 0.0154864 0 0 0 -1195.82 -2.01731e-08 -2.01733e-08 0 0 0 148.051 10.5866 0.544436 136.92 +1 1 2 728 1.728 323.15 0 0 -0.03648 0.0155648 0.0155648 0 0 0 -1196.53 -2.0444e-08 -2.04443e-08 0 0 0 148.242 10.5991 0.552851 137.09 +1 1 2 729 1.729 323.15 0 0 -0.03664 0.0156432 0.0156432 0 0 0 -1197.24 -2.07156e-08 -2.07159e-08 0 0 0 148.434 10.6117 0.561334 137.261 +1 1 2 730 1.73 323.15 0 0 -0.0368 0.0157217 0.0157217 0 0 0 -1197.95 -2.09865e-08 -2.09866e-08 0 0 0 148.625 10.6242 0.569885 137.431 +1 1 2 731 1.731 323.15 0 0 -0.03696 0.0158001 0.0158001 0 0 0 -1198.66 -2.12578e-08 -2.1258e-08 0 0 0 148.817 10.6368 0.578502 137.602 +1 1 2 732 1.732 323.15 0 0 -0.03712 0.0158785 0.0158785 0 0 0 -1199.36 -2.15293e-08 -2.15295e-08 0 0 0 149.009 10.6494 0.587187 137.772 +1 1 2 733 1.733 323.15 0 0 -0.03728 0.0159569 0.0159569 0 0 0 -1200.07 -2.18001e-08 -2.18003e-08 0 0 0 149.201 10.6619 0.595939 137.943 +1 1 2 734 1.734 323.15 0 0 -0.03744 0.0160353 0.0160353 0 0 0 -1200.78 -2.20713e-08 -2.20715e-08 0 0 0 149.393 10.6745 0.604758 138.114 +1 1 2 735 1.735 323.15 0 0 -0.0376 0.0161137 0.0161137 0 0 0 -1201.49 -2.23428e-08 -2.2343e-08 0 0 0 149.585 10.6871 0.613644 138.284 +1 1 2 736 1.736 323.15 0 0 -0.03776 0.0161922 0.0161922 0 0 0 -1202.19 -2.26144e-08 -2.26145e-08 0 0 0 149.778 10.6997 0.622598 138.455 +1 1 2 737 1.737 323.15 0 0 -0.03792 0.0162706 0.0162706 0 0 0 -1202.9 -2.28855e-08 -2.28853e-08 0 0 0 149.97 10.7123 0.631618 138.626 +1 1 2 738 1.738 323.15 0 0 -0.03808 0.016349 0.016349 0 0 0 -1203.61 -2.31565e-08 -2.31564e-08 0 0 0 150.162 10.7249 0.640707 138.797 +1 1 2 739 1.739 323.15 0 0 -0.03824 0.0164274 0.0164274 0 0 0 -1204.31 -2.34283e-08 -2.34281e-08 0 0 0 150.355 10.7375 0.649862 138.968 +1 1 2 740 1.74 323.15 0 0 -0.0384 0.0165058 0.0165058 0 0 0 -1205.02 -2.36999e-08 -2.36996e-08 0 0 0 150.548 10.7501 0.659084 139.139 +1 1 2 741 1.741 323.15 0 0 -0.03856 0.0165843 0.0165843 0 0 0 -1205.73 -2.3971e-08 -2.39709e-08 0 0 0 150.741 10.7627 0.668374 139.31 +1 1 2 742 1.742 323.15 0 0 -0.03872 0.0166627 0.0166627 0 0 0 -1206.43 -2.42423e-08 -2.4242e-08 0 0 0 150.934 10.7753 0.677731 139.481 +1 1 2 743 1.743 323.15 0 0 -0.03888 0.0167411 0.0167411 0 0 0 -1207.14 -2.45136e-08 -2.45133e-08 0 0 0 151.127 10.7879 0.687155 139.652 +1 1 2 744 1.744 323.15 0 0 -0.03904 0.0168195 0.0168195 0 0 0 -1207.85 -2.47849e-08 -2.47847e-08 0 0 0 151.32 10.8005 0.696647 139.823 +1 1 2 745 1.745 323.15 0 0 -0.0392 0.0168979 0.0168979 0 0 0 -1208.55 -2.50562e-08 -2.50558e-08 0 0 0 151.513 10.8132 0.706206 139.994 +1 1 2 746 1.746 323.15 0 0 -0.03936 0.0169764 0.0169764 0 0 0 -1209.26 -2.53276e-08 -2.53272e-08 0 0 0 151.707 10.8258 0.715832 140.165 +1 1 2 747 1.747 323.15 0 0 -0.03952 0.0170548 0.0170548 0 0 0 -1209.96 -2.55984e-08 -2.5598e-08 0 0 0 151.9 10.8384 0.725525 140.336 +1 1 2 748 1.748 323.15 0 0 -0.03968 0.0171332 0.0171332 0 0 0 -1210.67 -2.58697e-08 -2.58693e-08 0 0 0 152.094 10.8511 0.735285 140.508 +1 1 2 749 1.749 323.15 0 0 -0.03984 0.0172116 0.0172116 0 0 0 -1211.37 -2.6141e-08 -2.61407e-08 0 0 0 152.288 10.8637 0.745113 140.679 +1 1 2 750 1.75 323.15 0 0 -0.04 0.0172901 0.0172901 0 0 0 -1212.08 -2.64123e-08 -2.64119e-08 0 0 0 152.482 10.8763 0.755008 140.85 +1 1 2 751 1.751 323.15 0 0 -0.04016 0.0173685 0.0173685 0 0 0 -1212.78 -2.66836e-08 -2.66833e-08 0 0 0 152.676 10.889 0.764971 141.022 +1 1 2 752 1.752 323.15 0 0 -0.04032 0.0174469 0.0174469 0 0 0 -1213.49 -2.69554e-08 -2.6955e-08 0 0 0 152.87 10.9017 0.775 141.193 +1 1 2 753 1.753 323.15 0 0 -0.04048 0.0175253 0.0175253 0 0 0 -1214.19 -2.72266e-08 -2.72262e-08 0 0 0 153.064 10.9143 0.785097 141.364 +1 1 2 754 1.754 323.15 0 0 -0.04064 0.0176038 0.0176038 0 0 0 -1214.9 -2.74979e-08 -2.74976e-08 0 0 0 153.258 10.927 0.795261 141.536 +1 1 2 755 1.755 323.15 0 0 -0.0408 0.0176822 0.0176822 0 0 0 -1215.6 -2.77692e-08 -2.77689e-08 0 0 0 153.453 10.9397 0.805493 141.707 +1 1 2 756 1.756 323.15 0 0 -0.04096 0.0177606 0.0177606 0 0 0 -1216.3 -2.80403e-08 -2.80399e-08 0 0 0 153.647 10.9523 0.815792 141.879 +1 1 2 757 1.757 323.15 0 0 -0.04112 0.017839 0.017839 0 0 0 -1217.01 -2.83115e-08 -2.8311e-08 0 0 0 153.842 10.965 0.826158 142.051 +1 1 2 758 1.758 323.15 0 0 -0.04128 0.0179175 0.0179175 0 0 0 -1217.71 -2.85826e-08 -2.85823e-08 0 0 0 154.037 10.9777 0.836591 142.222 +1 1 2 759 1.759 323.15 0 0 -0.04144 0.0179959 0.0179959 0 0 0 -1218.41 -2.88538e-08 -2.88533e-08 0 0 0 154.231 10.9904 0.847092 142.394 +1 1 2 760 1.76 323.15 0 0 -0.0416 0.0180743 0.0180743 0 0 0 -1219.12 -2.91252e-08 -2.91245e-08 0 0 0 154.426 11.0031 0.85766 142.566 +1 1 2 761 1.761 323.15 0 0 -0.04176 0.0181527 0.0181527 0 0 0 -1219.82 -2.93965e-08 -2.93958e-08 0 0 0 154.622 11.0158 0.868295 142.738 +1 1 2 762 1.762 323.15 0 0 -0.04192 0.0182312 0.0182312 0 0 0 -1220.52 -2.9668e-08 -2.96671e-08 0 0 0 154.817 11.0285 0.878998 142.909 +1 1 2 763 1.763 323.15 0 0 -0.04208 0.0183096 0.0183096 0 0 0 -1221.23 -2.99392e-08 -2.99382e-08 0 0 0 155.012 11.0412 0.889768 143.081 +1 1 2 764 1.764 323.15 0 0 -0.04224 0.018388 0.018388 0 0 0 -1221.93 -3.02104e-08 -3.02095e-08 0 0 0 155.208 11.0539 0.900605 143.253 +1 1 2 765 1.765 323.15 0 0 -0.0424 0.0184665 0.0184665 0 0 0 -1222.63 -3.04815e-08 -3.04808e-08 0 0 0 155.403 11.0666 0.911509 143.425 +1 1 2 766 1.766 323.15 0 0 -0.04256 0.0185449 0.0185449 0 0 0 -1223.33 -3.07526e-08 -3.07522e-08 0 0 0 155.599 11.0793 0.922481 143.597 +1 1 2 767 1.767 323.15 0 0 -0.04272 0.0186233 0.0186233 0 0 0 -1224.04 -3.10235e-08 -3.10231e-08 0 0 0 155.795 11.092 0.93352 143.769 +1 1 2 768 1.768 323.15 0 0 -0.04288 0.0187018 0.0187018 0 0 0 -1224.74 -3.12947e-08 -3.12946e-08 0 0 0 155.991 11.1047 0.944627 143.941 +1 1 2 769 1.769 323.15 0 0 -0.04304 0.0187802 0.0187802 0 0 0 -1225.44 -3.1566e-08 -3.15659e-08 0 0 0 156.187 11.1175 0.955801 144.113 +1 1 2 770 1.77 323.15 0 0 -0.0432 0.0188586 0.0188586 0 0 0 -1226.14 -3.18375e-08 -3.18375e-08 0 0 0 156.383 11.1302 0.967042 144.285 +1 1 2 771 1.771 323.15 0 0 -0.04336 0.0189371 0.0189371 0 0 0 -1226.84 -3.21089e-08 -3.21088e-08 0 0 0 156.579 11.1429 0.97835 144.458 +1 1 2 772 1.772 323.15 0 0 -0.04352 0.0190155 0.0190155 0 0 0 -1227.54 -3.23799e-08 -3.23798e-08 0 0 0 156.775 11.1557 0.989726 144.63 +1 1 2 773 1.773 323.15 0 0 -0.04368 0.0190939 0.0190939 0 0 0 -1228.25 -3.26514e-08 -3.26515e-08 0 0 0 156.972 11.1684 1.00117 144.802 +1 1 2 774 1.774 323.15 0 0 -0.04384 0.0191723 0.0191723 0 0 0 -1228.95 -3.29226e-08 -3.29226e-08 0 0 0 157.168 11.1812 1.01268 144.974 +1 1 2 775 1.775 323.15 0 0 -0.044 0.0192508 0.0192508 0 0 0 -1229.65 -3.31939e-08 -3.3194e-08 0 0 0 157.365 11.1939 1.02426 145.147 +1 1 2 776 1.776 323.15 0 0 -0.04416 0.0193292 0.0193292 0 0 0 -1230.35 -3.34651e-08 -3.34653e-08 0 0 0 157.562 11.2067 1.0359 145.319 +1 1 2 777 1.777 323.15 0 0 -0.04432 0.0194076 0.0194076 0 0 0 -1231.05 -3.37366e-08 -3.37367e-08 0 0 0 157.759 11.2195 1.04762 145.492 +1 1 2 778 1.778 323.15 0 0 -0.04448 0.0194861 0.0194861 0 0 0 -1231.75 -3.40078e-08 -3.40079e-08 0 0 0 157.956 11.2322 1.0594 145.664 +1 1 2 779 1.779 323.15 0 0 -0.04464 0.0195645 0.0195645 0 0 0 -1232.45 -3.42791e-08 -3.42793e-08 0 0 0 158.153 11.245 1.07124 145.837 +1 1 2 780 1.78 323.15 0 0 -0.0448 0.019643 0.019643 0 0 0 -1233.15 -3.45502e-08 -3.45505e-08 0 0 0 158.35 11.2578 1.08316 146.009 +1 1 2 781 1.781 323.15 0 0 -0.04496 0.0197214 0.0197214 0 0 0 -1233.85 -3.48213e-08 -3.48218e-08 0 0 0 158.547 11.2706 1.09514 146.182 +1 1 2 782 1.782 323.15 0 0 -0.04512 0.0197998 0.0197998 0 0 0 -1234.55 -3.50921e-08 -3.50925e-08 0 0 0 158.745 11.2833 1.10719 146.354 +1 1 2 783 1.783 323.15 0 0 -0.04528 0.0198783 0.0198783 0 0 0 -1235.25 -3.5363e-08 -3.53634e-08 0 0 0 158.943 11.2961 1.11931 146.527 +1 1 2 784 1.784 323.15 0 0 -0.04544 0.0199567 0.0199567 0 0 0 -1235.95 -3.56345e-08 -3.56348e-08 0 0 0 159.14 11.3089 1.13149 146.7 +1 1 2 785 1.785 323.15 0 0 -0.0456 0.0200351 0.0200351 0 0 0 -1236.65 -3.59056e-08 -3.59059e-08 0 0 0 159.338 11.3217 1.14374 146.873 +1 1 2 786 1.786 323.15 0 0 -0.04576 0.0201136 0.0201136 0 0 0 -1237.34 -3.61765e-08 -3.61769e-08 0 0 0 159.536 11.3345 1.15606 147.045 +1 1 2 787 1.787 323.15 0 0 -0.04592 0.020192 0.020192 0 0 0 -1238.04 -3.64478e-08 -3.64481e-08 0 0 0 159.734 11.3473 1.16845 147.218 +1 1 2 788 1.788 323.15 0 0 -0.04608 0.0202704 0.0202704 0 0 0 -1238.74 -3.67192e-08 -3.67196e-08 0 0 0 159.932 11.3601 1.1809 147.391 +1 1 2 789 1.789 323.15 0 0 -0.04624 0.0203489 0.0203489 0 0 0 -1239.44 -3.69904e-08 -3.69908e-08 0 0 0 160.13 11.373 1.19342 147.564 +1 1 2 790 1.79 323.15 0 0 -0.0464 0.0204273 0.0204273 0 0 0 -1240.14 -3.7262e-08 -3.72625e-08 0 0 0 160.329 11.3858 1.20601 147.737 +1 1 2 791 1.791 323.15 0 0 -0.04656 0.0205058 0.0205058 0 0 0 -1240.84 -3.75331e-08 -3.75335e-08 0 0 0 160.527 11.3986 1.21867 147.91 +1 1 2 792 1.792 323.15 0 0 -0.04672 0.0205842 0.0205842 0 0 0 -1241.54 -3.78042e-08 -3.78046e-08 0 0 0 160.726 11.4114 1.23139 148.083 +1 1 2 793 1.793 323.15 0 0 -0.04688 0.0206626 0.0206626 0 0 0 -1242.23 -3.80752e-08 -3.80756e-08 0 0 0 160.925 11.4243 1.24418 148.256 +1 1 2 794 1.794 323.15 0 0 -0.04704 0.0207411 0.0207411 0 0 0 -1242.93 -3.83466e-08 -3.8347e-08 0 0 0 161.123 11.4371 1.25704 148.429 +1 1 2 795 1.795 323.15 0 0 -0.0472 0.0208195 0.0208195 0 0 0 -1243.63 -3.86176e-08 -3.86181e-08 0 0 0 161.322 11.4499 1.26996 148.602 +1 1 2 796 1.796 323.15 0 0 -0.04736 0.020898 0.020898 0 0 0 -1244.33 -3.88889e-08 -3.88895e-08 0 0 0 161.521 11.4628 1.28296 148.776 +1 1 2 797 1.797 323.15 0 0 -0.04752 0.0209764 0.0209764 0 0 0 -1245.02 -3.91599e-08 -3.91605e-08 0 0 0 161.72 11.4756 1.29602 148.949 +1 1 2 798 1.798 323.15 0 0 -0.04768 0.0210548 0.0210548 0 0 0 -1245.72 -3.9431e-08 -3.94316e-08 0 0 0 161.92 11.4885 1.30914 149.122 +1 1 2 799 1.799 323.15 0 0 -0.04784 0.0211333 0.0211333 0 0 0 -1246.42 -3.97025e-08 -3.97031e-08 0 0 0 162.119 11.5014 1.32234 149.295 +1 1 2 800 1.8 323.15 0 0 -0.048 0.0212117 0.0212117 0 0 0 -1247.11 -3.99737e-08 -3.99742e-08 0 0 0 162.319 11.5142 1.3356 149.469 +1 1 2 801 1.801 323.15 0 0 -0.04816 0.0212902 0.0212902 0 0 0 -1247.81 -4.02446e-08 -4.02452e-08 0 0 0 162.518 11.5271 1.34893 149.642 +1 1 2 802 1.802 323.15 0 0 -0.04832 0.0213686 0.0213686 0 0 0 -1248.51 -4.05155e-08 -4.0516e-08 0 0 0 162.718 11.54 1.36233 149.816 +1 1 2 803 1.803 323.15 0 0 -0.04848 0.0214471 0.0214471 0 0 0 -1249.2 -4.07868e-08 -4.07873e-08 0 0 0 162.918 11.5528 1.37579 149.989 +1 1 2 804 1.804 323.15 0 0 -0.04864 0.0215255 0.0215255 0 0 0 -1249.9 -4.10582e-08 -4.10587e-08 0 0 0 163.118 11.5657 1.38933 150.163 +1 1 2 805 1.805 323.15 0 0 -0.0488 0.0216039 0.0216039 0 0 0 -1250.6 -4.13296e-08 -4.133e-08 0 0 0 163.318 11.5786 1.40292 150.336 +1 1 2 806 1.806 323.15 0 0 -0.04896 0.0216824 0.0216824 0 0 0 -1251.29 -4.16008e-08 -4.16013e-08 0 0 0 163.518 11.5915 1.41659 150.51 +1 1 2 807 1.807 323.15 0 0 -0.04912 0.0217608 0.0217608 0 0 0 -1251.99 -4.18721e-08 -4.18726e-08 0 0 0 163.718 11.6044 1.43033 150.683 +1 1 2 808 1.808 323.15 0 0 -0.04928 0.0218393 0.0218393 0 0 0 -1252.68 -4.21437e-08 -4.21442e-08 0 0 0 163.918 11.6173 1.44413 150.857 +1 1 2 809 1.809 323.15 0 0 -0.04944 0.0219177 0.0219177 0 0 0 -1253.38 -4.24149e-08 -4.24152e-08 0 0 0 164.119 11.6302 1.458 151.031 +1 1 2 810 1.81 323.15 0 0 -0.0496 0.0219962 0.0219962 0 0 0 -1254.07 -4.26863e-08 -4.26867e-08 0 0 0 164.32 11.6431 1.47193 151.204 +1 1 2 811 1.811 323.15 0 0 -0.04976 0.0220746 0.0220746 0 0 0 -1254.77 -4.29575e-08 -4.29578e-08 0 0 0 164.52 11.656 1.48594 151.378 +1 1 2 812 1.812 323.15 0 0 -0.04992 0.0221531 0.0221531 0 0 0 -1255.46 -4.3229e-08 -4.32293e-08 0 0 0 164.721 11.6689 1.50001 151.552 +1 1 2 813 1.813 323.15 0 0 -0.05008 0.0222315 0.0222315 0 0 0 -1256.16 -4.34997e-08 -4.35e-08 0 0 0 164.922 11.6818 1.51415 151.726 +1 1 2 814 1.814 323.15 0 0 -0.05024 0.02231 0.02231 0 0 0 -1256.85 -4.37715e-08 -4.37717e-08 0 0 0 165.123 11.6947 1.52836 151.9 +1 1 2 815 1.815 323.15 0 0 -0.0504 0.0223884 0.0223884 0 0 0 -1257.55 -4.40428e-08 -4.40431e-08 0 0 0 165.324 11.7077 1.54263 152.074 +1 1 2 816 1.816 323.15 0 0 -0.05056 0.0224668 0.0224668 0 0 0 -1258.24 -4.43144e-08 -4.43145e-08 0 0 0 165.525 11.7206 1.55697 152.248 +1 1 2 817 1.817 323.15 0 0 -0.05072 0.0225453 0.0225453 0 0 0 -1258.94 -4.45853e-08 -4.45853e-08 0 0 0 165.727 11.7335 1.57138 152.422 +1 1 2 818 1.818 323.15 0 0 -0.05088 0.0226237 0.0226237 0 0 0 -1259.63 -4.48569e-08 -4.48567e-08 0 0 0 165.928 11.7465 1.58586 152.596 +1 1 2 819 1.819 323.15 0 0 -0.05104 0.0227022 0.0227022 0 0 0 -1260.32 -4.51281e-08 -4.51281e-08 0 0 0 166.13 11.7594 1.6004 152.77 +1 1 2 820 1.82 323.15 0 0 -0.0512 0.0227806 0.0227806 0 0 0 -1261.02 -4.53996e-08 -4.53995e-08 0 0 0 166.332 11.7724 1.61501 152.944 +1 1 2 821 1.821 323.15 0 0 -0.05136 0.0228591 0.0228591 0 0 0 -1261.71 -4.56714e-08 -4.56711e-08 0 0 0 166.533 11.7853 1.62969 153.118 +1 1 2 822 1.822 323.15 0 0 -0.05152 0.0229375 0.0229375 0 0 0 -1262.4 -4.59424e-08 -4.5942e-08 0 0 0 166.735 11.7983 1.64444 153.293 +1 1 2 823 1.823 323.15 0 0 -0.05168 0.023016 0.023016 0 0 0 -1263.1 -4.62133e-08 -4.62129e-08 0 0 0 166.937 11.8113 1.65925 153.467 +1 1 2 824 1.824 323.15 0 0 -0.05184 0.0230944 0.0230944 0 0 0 -1263.79 -4.64844e-08 -4.64841e-08 0 0 0 167.14 11.8242 1.67413 153.641 +1 1 2 825 1.825 323.15 0 0 -0.052 0.0231729 0.0231729 0 0 0 -1264.48 -4.67557e-08 -4.67554e-08 0 0 0 167.342 11.8372 1.68908 153.816 +1 1 2 826 1.826 323.15 0 0 -0.05216 0.0232513 0.0232513 0 0 0 -1265.18 -4.70272e-08 -4.70267e-08 0 0 0 167.544 11.8502 1.7041 153.99 +1 1 2 827 1.827 323.15 0 0 -0.05232 0.0233298 0.0233298 0 0 0 -1265.87 -4.7299e-08 -4.72984e-08 0 0 0 167.747 11.8631 1.71918 154.164 +1 1 2 828 1.828 323.15 0 0 -0.05248 0.0234082 0.0234082 0 0 0 -1266.56 -4.75698e-08 -4.75694e-08 0 0 0 167.949 11.8761 1.73433 154.339 +1 1 2 829 1.829 323.15 0 0 -0.05264 0.0234867 0.0234867 0 0 0 -1267.25 -4.7841e-08 -4.78406e-08 0 0 0 168.152 11.8891 1.74955 154.513 +1 1 2 830 1.83 323.15 0 0 -0.0528 0.0235652 0.0235652 0 0 0 -1267.95 -4.8112e-08 -4.81117e-08 0 0 0 168.355 11.9021 1.76484 154.688 +1 1 2 831 1.831 323.15 0 0 -0.05296 0.0236436 0.0236436 0 0 0 -1268.64 -4.83835e-08 -4.83831e-08 0 0 0 168.558 11.9151 1.78019 154.862 +1 1 2 832 1.832 323.15 0 0 -0.05312 0.0237221 0.0237221 0 0 0 -1269.33 -4.86545e-08 -4.86544e-08 0 0 0 168.761 11.9281 1.79561 155.037 +1 1 2 833 1.833 323.15 0 0 -0.05328 0.0238005 0.0238005 0 0 0 -1270.02 -4.89258e-08 -4.89255e-08 0 0 0 168.964 11.9411 1.8111 155.212 +1 1 2 834 1.834 323.15 0 0 -0.05344 0.023879 0.023879 0 0 0 -1270.71 -4.91974e-08 -4.91972e-08 0 0 0 169.167 11.9541 1.82666 155.386 +1 1 2 835 1.835 323.15 0 0 -0.0536 0.0239574 0.0239574 0 0 0 -1271.41 -4.94686e-08 -4.94685e-08 0 0 0 169.371 11.9671 1.84228 155.561 +1 1 2 836 1.836 323.15 0 0 -0.05376 0.0240359 0.0240359 0 0 0 -1272.1 -4.97402e-08 -4.97401e-08 0 0 0 169.574 11.9801 1.85797 155.736 +1 1 2 837 1.837 323.15 0 0 -0.05392 0.0241143 0.0241143 0 0 0 -1272.79 -5.00116e-08 -5.00116e-08 0 0 0 169.778 11.9932 1.87373 155.911 +1 1 2 838 1.838 323.15 0 0 -0.05408 0.0241928 0.0241928 0 0 0 -1273.48 -5.02829e-08 -5.02829e-08 0 0 0 169.981 12.0062 1.88956 156.086 +1 1 2 839 1.839 323.15 0 0 -0.05424 0.0242712 0.0242712 0 0 0 -1274.17 -5.05544e-08 -5.05544e-08 0 0 0 170.185 12.0192 1.90545 156.26 +1 1 2 840 1.84 323.15 0 0 -0.0544 0.0243497 0.0243497 0 0 0 -1274.86 -5.0826e-08 -5.0826e-08 0 0 0 170.389 12.0323 1.92142 156.435 +1 1 2 841 1.841 323.15 0 0 -0.05456 0.0244281 0.0244281 0 0 0 -1275.55 -5.10974e-08 -5.10974e-08 0 0 0 170.593 12.0453 1.93744 156.61 +1 1 2 842 1.842 323.15 0 0 -0.05472 0.0245066 0.0245066 0 0 0 -1276.24 -5.13684e-08 -5.13682e-08 0 0 0 170.797 12.0583 1.95354 156.785 +1 1 2 843 1.843 323.15 0 0 -0.05488 0.0245851 0.0245851 0 0 0 -1276.93 -5.16396e-08 -5.16394e-08 0 0 0 171.001 12.0714 1.9697 156.96 +1 1 2 844 1.844 323.15 0 0 -0.05504 0.0246635 0.0246635 0 0 0 -1277.62 -5.19111e-08 -5.19109e-08 0 0 0 171.206 12.0844 1.98594 157.135 +1 1 2 845 1.845 323.15 0 0 -0.0552 0.024742 0.024742 0 0 0 -1278.31 -5.21818e-08 -5.21817e-08 0 0 0 171.41 12.0975 2.00224 157.311 +1 1 2 846 1.846 323.15 0 0 -0.05536 0.0248204 0.0248204 0 0 0 -1279 -5.24529e-08 -5.24527e-08 0 0 0 171.615 12.1106 2.0186 157.486 +1 1 2 847 1.847 323.15 0 0 -0.05552 0.0248989 0.0248989 0 0 0 -1279.69 -5.27243e-08 -5.2724e-08 0 0 0 171.82 12.1236 2.03504 157.661 +1 1 2 848 1.848 323.15 0 0 -0.05568 0.0249774 0.0249774 0 0 0 -1280.38 -5.29957e-08 -5.29955e-08 0 0 0 172.024 12.1367 2.05154 157.836 +1 1 2 849 1.849 323.15 0 0 -0.05584 0.0250558 0.0250558 0 0 0 -1281.07 -5.32669e-08 -5.32669e-08 0 0 0 172.229 12.1498 2.06811 158.011 +1 1 2 850 1.85 323.15 0 0 -0.056 0.0251343 0.0251343 0 0 0 -1281.76 -5.35382e-08 -5.35382e-08 0 0 0 172.434 12.1628 2.08474 158.187 +1 1 2 851 1.851 323.15 0 0 -0.05616 0.0252127 0.0252127 0 0 0 -1282.45 -5.38093e-08 -5.38094e-08 0 0 0 172.639 12.1759 2.10145 158.362 +1 1 2 852 1.852 323.15 0 0 -0.05632 0.0252912 0.0252912 0 0 0 -1283.14 -5.40803e-08 -5.40804e-08 0 0 0 172.845 12.189 2.11822 158.537 +1 1 2 853 1.853 323.15 0 0 -0.05648 0.0253696 0.0253696 0 0 0 -1283.83 -5.43513e-08 -5.43514e-08 0 0 0 173.05 12.2021 2.13506 158.713 +1 1 2 854 1.854 323.15 0 0 -0.05664 0.0254481 0.0254481 0 0 0 -1284.52 -5.46223e-08 -5.46225e-08 0 0 0 173.256 12.2152 2.15197 158.888 +1 1 2 855 1.855 323.15 0 0 -0.0568 0.0255266 0.0255266 0 0 0 -1285.2 -5.48932e-08 -5.48935e-08 0 0 0 173.461 12.2283 2.16894 159.064 +1 1 2 856 1.856 323.15 0 0 -0.05696 0.025605 0.025605 0 0 0 -1285.89 -5.51642e-08 -5.51644e-08 0 0 0 173.667 12.2414 2.18598 159.239 +1 1 2 857 1.857 323.15 0 0 -0.05712 0.0256835 0.0256835 0 0 0 -1286.58 -5.54359e-08 -5.54358e-08 0 0 0 173.873 12.2545 2.20309 159.415 +1 1 2 858 1.858 323.15 0 0 -0.05728 0.025762 0.025762 0 0 0 -1287.27 -5.5707e-08 -5.5707e-08 0 0 0 174.078 12.2676 2.22027 159.591 +1 1 2 859 1.859 323.15 0 0 -0.05744 0.0258404 0.0258404 0 0 0 -1287.96 -5.59783e-08 -5.59781e-08 0 0 0 174.285 12.2807 2.23752 159.766 +1 1 2 860 1.86 323.15 0 0 -0.0576 0.0259189 0.0259189 0 0 0 -1288.65 -5.62499e-08 -5.62496e-08 0 0 0 174.491 12.2939 2.25483 159.942 +1 1 2 861 1.861 323.15 0 0 -0.05776 0.0259973 0.0259973 0 0 0 -1289.33 -5.65211e-08 -5.65208e-08 0 0 0 174.697 12.307 2.27221 160.118 +1 1 2 862 1.862 323.15 0 0 -0.05792 0.0260758 0.0260758 0 0 0 -1290.02 -5.67919e-08 -5.67916e-08 0 0 0 174.903 12.3201 2.28966 160.293 +1 1 2 863 1.863 323.15 0 0 -0.05808 0.0261543 0.0261543 0 0 0 -1290.71 -5.70631e-08 -5.70628e-08 0 0 0 175.11 12.3333 2.30717 160.469 +1 1 2 864 1.864 323.15 0 0 -0.05824 0.0262327 0.0262327 0 0 0 -1291.4 -5.7335e-08 -5.73345e-08 0 0 0 175.316 12.3464 2.32475 160.645 +1 1 2 865 1.865 323.15 0 0 -0.0584 0.0263112 0.0263112 0 0 0 -1292.08 -5.76063e-08 -5.7606e-08 0 0 0 175.523 12.3595 2.34241 160.821 +1 1 2 866 1.866 323.15 0 0 -0.05856 0.0263897 0.0263897 0 0 0 -1292.77 -5.78779e-08 -5.78776e-08 0 0 0 175.73 12.3727 2.36012 160.997 +1 1 2 867 1.867 323.15 0 0 -0.05872 0.0264681 0.0264681 0 0 0 -1293.46 -5.81494e-08 -5.81493e-08 0 0 0 175.937 12.3858 2.37791 161.173 +1 1 2 868 1.868 323.15 0 0 -0.05888 0.0265466 0.0265466 0 0 0 -1294.14 -5.84205e-08 -5.84204e-08 0 0 0 176.144 12.399 2.39576 161.349 +1 1 2 869 1.869 323.15 0 0 -0.05904 0.026625 0.026625 0 0 0 -1294.83 -5.86919e-08 -5.86918e-08 0 0 0 176.351 12.4121 2.41368 161.525 +1 1 2 870 1.87 323.15 0 0 -0.0592 0.0267035 0.0267035 0 0 0 -1295.52 -5.8963e-08 -5.89628e-08 0 0 0 176.558 12.4253 2.43167 161.701 +1 1 2 871 1.871 323.15 0 0 -0.05936 0.026782 0.026782 0 0 0 -1296.2 -5.92342e-08 -5.9234e-08 0 0 0 176.765 12.4385 2.44973 161.877 +1 1 2 872 1.872 323.15 0 0 -0.05952 0.0268604 0.0268604 0 0 0 -1296.89 -5.95055e-08 -5.95053e-08 0 0 0 176.973 12.4517 2.46785 162.053 +1 1 2 873 1.873 323.15 0 0 -0.05968 0.0269389 0.0269389 0 0 0 -1297.57 -5.97769e-08 -5.97768e-08 0 0 0 177.18 12.4648 2.48604 162.229 +1 1 2 874 1.874 323.15 0 0 -0.05984 0.0270174 0.0270174 0 0 0 -1298.26 -6.00481e-08 -6.00479e-08 0 0 0 177.388 12.478 2.5043 162.406 +1 1 2 875 1.875 323.15 0 0 -0.06 0.0270958 0.0270958 0 0 0 -1298.95 -6.03194e-08 -6.03193e-08 0 0 0 177.596 12.4912 2.52263 162.582 +1 1 2 876 1.876 323.15 0 0 -0.06016 0.0271743 0.0271743 0 0 0 -1299.63 -6.0591e-08 -6.05908e-08 0 0 0 177.804 12.5044 2.54102 162.758 +1 1 2 877 1.877 323.15 0 0 -0.06032 0.0272528 0.0272528 0 0 0 -1300.32 -6.08621e-08 -6.08619e-08 0 0 0 178.012 12.5176 2.55948 162.935 +1 1 2 878 1.878 323.15 0 0 -0.06048 0.0273312 0.0273312 0 0 0 -1301 -6.11336e-08 -6.11335e-08 0 0 0 178.22 12.5308 2.57801 163.111 +1 1 2 879 1.879 323.15 0 0 -0.06064 0.0274097 0.0274097 0 0 0 -1301.69 -6.14056e-08 -6.14054e-08 0 0 0 178.428 12.544 2.59661 163.287 +1 1 2 880 1.88 323.15 0 0 -0.0608 0.0274882 0.0274882 0 0 0 -1302.37 -6.16764e-08 -6.16762e-08 0 0 0 178.636 12.5572 2.61527 163.464 +1 1 2 881 1.881 323.15 0 0 -0.06096 0.0275667 0.0275667 0 0 0 -1303.06 -6.19481e-08 -6.19478e-08 0 0 0 178.845 12.5704 2.63401 163.64 +1 1 2 882 1.882 323.15 0 0 -0.06112 0.0276451 0.0276451 0 0 0 -1303.74 -6.22198e-08 -6.22195e-08 0 0 0 179.053 12.5836 2.65281 163.817 +1 1 2 883 1.883 323.15 0 0 -0.06128 0.0277236 0.0277236 0 0 0 -1304.43 -6.24915e-08 -6.24912e-08 0 0 0 179.262 12.5968 2.67167 163.993 +1 1 2 884 1.884 323.15 0 0 -0.06144 0.0278021 0.0278021 0 0 0 -1305.11 -6.27628e-08 -6.27624e-08 0 0 0 179.471 12.6101 2.69061 164.17 +1 1 2 885 1.885 323.15 0 0 -0.0616 0.0278805 0.0278805 0 0 0 -1305.8 -6.30344e-08 -6.3034e-08 0 0 0 179.68 12.6233 2.70961 164.347 +1 1 2 886 1.886 323.15 0 0 -0.06176 0.027959 0.027959 0 0 0 -1306.48 -6.33057e-08 -6.33052e-08 0 0 0 179.889 12.6365 2.72868 164.523 +1 1 2 887 1.887 323.15 0 0 -0.06192 0.0280375 0.0280375 0 0 0 -1307.16 -6.35768e-08 -6.35763e-08 0 0 0 180.098 12.6498 2.74782 164.7 +1 1 2 888 1.888 323.15 0 0 -0.06208 0.0281159 0.0281159 0 0 0 -1307.85 -6.38478e-08 -6.38474e-08 0 0 0 180.307 12.663 2.76703 164.877 +1 1 2 889 1.889 323.15 0 0 -0.06224 0.0281944 0.0281944 0 0 0 -1308.53 -6.4119e-08 -6.41187e-08 0 0 0 180.516 12.6762 2.7863 165.054 +1 1 2 890 1.89 323.15 0 0 -0.0624 0.0282729 0.0282729 0 0 0 -1309.22 -6.43903e-08 -6.43899e-08 0 0 0 180.726 12.6895 2.80564 165.23 +1 1 2 891 1.891 323.15 0 0 -0.06256 0.0283514 0.0283514 0 0 0 -1309.9 -6.46618e-08 -6.46614e-08 0 0 0 180.935 12.7027 2.82505 165.407 +1 1 2 892 1.892 323.15 0 0 -0.06272 0.0284298 0.0284298 0 0 0 -1310.58 -6.49329e-08 -6.49327e-08 0 0 0 181.145 12.716 2.84452 165.584 +1 1 2 893 1.893 323.15 0 0 -0.06288 0.0285083 0.0285083 0 0 0 -1311.27 -6.52039e-08 -6.52037e-08 0 0 0 181.354 12.7293 2.86407 165.761 +1 1 2 894 1.894 323.15 0 0 -0.06304 0.0285868 0.0285868 0 0 0 -1311.95 -6.54752e-08 -6.5475e-08 0 0 0 181.564 12.7425 2.88368 165.938 +1 1 2 895 1.895 323.15 0 0 -0.0632 0.0286652 0.0286652 0 0 0 -1312.63 -6.57463e-08 -6.5746e-08 0 0 0 181.774 12.7558 2.90336 166.115 +1 1 2 896 1.896 323.15 0 0 -0.06336 0.0287437 0.0287437 0 0 0 -1313.31 -6.60171e-08 -6.60169e-08 0 0 0 181.984 12.7691 2.92311 166.292 +1 1 2 897 1.897 323.15 0 0 -0.06352 0.0288222 0.0288222 0 0 0 -1314 -6.62884e-08 -6.62884e-08 0 0 0 182.195 12.7824 2.94292 166.469 +1 1 2 898 1.898 323.15 0 0 -0.06368 0.0289007 0.0289007 0 0 0 -1314.68 -6.656e-08 -6.65599e-08 0 0 0 182.405 12.7956 2.9628 166.646 +1 1 2 899 1.899 323.15 0 0 -0.06384 0.0289791 0.0289791 0 0 0 -1315.36 -6.68314e-08 -6.68314e-08 0 0 0 182.615 12.8089 2.98275 166.824 +1 1 2 900 1.9 323.15 0 0 -0.064 0.0290576 0.0290576 0 0 0 -1316.04 -6.71026e-08 -6.71026e-08 0 0 0 182.826 12.8222 3.00277 167.001 +1 1 2 901 1.901 323.15 0 0 -0.06416 0.0291361 0.0291361 0 0 0 -1316.73 -6.73742e-08 -6.73741e-08 0 0 0 183.036 12.8355 3.02286 167.178 +1 1 2 902 1.902 323.15 0 0 -0.06432 0.0292146 0.0292146 0 0 0 -1317.41 -6.76454e-08 -6.76452e-08 0 0 0 183.247 12.8488 3.04301 167.355 +1 1 2 903 1.903 323.15 0 0 -0.06448 0.029293 0.029293 0 0 0 -1318.09 -6.7917e-08 -6.79169e-08 0 0 0 183.458 12.8621 3.06323 167.533 +1 1 2 904 1.904 323.15 0 0 -0.06464 0.0293715 0.0293715 0 0 0 -1318.77 -6.81881e-08 -6.81879e-08 0 0 0 183.669 12.8754 3.08352 167.71 +1 1 2 905 1.905 323.15 0 0 -0.0648 0.02945 0.02945 0 0 0 -1319.45 -6.84594e-08 -6.84592e-08 0 0 0 183.88 12.8887 3.10387 167.887 +1 1 2 906 1.906 323.15 0 0 -0.06496 0.0295285 0.0295285 0 0 0 -1320.14 -6.87307e-08 -6.87304e-08 0 0 0 184.091 12.9021 3.1243 168.065 +1 1 2 907 1.907 323.15 0 0 -0.06512 0.0296069 0.0296069 0 0 0 -1320.82 -6.9002e-08 -6.90016e-08 0 0 0 184.302 12.9154 3.14479 168.242 +1 1 2 908 1.908 323.15 0 0 -0.06528 0.0296854 0.0296854 0 0 0 -1321.5 -6.92731e-08 -6.92728e-08 0 0 0 184.514 12.9287 3.16535 168.42 +1 1 2 909 1.909 323.15 0 0 -0.06544 0.0297639 0.0297639 0 0 0 -1322.18 -6.95445e-08 -6.95442e-08 0 0 0 184.725 12.942 3.18597 168.597 +1 1 2 910 1.91 323.15 0 0 -0.0656 0.0298424 0.0298424 0 0 0 -1322.86 -6.98159e-08 -6.98156e-08 0 0 0 184.937 12.9554 3.20667 168.775 +1 1 2 911 1.911 323.15 0 0 -0.06576 0.0299209 0.0299209 0 0 0 -1323.54 -7.00871e-08 -7.00868e-08 0 0 0 185.149 12.9687 3.22743 168.952 +1 1 2 912 1.912 323.15 0 0 -0.06592 0.0299993 0.0299993 0 0 0 -1324.22 -7.03581e-08 -7.03578e-08 0 0 0 185.36 12.9821 3.24826 169.13 +1 1 2 913 1.913 323.15 0 0 -0.06608 0.0300778 0.0300778 0 0 0 -1324.9 -7.06297e-08 -7.06294e-08 0 0 0 185.572 12.9954 3.26916 169.308 +1 1 2 914 1.914 323.15 0 0 -0.06624 0.0301563 0.0301563 0 0 0 -1325.58 -7.09012e-08 -7.09009e-08 0 0 0 185.784 13.0088 3.29012 169.486 +1 1 2 915 1.915 323.15 0 0 -0.0664 0.0302348 0.0302348 0 0 0 -1326.26 -7.1173e-08 -7.11726e-08 0 0 0 185.997 13.0221 3.31116 169.663 +1 1 2 916 1.916 323.15 0 0 -0.06656 0.0303132 0.0303132 0 0 0 -1326.94 -7.14446e-08 -7.14444e-08 0 0 0 186.209 13.0355 3.33226 169.841 +1 1 2 917 1.917 323.15 0 0 -0.06672 0.0303917 0.0303917 0 0 0 -1327.62 -7.17157e-08 -7.17155e-08 0 0 0 186.421 13.0488 3.35343 170.019 +1 1 2 918 1.918 323.15 0 0 -0.06688 0.0304702 0.0304702 0 0 0 -1328.3 -7.19869e-08 -7.19868e-08 0 0 0 186.634 13.0622 3.37466 170.197 +1 1 2 919 1.919 323.15 0 0 -0.06704 0.0305487 0.0305487 0 0 0 -1328.98 -7.22573e-08 -7.22577e-08 0 0 0 186.846 13.0756 3.39596 170.375 +1 1 2 920 1.92 323.15 0 0 -0.0672 0.0306272 0.0306272 0 0 0 -1329.66 -7.2529e-08 -7.25293e-08 0 0 0 187.059 13.089 3.41734 170.553 +1 1 2 921 1.921 323.15 0 0 -0.06736 0.0307056 0.0307056 0 0 0 -1330.34 -7.28002e-08 -7.28005e-08 0 0 0 187.272 13.1024 3.43878 170.731 +1 1 2 922 1.922 323.15 0 0 -0.06752 0.0307841 0.0307841 0 0 0 -1331.02 -7.30716e-08 -7.30719e-08 0 0 0 187.485 13.1157 3.46028 170.909 +1 1 2 923 1.923 323.15 0 0 -0.06768 0.0308626 0.0308626 0 0 0 -1331.7 -7.3343e-08 -7.33434e-08 0 0 0 187.698 13.1291 3.48186 171.087 +1 1 2 924 1.924 323.15 0 0 -0.06784 0.0309411 0.0309411 0 0 0 -1332.38 -7.36141e-08 -7.36145e-08 0 0 0 187.911 13.1425 3.5035 171.265 +1 1 2 925 1.925 323.15 0 0 -0.068 0.0310196 0.0310196 0 0 0 -1333.06 -7.38855e-08 -7.3886e-08 0 0 0 188.124 13.1559 3.52521 171.443 +1 1 2 926 1.926 323.15 0 0 -0.06816 0.0310981 0.0310981 0 0 0 -1333.74 -7.41569e-08 -7.41574e-08 0 0 0 188.337 13.1693 3.54699 171.621 +1 1 2 927 1.927 323.15 0 0 -0.06832 0.0311765 0.0311765 0 0 0 -1334.42 -7.44283e-08 -7.44288e-08 0 0 0 188.551 13.1827 3.56883 171.799 +1 1 2 928 1.928 323.15 0 0 -0.06848 0.031255 0.031255 0 0 0 -1335.1 -7.46996e-08 -7.47003e-08 0 0 0 188.764 13.1961 3.59075 171.977 +1 1 2 929 1.929 323.15 0 0 -0.06864 0.0313335 0.0313335 0 0 0 -1335.77 -7.49707e-08 -7.49714e-08 0 0 0 188.978 13.2096 3.61273 172.156 +1 1 2 930 1.93 323.15 0 0 -0.0688 0.031412 0.031412 0 0 0 -1336.45 -7.52413e-08 -7.5242e-08 0 0 0 189.192 13.223 3.63478 172.334 +1 1 2 931 1.931 323.15 0 0 -0.06896 0.0314905 0.0314905 0 0 0 -1337.13 -7.55123e-08 -7.5513e-08 0 0 0 189.406 13.2364 3.65689 172.512 +1 1 2 932 1.932 323.15 0 0 -0.06912 0.031569 0.031569 0 0 0 -1337.81 -7.57833e-08 -7.57841e-08 0 0 0 189.62 13.2498 3.67908 172.691 +1 1 2 933 1.933 323.15 0 0 -0.06928 0.0316474 0.0316474 0 0 0 -1338.49 -7.60552e-08 -7.60559e-08 0 0 0 189.834 13.2633 3.70133 172.869 +1 1 2 934 1.934 323.15 0 0 -0.06944 0.0317259 0.0317259 0 0 0 -1339.17 -7.63253e-08 -7.63261e-08 0 0 0 190.048 13.2767 3.72365 173.048 +1 1 2 935 1.935 323.15 0 0 -0.0696 0.0318044 0.0318044 0 0 0 -1339.84 -7.65962e-08 -7.65969e-08 0 0 0 190.262 13.2902 3.74604 173.226 +1 1 2 936 1.936 323.15 0 0 -0.06976 0.0318829 0.0318829 0 0 0 -1340.52 -7.68681e-08 -7.68688e-08 0 0 0 190.477 13.3036 3.76849 173.405 +1 1 2 937 1.937 323.15 0 0 -0.06992 0.0319614 0.0319614 0 0 0 -1341.2 -7.71391e-08 -7.71402e-08 0 0 0 190.691 13.317 3.79101 173.583 +1 1 2 938 1.938 323.15 0 0 -0.07008 0.0320399 0.0320399 0 0 0 -1341.88 -7.74103e-08 -7.74114e-08 0 0 0 190.906 13.3305 3.81361 173.762 +1 1 2 939 1.939 323.15 0 0 -0.07024 0.0321183 0.0321183 0 0 0 -1342.55 -7.76826e-08 -7.76835e-08 0 0 0 191.121 13.344 3.83626 173.94 +1 1 2 940 1.94 323.15 0 0 -0.0704 0.0321968 0.0321968 0 0 0 -1343.23 -7.79539e-08 -7.79549e-08 0 0 0 191.336 13.3574 3.85899 174.119 +1 1 2 941 1.941 323.15 0 0 -0.07056 0.0322753 0.0322753 0 0 0 -1343.91 -7.82253e-08 -7.82264e-08 0 0 0 191.551 13.3709 3.88178 174.298 +1 1 2 942 1.942 323.15 0 0 -0.07072 0.0323538 0.0323538 0 0 0 -1344.58 -7.84971e-08 -7.84981e-08 0 0 0 191.766 13.3844 3.90465 174.477 +1 1 2 943 1.943 323.15 0 0 -0.07088 0.0324323 0.0324323 0 0 0 -1345.26 -7.87688e-08 -7.87699e-08 0 0 0 191.981 13.3978 3.92758 174.655 +1 1 2 944 1.944 323.15 0 0 -0.07104 0.0325108 0.0325108 0 0 0 -1345.94 -7.90401e-08 -7.90411e-08 0 0 0 192.196 13.4113 3.95057 174.834 +1 1 2 945 1.945 323.15 0 0 -0.0712 0.0325893 0.0325893 0 0 0 -1346.61 -7.93124e-08 -7.93133e-08 0 0 0 192.411 13.4248 3.97364 175.013 +1 1 2 946 1.946 323.15 0 0 -0.07136 0.0326678 0.0326678 0 0 0 -1347.29 -7.95836e-08 -7.95845e-08 0 0 0 192.627 13.4383 3.99677 175.192 +1 1 2 947 1.947 323.15 0 0 -0.07152 0.0327462 0.0327462 0 0 0 -1347.97 -7.98553e-08 -7.98561e-08 0 0 0 192.843 13.4518 4.01997 175.371 +1 1 2 948 1.948 323.15 0 0 -0.07168 0.0328247 0.0328247 0 0 0 -1348.64 -8.01262e-08 -8.0127e-08 0 0 0 193.058 13.4653 4.04324 175.55 +1 1 2 949 1.949 323.15 0 0 -0.07184 0.0329032 0.0329032 0 0 0 -1349.32 -8.03966e-08 -8.03975e-08 0 0 0 193.274 13.4788 4.06658 175.729 +1 1 2 950 1.95 323.15 0 0 -0.072 0.0329817 0.0329817 0 0 0 -1349.99 -8.06675e-08 -8.06687e-08 0 0 0 193.49 13.4923 4.08998 175.908 +1 1 2 951 1.951 323.15 0 0 -0.07216 0.0330602 0.0330602 0 0 0 -1350.67 -8.09383e-08 -8.09395e-08 0 0 0 193.706 13.5058 4.11345 176.087 +1 1 2 952 1.952 323.15 0 0 -0.07232 0.0331387 0.0331387 0 0 0 -1351.35 -8.12097e-08 -8.12109e-08 0 0 0 193.922 13.5193 4.13699 176.266 +1 1 2 953 1.953 323.15 0 0 -0.07248 0.0332172 0.0332172 0 0 0 -1352.02 -8.14814e-08 -8.14826e-08 0 0 0 194.139 13.5328 4.1606 176.445 +1 1 2 954 1.954 323.15 0 0 -0.07264 0.0332957 0.0332957 0 0 0 -1352.7 -8.17523e-08 -8.17535e-08 0 0 0 194.355 13.5464 4.18427 176.624 +1 1 2 955 1.955 323.15 0 0 -0.0728 0.0333742 0.0333742 0 0 0 -1353.37 -8.20242e-08 -8.20254e-08 0 0 0 194.571 13.5599 4.20802 176.804 +1 1 2 956 1.956 323.15 0 0 -0.07296 0.0334527 0.0334527 0 0 0 -1354.05 -8.22947e-08 -8.22959e-08 0 0 0 194.788 13.5734 4.23183 176.983 +1 1 2 957 1.957 323.15 0 0 -0.07312 0.0335311 0.0335311 0 0 0 -1354.72 -8.25659e-08 -8.25674e-08 0 0 0 195.005 13.587 4.25571 177.162 +1 1 2 958 1.958 323.15 0 0 -0.07328 0.0336096 0.0336096 0 0 0 -1355.4 -8.28373e-08 -8.28388e-08 0 0 0 195.222 13.6005 4.27965 177.341 +1 1 2 959 1.959 323.15 0 0 -0.07344 0.0336881 0.0336881 0 0 0 -1356.07 -8.31085e-08 -8.31101e-08 0 0 0 195.439 13.614 4.30367 177.521 +1 1 2 960 1.96 323.15 0 0 -0.0736 0.0337666 0.0337666 0 0 0 -1356.75 -8.33793e-08 -8.33812e-08 0 0 0 195.656 13.6276 4.32775 177.7 +1 1 2 961 1.961 323.15 0 0 -0.07376 0.0338451 0.0338451 0 0 0 -1357.42 -8.36503e-08 -8.36523e-08 0 0 0 195.873 13.6411 4.3519 177.88 +1 1 2 962 1.962 323.15 0 0 -0.07392 0.0339236 0.0339236 0 0 0 -1358.1 -8.39218e-08 -8.39237e-08 0 0 0 196.09 13.6547 4.37612 178.059 +1 1 2 963 1.963 323.15 0 0 -0.07408 0.0340021 0.0340021 0 0 0 -1358.77 -8.41926e-08 -8.41948e-08 0 0 0 196.307 13.6683 4.4004 178.239 +1 1 2 964 1.964 323.15 0 0 -0.07424 0.0340806 0.0340806 0 0 0 -1359.44 -8.44641e-08 -8.44663e-08 0 0 0 196.525 13.6818 4.42475 178.418 +1 1 2 965 1.965 323.15 0 0 -0.0744 0.0341591 0.0341591 0 0 0 -1360.12 -8.47358e-08 -8.4738e-08 0 0 0 196.742 13.6954 4.44917 178.598 +1 1 2 966 1.966 323.15 0 0 -0.07456 0.0342376 0.0342376 0 0 0 -1360.79 -8.50072e-08 -8.50094e-08 0 0 0 196.96 13.709 4.47366 178.777 +1 1 2 967 1.967 323.15 0 0 -0.07472 0.0343161 0.0343161 0 0 0 -1361.47 -8.52789e-08 -8.52811e-08 0 0 0 197.178 13.7226 4.49822 178.957 +1 1 2 968 1.968 323.15 0 0 -0.07488 0.0343946 0.0343946 0 0 0 -1362.14 -8.55495e-08 -8.55518e-08 0 0 0 197.396 13.7361 4.52284 179.137 +1 1 2 969 1.969 323.15 0 0 -0.07504 0.0344731 0.0344731 0 0 0 -1362.81 -8.58218e-08 -8.5824e-08 0 0 0 197.614 13.7497 4.54754 179.316 +1 1 2 970 1.97 323.15 0 0 -0.0752 0.0345515 0.0345515 0 0 0 -1363.49 -8.60933e-08 -8.60953e-08 0 0 0 197.832 13.7633 4.5723 179.496 +1 1 2 971 1.971 323.15 0 0 -0.07536 0.03463 0.03463 0 0 0 -1364.16 -8.63643e-08 -8.63664e-08 0 0 0 198.05 13.7769 4.59712 179.676 +1 1 2 972 1.972 323.15 0 0 -0.07552 0.0347085 0.0347085 0 0 0 -1364.83 -8.66354e-08 -8.66379e-08 0 0 0 198.268 13.7905 4.62202 179.856 +1 1 2 973 1.973 323.15 0 0 -0.07568 0.034787 0.034787 0 0 0 -1365.51 -8.69062e-08 -8.69087e-08 0 0 0 198.487 13.8041 4.64698 180.036 +1 1 2 974 1.974 323.15 0 0 -0.07584 0.0348655 0.0348655 0 0 0 -1366.18 -8.71779e-08 -8.718e-08 0 0 0 198.705 13.8177 4.67202 180.215 +1 1 2 975 1.975 323.15 0 0 -0.076 0.034944 0.034944 0 0 0 -1366.85 -8.74498e-08 -8.74519e-08 0 0 0 198.924 13.8313 4.69711 180.395 +1 1 2 976 1.976 323.15 0 0 -0.07616 0.0350225 0.0350225 0 0 0 -1367.52 -8.77207e-08 -8.77228e-08 0 0 0 199.143 13.845 4.72228 180.575 +1 1 2 977 1.977 323.15 0 0 -0.07632 0.035101 0.035101 0 0 0 -1368.2 -8.79919e-08 -8.7994e-08 0 0 0 199.361 13.8586 4.74752 180.755 +1 1 2 978 1.978 323.15 0 0 -0.07648 0.0351795 0.0351795 0 0 0 -1368.87 -8.82633e-08 -8.82654e-08 0 0 0 199.58 13.8722 4.77282 180.935 +1 1 2 979 1.979 323.15 0 0 -0.07664 0.035258 0.035258 0 0 0 -1369.54 -8.85346e-08 -8.85367e-08 0 0 0 199.799 13.8858 4.79819 181.115 +1 1 2 980 1.98 323.15 0 0 -0.0768 0.0353365 0.0353365 0 0 0 -1370.21 -8.88058e-08 -8.88083e-08 0 0 0 200.019 13.8995 4.82363 181.296 +1 1 2 981 1.981 323.15 0 0 -0.07696 0.035415 0.035415 0 0 0 -1370.89 -8.90773e-08 -8.90801e-08 0 0 0 200.238 13.9131 4.84913 181.476 +1 1 2 982 1.982 323.15 0 0 -0.07712 0.0354935 0.0354935 0 0 0 -1371.56 -8.93486e-08 -8.93514e-08 0 0 0 200.457 13.9267 4.87471 181.656 +1 1 2 983 1.983 323.15 0 0 -0.07728 0.035572 0.035572 0 0 0 -1372.23 -8.96195e-08 -8.96223e-08 0 0 0 200.677 13.9404 4.90035 181.836 +1 1 2 984 1.984 323.15 0 0 -0.07744 0.0356505 0.0356505 0 0 0 -1372.9 -8.98905e-08 -8.98937e-08 0 0 0 200.896 13.954 4.92606 182.016 +1 1 2 985 1.985 323.15 0 0 -0.0776 0.035729 0.035729 0 0 0 -1373.57 -9.01622e-08 -9.01653e-08 0 0 0 201.116 13.9677 4.95184 182.197 +1 1 2 986 1.986 323.15 0 0 -0.07776 0.0358075 0.0358075 0 0 0 -1374.24 -9.04346e-08 -9.04375e-08 0 0 0 201.336 13.9814 4.97768 182.377 +1 1 2 987 1.987 323.15 0 0 -0.07792 0.035886 0.035886 0 0 0 -1374.92 -9.07062e-08 -9.07092e-08 0 0 0 201.556 13.995 5.0036 182.557 +1 1 2 988 1.988 323.15 0 0 -0.07808 0.0359645 0.0359645 0 0 0 -1375.59 -9.09774e-08 -9.09807e-08 0 0 0 201.776 14.0087 5.02958 182.738 +1 1 2 989 1.989 323.15 0 0 -0.07824 0.036043 0.036043 0 0 0 -1376.26 -9.12491e-08 -9.12524e-08 0 0 0 201.996 14.0224 5.05563 182.918 +1 1 2 990 1.99 323.15 0 0 -0.0784 0.0361215 0.0361215 0 0 0 -1376.93 -9.15202e-08 -9.15234e-08 0 0 0 202.216 14.036 5.08174 183.099 +1 1 2 991 1.991 323.15 0 0 -0.07856 0.0362 0.0362 0 0 0 -1377.6 -9.17916e-08 -9.17948e-08 0 0 0 202.437 14.0497 5.10793 183.279 +1 1 2 992 1.992 323.15 0 0 -0.07872 0.0362785 0.0362785 0 0 0 -1378.27 -9.20627e-08 -9.20659e-08 0 0 0 202.657 14.0634 5.13418 183.46 +1 1 2 993 1.993 323.15 0 0 -0.07888 0.036357 0.036357 0 0 0 -1378.94 -9.23344e-08 -9.23375e-08 0 0 0 202.878 14.0771 5.1605 183.64 +1 1 2 994 1.994 323.15 0 0 -0.07904 0.0364355 0.0364355 0 0 0 -1379.61 -9.26056e-08 -9.26083e-08 0 0 0 203.098 14.0908 5.18689 183.821 +1 1 2 995 1.995 323.15 0 0 -0.0792 0.036514 0.036514 0 0 0 -1380.28 -9.28769e-08 -9.28796e-08 0 0 0 203.319 14.1045 5.21335 184.001 +1 1 2 996 1.996 323.15 0 0 -0.07936 0.0365925 0.0365925 0 0 0 -1380.95 -9.31485e-08 -9.31512e-08 0 0 0 203.54 14.1182 5.23987 184.182 +1 1 2 997 1.997 323.15 0 0 -0.07952 0.036671 0.036671 0 0 0 -1381.62 -9.34193e-08 -9.34224e-08 0 0 0 203.761 14.1319 5.26646 184.363 +1 1 2 998 1.998 323.15 0 0 -0.07968 0.0367495 0.0367495 0 0 0 -1382.29 -9.36907e-08 -9.36938e-08 0 0 0 203.982 14.1456 5.29312 184.544 +1 1 2 999 1.999 323.15 0 0 -0.07984 0.036828 0.036828 0 0 0 -1382.96 -9.39625e-08 -9.39652e-08 0 0 0 204.204 14.1593 5.31985 184.724 +1 1 2 1000 2 323.15 0 0 -0.08 0.0369065 0.0369065 0 0 0 -1383.63 -9.42341e-08 -9.42369e-08 0 0 0 204.425 14.173 5.34665 184.905 +1 1 3 1 2.001 323.15 0 0 -0.07984 0.0368507 0.0368507 0 0 0 -1372.83 -9.41403e-08 -9.4143e-08 0 0 0 204.204 13.9525 5.34665 184.905 +1 1 3 2 2.002 323.15 0 0 -0.07968 0.0367948 0.0367948 0 0 0 -1362.02 -9.40466e-08 -9.40494e-08 0 0 0 203.986 13.7337 5.34665 184.905 +1 1 3 3 2.003 323.15 0 0 -0.07952 0.036739 0.036739 0 0 0 -1351.21 -9.3953e-08 -9.39557e-08 0 0 0 203.768 13.5167 5.34665 184.905 +1 1 3 4 2.004 323.15 0 0 -0.07936 0.0366831 0.0366831 0 0 0 -1340.41 -9.38591e-08 -9.38619e-08 0 0 0 203.553 13.3013 5.34665 184.905 +1 1 3 5 2.005 323.15 0 0 -0.0792 0.0366273 0.0366273 0 0 0 -1329.6 -9.37655e-08 -9.37683e-08 0 0 0 203.34 13.0877 5.34665 184.905 +1 1 3 6 2.006 323.15 0 0 -0.07904 0.0365715 0.0365715 0 0 0 -1318.8 -9.36717e-08 -9.36745e-08 0 0 0 203.128 12.8759 5.34665 184.905 +1 1 3 7 2.007 323.15 0 0 -0.07888 0.0365156 0.0365156 0 0 0 -1307.99 -9.35781e-08 -9.35809e-08 0 0 0 202.918 12.6657 5.34665 184.905 +1 1 3 8 2.008 323.15 0 0 -0.07872 0.0364598 0.0364598 0 0 0 -1297.18 -9.34844e-08 -9.34872e-08 0 0 0 202.709 12.4573 5.34665 184.905 +1 1 3 9 2.009 323.15 0 0 -0.07856 0.0364039 0.0364039 0 0 0 -1286.38 -9.33906e-08 -9.33934e-08 0 0 0 202.502 12.2506 5.34665 184.905 +1 1 3 10 2.01 323.15 0 0 -0.0784 0.0363481 0.0363481 0 0 0 -1275.57 -9.3297e-08 -9.32997e-08 0 0 0 202.297 12.0457 5.34665 184.905 +1 1 3 11 2.011 323.15 0 0 -0.07824 0.0362923 0.0362923 0 0 0 -1264.77 -9.32031e-08 -9.32059e-08 0 0 0 202.094 11.8425 5.34665 184.905 +1 1 3 12 2.012 323.15 0 0 -0.07808 0.0362364 0.0362364 0 0 0 -1253.96 -9.31095e-08 -9.31123e-08 0 0 0 201.893 11.641 5.34665 184.905 +1 1 3 13 2.013 323.15 0 0 -0.07792 0.0361806 0.0361806 0 0 0 -1243.15 -9.30159e-08 -9.30187e-08 0 0 0 201.693 11.4412 5.34665 184.905 +1 1 3 14 2.014 323.15 0 0 -0.07776 0.0361247 0.0361247 0 0 0 -1232.35 -9.29221e-08 -9.29248e-08 0 0 0 201.495 11.2431 5.34665 184.905 +1 1 3 15 2.015 323.15 0 0 -0.0776 0.0360689 0.0360689 0 0 0 -1221.54 -9.28285e-08 -9.28312e-08 0 0 0 201.299 11.0468 5.34665 184.905 +1 1 3 16 2.016 323.15 0 0 -0.07744 0.0360131 0.0360131 0 0 0 -1210.73 -9.27346e-08 -9.27374e-08 0 0 0 201.104 10.8523 5.34665 184.905 +1 1 3 17 2.017 323.15 0 0 -0.07728 0.0359572 0.0359572 0 0 0 -1199.93 -9.26409e-08 -9.26437e-08 0 0 0 200.911 10.6594 5.34665 184.905 +1 1 3 18 2.018 323.15 0 0 -0.07712 0.0359014 0.0359014 0 0 0 -1189.12 -9.25472e-08 -9.25501e-08 0 0 0 200.72 10.4683 5.34665 184.905 +1 1 3 19 2.019 323.15 0 0 -0.07696 0.0358455 0.0358455 0 0 0 -1178.32 -9.24536e-08 -9.24564e-08 0 0 0 200.531 10.2789 5.34665 184.905 +1 1 3 20 2.02 323.15 0 0 -0.0768 0.0357897 0.0357897 0 0 0 -1167.51 -9.23599e-08 -9.23627e-08 0 0 0 200.343 10.0912 5.34665 184.905 +1 1 3 21 2.021 323.15 0 0 -0.07664 0.0357339 0.0357339 0 0 0 -1156.7 -9.22661e-08 -9.22689e-08 0 0 0 200.157 9.90527 5.34665 184.905 +1 1 3 22 2.022 323.15 0 0 -0.07648 0.035678 0.035678 0 0 0 -1145.9 -9.21724e-08 -9.21752e-08 0 0 0 199.973 9.72107 5.34665 184.905 +1 1 3 23 2.023 323.15 0 0 -0.07632 0.0356222 0.0356222 0 0 0 -1135.09 -9.20788e-08 -9.20815e-08 0 0 0 199.79 9.53859 5.34665 184.905 +1 1 3 24 2.024 323.15 0 0 -0.07616 0.0355663 0.0355663 0 0 0 -1124.29 -9.19851e-08 -9.19878e-08 0 0 0 199.61 9.35784 5.34665 184.905 +1 1 3 25 2.025 323.15 0 0 -0.076 0.0355105 0.0355105 0 0 0 -1113.48 -9.18913e-08 -9.18942e-08 0 0 0 199.431 9.17882 5.34665 184.905 +1 1 3 26 2.026 323.15 0 0 -0.07584 0.0354547 0.0354547 0 0 0 -1102.67 -9.17976e-08 -9.18004e-08 0 0 0 199.253 9.00152 5.34665 184.905 +1 1 3 27 2.027 323.15 0 0 -0.07568 0.0353988 0.0353988 0 0 0 -1091.87 -9.17039e-08 -9.17067e-08 0 0 0 199.078 8.82596 5.34665 184.905 +1 1 3 28 2.028 323.15 0 0 -0.07552 0.035343 0.035343 0 0 0 -1081.06 -9.16103e-08 -9.1613e-08 0 0 0 198.904 8.65213 5.34665 184.905 +1 1 3 29 2.029 323.15 0 0 -0.07536 0.0352871 0.0352871 0 0 0 -1070.26 -9.15165e-08 -9.15193e-08 0 0 0 198.732 8.48002 5.34665 184.905 +1 1 3 30 2.03 323.15 0 0 -0.0752 0.0352313 0.0352313 0 0 0 -1059.45 -9.14228e-08 -9.14255e-08 0 0 0 198.561 8.30964 5.34665 184.905 +1 1 3 31 2.031 323.15 0 0 -0.07504 0.0351755 0.0351755 0 0 0 -1048.64 -9.1329e-08 -9.13318e-08 0 0 0 198.393 8.141 5.34665 184.905 +1 1 3 32 2.032 323.15 0 0 -0.07488 0.0351196 0.0351196 0 0 0 -1037.84 -9.12354e-08 -9.12382e-08 0 0 0 198.226 7.97408 5.34665 184.905 +1 1 3 33 2.033 323.15 0 0 -0.07472 0.0350638 0.0350638 0 0 0 -1027.03 -9.11417e-08 -9.11445e-08 0 0 0 198.061 7.80889 5.34665 184.905 +1 1 3 34 2.034 323.15 0 0 -0.07456 0.0350079 0.0350079 0 0 0 -1016.23 -9.1048e-08 -9.10508e-08 0 0 0 197.897 7.64543 5.34665 184.905 +1 1 3 35 2.035 323.15 0 0 -0.0744 0.0349521 0.0349521 0 0 0 -1005.42 -9.09542e-08 -9.0957e-08 0 0 0 197.735 7.4837 5.34665 184.905 +1 1 3 36 2.036 323.15 0 0 -0.07424 0.0348963 0.0348963 0 0 0 -994.613 -9.08605e-08 -9.08633e-08 0 0 0 197.575 7.32369 5.34665 184.905 +1 1 3 37 2.037 323.15 0 0 -0.07408 0.0348404 0.0348404 0 0 0 -983.807 -9.07669e-08 -9.07696e-08 0 0 0 197.417 7.16542 5.34665 184.905 +1 1 3 38 2.038 323.15 0 0 -0.07392 0.0347846 0.0347846 0 0 0 -973.001 -9.06732e-08 -9.06759e-08 0 0 0 197.261 7.00888 5.34665 184.905 +1 1 3 39 2.039 323.15 0 0 -0.07376 0.0347287 0.0347287 0 0 0 -962.195 -9.05794e-08 -9.05821e-08 0 0 0 197.106 6.85406 5.34665 184.905 +1 1 3 40 2.04 323.15 0 0 -0.0736 0.0346729 0.0346729 0 0 0 -951.389 -9.04857e-08 -9.04885e-08 0 0 0 196.953 6.70097 5.34665 184.905 +1 1 3 41 2.041 323.15 0 0 -0.07344 0.0346171 0.0346171 0 0 0 -940.583 -9.0392e-08 -9.03948e-08 0 0 0 196.801 6.54962 5.34665 184.905 +1 1 3 42 2.042 323.15 0 0 -0.07328 0.0345612 0.0345612 0 0 0 -929.777 -9.02983e-08 -9.03011e-08 0 0 0 196.652 6.39999 5.34665 184.905 +1 1 3 43 2.043 323.15 0 0 -0.07312 0.0345054 0.0345054 0 0 0 -918.971 -9.02046e-08 -9.02074e-08 0 0 0 196.504 6.25209 5.34665 184.905 +1 1 3 44 2.044 323.15 0 0 -0.07296 0.0344495 0.0344495 0 0 0 -908.164 -9.01108e-08 -9.01136e-08 0 0 0 196.358 6.10592 5.34665 184.905 +1 1 3 45 2.045 323.15 0 0 -0.0728 0.0343937 0.0343937 0 0 0 -897.358 -9.00171e-08 -9.00199e-08 0 0 0 196.213 5.96147 5.34665 184.905 +1 1 3 46 2.046 323.15 0 0 -0.07264 0.0343379 0.0343379 0 0 0 -886.552 -8.99235e-08 -8.99263e-08 0 0 0 196.071 5.81876 5.34665 184.905 +1 1 3 47 2.047 323.15 0 0 -0.07248 0.034282 0.034282 0 0 0 -875.746 -8.98298e-08 -8.98325e-08 0 0 0 195.93 5.67778 5.34665 184.905 +1 1 3 48 2.048 323.15 0 0 -0.07232 0.0342262 0.0342262 0 0 0 -864.94 -8.9736e-08 -8.97388e-08 0 0 0 195.79 5.53852 5.34665 184.905 +1 1 3 49 2.049 323.15 0 0 -0.07216 0.0341703 0.0341703 0 0 0 -854.134 -8.96423e-08 -8.96451e-08 0 0 0 195.653 5.401 5.34665 184.905 +1 1 3 50 2.05 323.15 0 0 -0.072 0.0341145 0.0341145 0 0 0 -843.328 -8.95487e-08 -8.95515e-08 0 0 0 195.517 5.2652 5.34665 184.905 +1 1 3 51 2.051 323.15 0 0 -0.07184 0.0340587 0.0340587 0 0 0 -832.522 -8.94549e-08 -8.94577e-08 0 0 0 195.383 5.13113 5.34665 184.905 +1 1 3 52 2.052 323.15 0 0 -0.07168 0.0340028 0.0340028 0 0 0 -821.716 -8.93612e-08 -8.9364e-08 0 0 0 195.251 4.99879 5.34665 184.905 +1 1 3 53 2.053 323.15 0 0 -0.07152 0.033947 0.033947 0 0 0 -810.91 -8.92675e-08 -8.92703e-08 0 0 0 195.12 4.86818 5.34665 184.905 +1 1 3 54 2.054 323.15 0 0 -0.07136 0.0338911 0.0338911 0 0 0 -800.104 -8.91738e-08 -8.91765e-08 0 0 0 194.991 4.7393 5.34665 184.905 +1 1 3 55 2.055 323.15 0 0 -0.0712 0.0338353 0.0338353 0 0 0 -789.298 -8.90801e-08 -8.90829e-08 0 0 0 194.864 4.61215 5.34665 184.905 +1 1 3 56 2.056 323.15 0 0 -0.07104 0.0337795 0.0337795 0 0 0 -778.492 -8.89864e-08 -8.89891e-08 0 0 0 194.739 4.48673 5.34665 184.905 +1 1 3 57 2.057 323.15 0 0 -0.07088 0.0337236 0.0337236 0 0 0 -767.685 -8.88927e-08 -8.88955e-08 0 0 0 194.615 4.36303 5.34665 184.905 +1 1 3 58 2.058 323.15 0 0 -0.07072 0.0336678 0.0336678 0 0 0 -756.879 -8.87989e-08 -8.88017e-08 0 0 0 194.493 4.24107 5.34665 184.905 +1 1 3 59 2.059 323.15 0 0 -0.07056 0.0336119 0.0336119 0 0 0 -746.073 -8.87053e-08 -8.87081e-08 0 0 0 194.373 4.12083 5.34665 184.905 +1 1 3 60 2.06 323.15 0 0 -0.0704 0.0335561 0.0335561 0 0 0 -735.267 -8.86116e-08 -8.86144e-08 0 0 0 194.254 4.00232 5.34665 184.905 +1 1 3 61 2.061 323.15 0 0 -0.07024 0.0335003 0.0335003 0 0 0 -724.461 -8.85179e-08 -8.85206e-08 0 0 0 194.137 3.88555 5.34665 184.905 +1 1 3 62 2.062 323.15 0 0 -0.07008 0.0334444 0.0334444 0 0 0 -713.655 -8.84241e-08 -8.84269e-08 0 0 0 194.022 3.7705 5.34665 184.905 +1 1 3 63 2.063 323.15 0 0 -0.06992 0.0333886 0.0333886 0 0 0 -702.849 -8.83305e-08 -8.83333e-08 0 0 0 193.909 3.65718 5.34665 184.905 +1 1 3 64 2.064 323.15 0 0 -0.06976 0.0333327 0.0333327 0 0 0 -692.043 -8.82368e-08 -8.82395e-08 0 0 0 193.797 3.54558 5.34665 184.905 +1 1 3 65 2.065 323.15 0 0 -0.0696 0.0332769 0.0332769 0 0 0 -681.237 -8.8143e-08 -8.81458e-08 0 0 0 193.688 3.43572 5.34665 184.905 +1 1 3 66 2.066 323.15 0 0 -0.06944 0.0332211 0.0332211 0 0 0 -670.431 -8.80493e-08 -8.80521e-08 0 0 0 193.579 3.32759 5.34665 184.905 +1 1 3 67 2.067 323.15 0 0 -0.06928 0.0331652 0.0331652 0 0 0 -659.625 -8.79556e-08 -8.79584e-08 0 0 0 193.473 3.22118 5.34665 184.905 +1 1 3 68 2.068 323.15 0 0 -0.06912 0.0331094 0.0331094 0 0 0 -648.819 -8.7862e-08 -8.78647e-08 0 0 0 193.368 3.11651 5.34665 184.905 +1 1 3 69 2.069 323.15 0 0 -0.06896 0.0330535 0.0330535 0 0 0 -638.012 -8.77682e-08 -8.7771e-08 0 0 0 193.265 3.01356 5.34665 184.905 +1 1 3 70 2.07 323.15 0 0 -0.0688 0.0329977 0.0329977 0 0 0 -627.206 -8.76745e-08 -8.76772e-08 0 0 0 193.164 2.91234 5.34665 184.905 +1 1 3 71 2.071 323.15 0 0 -0.06864 0.0329419 0.0329419 0 0 0 -616.4 -8.75807e-08 -8.75835e-08 0 0 0 193.065 2.81286 5.34665 184.905 +1 1 3 72 2.072 323.15 0 0 -0.06848 0.032886 0.032886 0 0 0 -605.594 -8.74871e-08 -8.74899e-08 0 0 0 192.967 2.7151 5.34665 184.905 +1 1 3 73 2.073 323.15 0 0 -0.06832 0.0328302 0.0328302 0 0 0 -594.788 -8.73933e-08 -8.73961e-08 0 0 0 192.871 2.61907 5.34665 184.905 +1 1 3 74 2.074 323.15 0 0 -0.06816 0.0327743 0.0327743 0 0 0 -583.982 -8.72997e-08 -8.73024e-08 0 0 0 192.777 2.52476 5.34665 184.905 +1 1 3 75 2.075 323.15 0 0 -0.068 0.0327185 0.0327185 0 0 0 -573.176 -8.72059e-08 -8.72087e-08 0 0 0 192.684 2.43219 5.34665 184.905 +1 1 3 76 2.076 323.15 0 0 -0.06784 0.0326627 0.0326627 0 0 0 -562.37 -8.71122e-08 -8.7115e-08 0 0 0 192.593 2.34135 5.34665 184.905 +1 1 3 77 2.077 323.15 0 0 -0.06768 0.0326068 0.0326068 0 0 0 -551.564 -8.70185e-08 -8.70213e-08 0 0 0 192.504 2.25223 5.34665 184.905 +1 1 3 78 2.078 323.15 0 0 -0.06752 0.032551 0.032551 0 0 0 -540.758 -8.69248e-08 -8.69276e-08 0 0 0 192.417 2.16485 5.34665 184.905 +1 1 3 79 2.079 323.15 0 0 -0.06736 0.0324951 0.0324951 0 0 0 -529.952 -8.68311e-08 -8.68339e-08 0 0 0 192.331 2.07919 5.34665 184.905 +1 1 3 80 2.08 323.15 0 0 -0.0672 0.0324393 0.0324393 0 0 0 -519.146 -8.67374e-08 -8.67402e-08 0 0 0 192.247 1.99526 5.34665 184.905 +1 1 3 81 2.081 323.15 0 0 -0.06704 0.0323835 0.0323835 0 0 0 -508.34 -8.66437e-08 -8.66465e-08 0 0 0 192.165 1.91306 5.34665 184.905 +1 1 3 82 2.082 323.15 0 0 -0.06688 0.0323276 0.0323276 0 0 0 -497.533 -8.655e-08 -8.65528e-08 0 0 0 192.084 1.83259 5.34665 184.905 +1 1 3 83 2.083 323.15 0 0 -0.06672 0.0322718 0.0322718 0 0 0 -486.727 -8.64563e-08 -8.6459e-08 0 0 0 192.006 1.75385 5.34665 184.905 +1 1 3 84 2.084 323.15 0 0 -0.06656 0.0322159 0.0322159 0 0 0 -475.921 -8.63626e-08 -8.63654e-08 0 0 0 191.929 1.67684 5.34665 184.905 +1 1 3 85 2.085 323.15 0 0 -0.0664 0.0321601 0.0321601 0 0 0 -465.115 -8.62689e-08 -8.62717e-08 0 0 0 191.853 1.60156 5.34665 184.905 +1 1 3 86 2.086 323.15 0 0 -0.06624 0.0321043 0.0321043 0 0 0 -454.309 -8.61752e-08 -8.61779e-08 0 0 0 191.78 1.528 5.34665 184.905 +1 1 3 87 2.087 323.15 0 0 -0.06608 0.0320484 0.0320484 0 0 0 -443.503 -8.60815e-08 -8.60842e-08 0 0 0 191.708 1.45618 5.34665 184.905 +1 1 3 88 2.088 323.15 0 0 -0.06592 0.0319926 0.0319926 0 0 0 -432.697 -8.59877e-08 -8.59905e-08 0 0 0 191.638 1.38608 5.34665 184.905 +1 1 3 89 2.089 323.15 0 0 -0.06576 0.0319367 0.0319367 0 0 0 -421.891 -8.58941e-08 -8.58968e-08 0 0 0 191.57 1.31772 5.34665 184.905 +1 1 3 90 2.09 323.15 0 0 -0.0656 0.0318809 0.0318809 0 0 0 -411.085 -8.58003e-08 -8.58031e-08 0 0 0 191.503 1.25108 5.34665 184.905 +1 1 3 91 2.091 323.15 0 0 -0.06544 0.0318251 0.0318251 0 0 0 -400.279 -8.57067e-08 -8.57094e-08 0 0 0 191.438 1.18617 5.34665 184.905 +1 1 3 92 2.092 323.15 0 0 -0.06528 0.0317692 0.0317692 0 0 0 -389.473 -8.56129e-08 -8.56157e-08 0 0 0 191.375 1.12299 5.34665 184.905 +1 1 3 93 2.093 323.15 0 0 -0.06512 0.0317134 0.0317134 0 0 0 -378.667 -8.55192e-08 -8.5522e-08 0 0 0 191.313 1.06154 5.34665 184.905 +1 1 3 94 2.094 323.15 0 0 -0.06496 0.0316575 0.0316575 0 0 0 -367.86 -8.54255e-08 -8.54283e-08 0 0 0 191.254 1.00182 5.34665 184.905 +1 1 3 95 2.095 323.15 0 0 -0.0648 0.0316017 0.0316017 0 0 0 -357.054 -8.53318e-08 -8.53346e-08 0 0 0 191.196 0.943823 5.34665 184.905 +1 1 3 96 2.096 323.15 0 0 -0.06464 0.0315459 0.0315459 0 0 0 -346.248 -8.52381e-08 -8.52409e-08 0 0 0 191.139 0.887559 5.34665 184.905 +1 1 3 97 2.097 323.15 0 0 -0.06448 0.03149 0.03149 0 0 0 -335.442 -8.51444e-08 -8.51471e-08 0 0 0 191.085 0.833024 5.34665 184.905 +1 1 3 98 2.098 323.15 0 0 -0.06432 0.0314342 0.0314342 0 0 0 -324.636 -8.50507e-08 -8.50535e-08 0 0 0 191.032 0.780217 5.34665 184.905 +1 1 3 99 2.099 323.15 0 0 -0.06416 0.0313783 0.0313783 0 0 0 -313.83 -8.49569e-08 -8.49597e-08 0 0 0 190.981 0.72914 5.34665 184.905 +1 1 3 100 2.1 323.15 0 0 -0.064 0.0313225 0.0313225 0 0 0 -303.024 -8.48633e-08 -8.48661e-08 0 0 0 190.932 0.679792 5.34665 184.905 +1 1 3 101 2.101 323.15 0 0 -0.06384 0.0312667 0.0312667 0 0 0 -292.218 -8.47695e-08 -8.47723e-08 0 0 0 190.884 0.632172 5.34665 184.905 +1 1 3 102 2.102 323.15 0 0 -0.06368 0.0312108 0.0312108 0 0 0 -281.412 -8.46758e-08 -8.46786e-08 0 0 0 190.838 0.586282 5.34665 184.905 +1 1 3 103 2.103 323.15 0 0 -0.06352 0.031155 0.031155 0 0 0 -270.606 -8.45821e-08 -8.45849e-08 0 0 0 190.794 0.542121 5.34665 184.905 +1 1 3 104 2.104 323.15 0 0 -0.06336 0.0310991 0.0310991 0 0 0 -259.8 -8.44884e-08 -8.44912e-08 0 0 0 190.751 0.499688 5.34665 184.905 +1 1 3 105 2.105 323.15 0 0 -0.0632 0.0310433 0.0310433 0 0 0 -248.994 -8.43947e-08 -8.43975e-08 0 0 0 190.711 0.458985 5.34665 184.905 +1 1 3 106 2.106 323.15 0 0 -0.06304 0.0309875 0.0309875 0 0 0 -238.188 -8.4301e-08 -8.43038e-08 0 0 0 190.672 0.42001 5.34665 184.905 +1 1 3 107 2.107 323.15 0 0 -0.06288 0.0309316 0.0309316 0 0 0 -227.381 -8.42073e-08 -8.42101e-08 0 0 0 190.635 0.382765 5.34665 184.905 +1 1 3 108 2.108 323.15 0 0 -0.06272 0.0308758 0.0308758 0 0 0 -216.575 -8.41136e-08 -8.41164e-08 0 0 0 190.599 0.347248 5.34665 184.905 +1 1 3 109 2.109 323.15 0 0 -0.06256 0.0308199 0.0308199 0 0 0 -205.769 -8.40199e-08 -8.40226e-08 0 0 0 190.565 0.313461 5.34665 184.905 +1 1 3 110 2.11 323.15 0 0 -0.0624 0.0307641 0.0307641 0 0 0 -194.963 -8.39258e-08 -8.39286e-08 0 0 0 190.533 0.281402 5.34665 184.905 +1 1 3 111 2.111 323.15 0 0 -0.06224 0.0307083 0.0307083 0 0 0 -184.157 -8.38317e-08 -8.38344e-08 0 0 0 190.503 0.251072 5.34665 184.905 +1 1 3 112 2.112 323.15 0 0 -0.06208 0.0306524 0.0306524 0 0 0 -173.351 -8.37375e-08 -8.37403e-08 0 0 0 190.474 0.222472 5.34665 184.905 +1 1 3 113 2.113 323.15 0 0 -0.06192 0.0305966 0.0305966 0 0 0 -162.545 -8.36434e-08 -8.36462e-08 0 0 0 190.447 0.1956 5.34665 184.905 +1 1 3 114 2.114 323.15 0 0 -0.06176 0.0305407 0.0305407 0 0 0 -151.739 -8.35493e-08 -8.35521e-08 0 0 0 190.422 0.170457 5.34665 184.905 +1 1 3 115 2.115 323.15 0 0 -0.0616 0.0304849 0.0304849 0 0 0 -140.933 -8.34552e-08 -8.3458e-08 0 0 0 190.399 0.147044 5.34665 184.905 +1 1 3 116 2.116 323.15 0 0 -0.06144 0.0304291 0.0304291 0 0 0 -130.127 -8.33611e-08 -8.33639e-08 0 0 0 190.377 0.125359 5.34665 184.905 +1 1 3 117 2.117 323.15 0 0 -0.06128 0.0303732 0.0303732 0 0 0 -119.321 -8.3267e-08 -8.32698e-08 0 0 0 190.357 0.105403 5.34665 184.905 +1 1 3 118 2.118 323.15 0 0 -0.06112 0.0303174 0.0303174 0 0 0 -108.515 -8.31729e-08 -8.31757e-08 0 0 0 190.339 0.0871762 5.34665 184.905 +1 1 3 119 2.119 323.15 0 0 -0.06096 0.0302615 0.0302615 0 0 0 -97.7085 -8.30788e-08 -8.30816e-08 0 0 0 190.322 0.0706783 5.34665 184.905 +1 1 3 120 2.12 323.15 0 0 -0.0608 0.0302057 0.0302057 0 0 0 -86.9024 -8.29847e-08 -8.29874e-08 0 0 0 190.308 0.0559095 5.34665 184.905 +1 1 3 121 2.121 323.15 0 0 -0.06064 0.0301499 0.0301499 0 0 0 -76.0963 -8.28906e-08 -8.28933e-08 0 0 0 190.295 0.0428696 5.34665 184.905 +1 1 3 122 2.122 323.15 0 0 -0.06048 0.030094 0.030094 0 0 0 -65.2902 -8.27965e-08 -8.27992e-08 0 0 0 190.283 0.0315586 5.34665 184.905 +1 1 3 123 2.123 323.15 0 0 -0.06032 0.0300382 0.0300382 0 0 0 -54.4842 -8.27023e-08 -8.27051e-08 0 0 0 190.274 0.0219767 5.34665 184.905 +1 1 3 124 2.124 323.15 0 0 -0.06016 0.0299823 0.0299823 0 0 0 -43.6781 -8.26082e-08 -8.2611e-08 0 0 0 190.266 0.0141237 5.34665 184.905 +1 1 3 125 2.125 323.15 0 0 -0.06 0.0299265 0.0299265 0 0 0 -32.872 -8.25141e-08 -8.25169e-08 0 0 0 190.26 0.00799971 5.34665 184.905 +1 1 3 126 2.126 323.15 0 0 -0.05984 0.0298707 0.0298707 0 0 0 -22.0659 -8.242e-08 -8.24228e-08 0 0 0 190.255 0.00360467 5.34665 184.905 +1 1 3 127 2.127 323.15 0 0 -0.05968 0.0298148 0.0298148 0 0 0 -11.2598 -8.23259e-08 -8.23287e-08 0 0 0 190.253 0.000938612 5.34665 184.905 +1 1 3 128 2.128 323.15 0 0 -0.05952 0.029759 0.029759 0 0 0 -0.453758 -8.22318e-08 -8.22346e-08 0 0 0 190.252 1.5243e-06 5.34665 184.905 +1 1 3 129 2.129 323.15 0 0 -0.05936 0.0297031 0.0297031 0 0 0 10.3523 -8.21377e-08 -8.21405e-08 0 0 0 190.253 0.000793409 5.34665 184.905 +1 1 3 130 2.13 323.15 0 0 -0.0592 0.0296473 0.0296473 0 0 0 21.1584 -8.20436e-08 -8.20464e-08 0 0 0 190.255 0.00331427 5.34665 184.905 +1 1 3 131 2.131 323.15 0 0 -0.05904 0.0295915 0.0295915 0 0 0 31.9645 -8.19495e-08 -8.19523e-08 0 0 0 190.259 0.0075641 5.34665 184.905 +1 1 3 132 2.132 323.15 0 0 -0.05888 0.0295356 0.0295356 0 0 0 42.7706 -8.18554e-08 -8.18581e-08 0 0 0 190.265 0.0135429 5.34665 184.905 +1 1 3 133 2.133 323.15 0 0 -0.05872 0.0294798 0.0294798 0 0 0 53.5766 -8.17613e-08 -8.1764e-08 0 0 0 190.273 0.0212507 5.34665 184.905 +1 1 3 134 2.134 323.15 0 0 -0.05856 0.0294239 0.0294239 0 0 0 64.3827 -8.16671e-08 -8.16699e-08 0 0 0 190.282 0.0306874 5.34665 184.905 +1 1 3 135 2.135 323.15 0 0 -0.0584 0.0293681 0.0293681 0 0 0 75.1888 -8.1573e-08 -8.15758e-08 0 0 0 190.294 0.0418531 5.34665 184.905 +1 1 3 136 2.136 323.15 0 0 -0.05824 0.0293123 0.0293123 0 0 0 85.9949 -8.14789e-08 -8.14817e-08 0 0 0 190.307 0.0547478 5.34665 184.905 +1 1 3 137 2.137 323.15 0 0 -0.05808 0.0292564 0.0292564 0 0 0 96.801 -8.13848e-08 -8.13876e-08 0 0 0 190.321 0.0693715 5.34665 184.905 +1 1 3 138 2.138 323.15 0 0 -0.05792 0.0292006 0.0292006 0 0 0 107.607 -8.12907e-08 -8.12935e-08 0 0 0 190.338 0.0857242 5.34665 184.905 +1 1 3 139 2.139 323.15 0 0 -0.05776 0.0291447 0.0291447 0 0 0 118.413 -8.11966e-08 -8.11994e-08 0 0 0 190.356 0.103806 5.34665 184.905 +1 1 3 140 2.14 323.15 0 0 -0.0576 0.0290889 0.0290889 0 0 0 129.219 -8.11025e-08 -8.11053e-08 0 0 0 190.375 0.123616 5.34665 184.905 +1 1 3 141 2.141 323.15 0 0 -0.05744 0.0290331 0.0290331 0 0 0 140.025 -8.10084e-08 -8.10112e-08 0 0 0 190.397 0.145156 5.34665 184.905 +1 1 3 142 2.142 323.15 0 0 -0.05728 0.0289772 0.0289772 0 0 0 150.831 -8.09143e-08 -8.09171e-08 0 0 0 190.42 0.168424 5.34665 184.905 +1 1 3 143 2.143 323.15 0 0 -0.05712 0.0289214 0.0289214 0 0 0 161.637 -8.08202e-08 -8.08229e-08 0 0 0 190.445 0.193422 5.34665 184.905 +1 1 3 144 2.144 323.15 0 0 -0.05696 0.0288655 0.0288655 0 0 0 172.444 -8.0726e-08 -8.07288e-08 0 0 0 190.472 0.220148 5.34665 184.905 +1 1 3 145 2.145 323.15 0 0 -0.0568 0.0288097 0.0288097 0 0 0 183.25 -8.0632e-08 -8.06347e-08 0 0 0 190.5 0.248604 5.34665 184.905 +1 1 3 146 2.146 323.15 0 0 -0.05664 0.0287539 0.0287539 0 0 0 194.056 -8.05378e-08 -8.05406e-08 0 0 0 190.531 0.278788 5.34665 184.905 +1 1 3 147 2.147 323.15 0 0 -0.05648 0.028698 0.028698 0 0 0 204.862 -8.04437e-08 -8.04465e-08 0 0 0 190.563 0.310702 5.34665 184.905 +1 1 3 148 2.148 323.15 0 0 -0.05632 0.0286422 0.0286422 0 0 0 215.668 -8.03496e-08 -8.03524e-08 0 0 0 190.596 0.344344 5.34665 184.905 +1 1 3 149 2.149 323.15 0 0 -0.05616 0.0285863 0.0285863 0 0 0 226.474 -8.02555e-08 -8.02583e-08 0 0 0 190.632 0.379715 5.34665 184.905 +1 1 3 150 2.15 323.15 0 0 -0.056 0.0285305 0.0285305 0 0 0 237.28 -8.01614e-08 -8.01642e-08 0 0 0 190.669 0.416816 5.34665 184.905 +1 1 3 151 2.151 323.15 0 0 -0.05584 0.0284747 0.0284747 0 0 0 248.086 -8.00673e-08 -8.00701e-08 0 0 0 190.707 0.455645 5.34665 184.905 +1 1 3 152 2.152 323.15 0 0 -0.05568 0.0284188 0.0284188 0 0 0 258.892 -7.99732e-08 -7.99759e-08 0 0 0 190.748 0.496203 5.34665 184.905 +1 1 3 153 2.153 323.15 0 0 -0.05552 0.028363 0.028363 0 0 0 269.698 -7.98791e-08 -7.98818e-08 0 0 0 190.79 0.53849 5.34665 184.905 +1 1 3 154 2.154 323.15 0 0 -0.05536 0.0283071 0.0283071 0 0 0 280.504 -7.9785e-08 -7.97878e-08 0 0 0 190.834 0.582507 5.34665 184.905 +1 1 3 155 2.155 323.15 0 0 -0.0552 0.0282513 0.0282513 0 0 0 291.31 -7.96909e-08 -7.96937e-08 0 0 0 190.88 0.628252 5.34665 184.905 +1 1 3 156 2.156 323.15 0 0 -0.05504 0.0281955 0.0281955 0 0 0 302.116 -7.95968e-08 -7.95995e-08 0 0 0 190.928 0.675726 5.34665 184.905 +1 1 3 157 2.157 323.15 0 0 -0.05488 0.0281396 0.0281396 0 0 0 312.923 -7.95026e-08 -7.95054e-08 0 0 0 190.977 0.724929 5.34665 184.905 +1 1 3 158 2.158 323.15 0 0 -0.05472 0.0280838 0.0280838 0 0 0 323.729 -7.94085e-08 -7.94113e-08 0 0 0 191.028 0.775861 5.34665 184.905 +1 1 3 159 2.159 323.15 0 0 -0.05456 0.0280279 0.0280279 0 0 0 334.535 -7.93144e-08 -7.93172e-08 0 0 0 191.08 0.828522 5.34665 184.905 +1 1 3 160 2.16 323.15 0 0 -0.0544 0.0279721 0.0279721 0 0 0 345.341 -7.92203e-08 -7.92231e-08 0 0 0 191.135 0.882912 5.34665 184.905 +1 1 3 161 2.161 323.15 0 0 -0.05424 0.0279163 0.0279163 0 0 0 356.147 -7.91262e-08 -7.9129e-08 0 0 0 191.191 0.939031 5.34665 184.905 +1 1 3 162 2.162 323.15 0 0 -0.05408 0.0278604 0.0278604 0 0 0 366.953 -7.90321e-08 -7.90349e-08 0 0 0 191.249 0.996879 5.34665 184.905 +1 1 3 163 2.163 323.15 0 0 -0.05392 0.0278046 0.0278046 0 0 0 377.759 -7.8938e-08 -7.89408e-08 0 0 0 191.308 1.05646 5.34665 184.905 +1 1 3 164 2.164 323.15 0 0 -0.05376 0.0277487 0.0277487 0 0 0 388.565 -7.88439e-08 -7.88467e-08 0 0 0 191.37 1.11776 5.34665 184.905 +1 1 3 165 2.165 323.15 0 0 -0.0536 0.0276929 0.0276929 0 0 0 399.371 -7.87497e-08 -7.87525e-08 0 0 0 191.433 1.1808 5.34665 184.905 +1 1 3 166 2.166 323.15 0 0 -0.05344 0.0276371 0.0276371 0 0 0 410.177 -7.86557e-08 -7.86585e-08 0 0 0 191.497 1.24556 5.34665 184.905 +1 1 3 167 2.167 323.15 0 0 -0.05328 0.0275812 0.0275812 0 0 0 420.983 -7.85616e-08 -7.85643e-08 0 0 0 191.564 1.31205 5.34665 184.905 +1 1 3 168 2.168 323.15 0 0 -0.05312 0.0275254 0.0275254 0 0 0 431.789 -7.84674e-08 -7.84702e-08 0 0 0 191.632 1.38028 5.34665 184.905 +1 1 3 169 2.169 323.15 0 0 -0.05296 0.0274695 0.0274695 0 0 0 442.596 -7.83733e-08 -7.83761e-08 0 0 0 191.702 1.45023 5.34665 184.905 +1 1 3 170 2.17 323.15 0 0 -0.0528 0.0274137 0.0274137 0 0 0 453.402 -7.82792e-08 -7.8282e-08 0 0 0 191.774 1.52191 5.34665 184.905 +1 1 3 171 2.171 323.15 0 0 -0.05264 0.0273579 0.0273579 0 0 0 464.208 -7.81851e-08 -7.81879e-08 0 0 0 191.847 1.59532 5.34665 184.905 +1 1 3 172 2.172 323.15 0 0 -0.05248 0.027302 0.027302 0 0 0 475.014 -7.8091e-08 -7.80938e-08 0 0 0 191.922 1.67045 5.34665 184.905 +1 1 3 173 2.173 323.15 0 0 -0.05232 0.0272462 0.0272462 0 0 0 485.82 -7.79969e-08 -7.79996e-08 0 0 0 191.999 1.74732 5.34665 184.905 +1 1 3 174 2.174 323.15 0 0 -0.05216 0.0271903 0.0271903 0 0 0 496.626 -7.79028e-08 -7.79056e-08 0 0 0 192.078 1.82592 5.34665 184.905 +1 1 3 175 2.175 323.15 0 0 -0.052 0.0271345 0.0271345 0 0 0 507.432 -7.78087e-08 -7.78115e-08 0 0 0 192.158 1.90624 5.34665 184.905 +1 1 3 176 2.176 323.15 0 0 -0.05184 0.0270787 0.0270787 0 0 0 518.238 -7.77145e-08 -7.77173e-08 0 0 0 192.24 1.98829 5.34665 184.905 +1 1 3 177 2.177 323.15 0 0 -0.05168 0.0270228 0.0270228 0 0 0 529.044 -7.76205e-08 -7.76233e-08 0 0 0 192.324 2.07208 5.34665 184.905 +1 1 3 178 2.178 323.15 0 0 -0.05152 0.026967 0.026967 0 0 0 539.85 -7.75263e-08 -7.75291e-08 0 0 0 192.409 2.15759 5.34665 184.905 +1 1 3 179 2.179 323.15 0 0 -0.05136 0.0269111 0.0269111 0 0 0 550.656 -7.74322e-08 -7.7435e-08 0 0 0 192.497 2.24483 5.34665 184.905 +1 1 3 180 2.18 323.15 0 0 -0.0512 0.0268553 0.0268553 0 0 0 561.462 -7.73381e-08 -7.73409e-08 0 0 0 192.586 2.3338 5.34665 184.905 +1 1 3 181 2.181 323.15 0 0 -0.05104 0.0267995 0.0267995 0 0 0 572.268 -7.7244e-08 -7.72468e-08 0 0 0 192.676 2.4245 5.34665 184.905 +1 1 3 182 2.182 323.15 0 0 -0.05088 0.0267436 0.0267436 0 0 0 583.075 -7.71499e-08 -7.71527e-08 0 0 0 192.769 2.51692 5.34665 184.905 +1 1 3 183 2.183 323.15 0 0 -0.05072 0.0266878 0.0266878 0 0 0 593.881 -7.70558e-08 -7.70585e-08 0 0 0 192.863 2.61108 5.34665 184.905 +1 1 3 184 2.184 323.15 0 0 -0.05056 0.0266319 0.0266319 0 0 0 604.687 -7.69617e-08 -7.69645e-08 0 0 0 192.959 2.70697 5.34665 184.905 +1 1 3 185 2.185 323.15 0 0 -0.0504 0.0265761 0.0265761 0 0 0 615.493 -7.68675e-08 -7.68703e-08 0 0 0 193.056 2.80458 5.34665 184.905 +1 1 3 186 2.186 323.15 0 0 -0.05024 0.0265203 0.0265203 0 0 0 626.299 -7.67734e-08 -7.67762e-08 0 0 0 193.156 2.90392 5.34665 184.905 +1 1 3 187 2.187 323.15 0 0 -0.05008 0.0264644 0.0264644 0 0 0 637.105 -7.66794e-08 -7.66822e-08 0 0 0 193.257 3.005 5.34665 184.905 +1 1 3 188 2.188 323.15 0 0 -0.04992 0.0264086 0.0264086 0 0 0 647.911 -7.65852e-08 -7.6588e-08 0 0 0 193.36 3.1078 5.34665 184.905 +1 1 3 189 2.189 323.15 0 0 -0.04976 0.0263527 0.0263527 0 0 0 658.717 -7.64911e-08 -7.64939e-08 0 0 0 193.464 3.21233 5.34665 184.905 +1 1 3 190 2.19 323.15 0 0 -0.0496 0.0262969 0.0262969 0 0 0 669.523 -7.63971e-08 -7.63998e-08 0 0 0 193.57 3.31859 5.34665 184.905 +1 1 3 191 2.191 323.15 0 0 -0.04944 0.0262411 0.0262411 0 0 0 680.329 -7.6303e-08 -7.63057e-08 0 0 0 193.678 3.42657 5.34665 184.905 +1 1 3 192 2.192 323.15 0 0 -0.04928 0.0261852 0.0261852 0 0 0 691.135 -7.62088e-08 -7.62115e-08 0 0 0 193.788 3.53629 5.34665 184.905 +1 1 3 193 2.193 323.15 0 0 -0.04912 0.0261294 0.0261294 0 0 0 701.941 -7.61147e-08 -7.61175e-08 0 0 0 193.9 3.64774 5.34665 184.905 +1 1 3 194 2.194 323.15 0 0 -0.04896 0.0260735 0.0260735 0 0 0 712.748 -7.60206e-08 -7.60234e-08 0 0 0 194.013 3.76091 5.34665 184.905 +1 1 3 195 2.195 323.15 0 0 -0.0488 0.0260177 0.0260177 0 0 0 723.554 -7.59265e-08 -7.59292e-08 0 0 0 194.128 3.87582 5.34665 184.905 +1 1 3 196 2.196 323.15 0 0 -0.04864 0.0259619 0.0259619 0 0 0 734.36 -7.58324e-08 -7.58352e-08 0 0 0 194.244 3.99245 5.34665 184.905 +1 1 3 197 2.197 323.15 0 0 -0.04848 0.025906 0.025906 0 0 0 745.166 -7.57383e-08 -7.57411e-08 0 0 0 194.363 4.11081 5.34665 184.905 +1 1 3 198 2.198 323.15 0 0 -0.04832 0.0258502 0.0258502 0 0 0 755.972 -7.56441e-08 -7.56469e-08 0 0 0 194.483 4.2309 5.34665 184.905 +1 1 3 199 2.199 323.15 0 0 -0.04816 0.0257943 0.0257943 0 0 0 766.778 -7.555e-08 -7.55528e-08 0 0 0 194.605 4.35272 5.34665 184.905 +1 1 3 200 2.2 323.15 0 0 -0.048 0.0257385 0.0257385 0 0 0 777.584 -7.5456e-08 -7.54587e-08 0 0 0 194.728 4.47627 5.34665 184.905 +1 1 3 201 2.201 323.15 0 0 -0.04784 0.0256827 0.0256827 0 0 0 788.39 -7.53618e-08 -7.53645e-08 0 0 0 194.853 4.60155 5.34665 184.905 +1 1 3 202 2.202 323.15 0 0 -0.04768 0.0256268 0.0256268 0 0 0 799.196 -7.52677e-08 -7.52705e-08 0 0 0 194.98 4.72856 5.34665 184.905 +1 1 3 203 2.203 323.15 0 0 -0.04752 0.025571 0.025571 0 0 0 810.002 -7.51736e-08 -7.51764e-08 0 0 0 195.109 4.85729 5.34665 184.905 +1 1 3 204 2.204 323.15 0 0 -0.04736 0.0255151 0.0255151 0 0 0 820.808 -7.50795e-08 -7.50823e-08 0 0 0 195.24 4.98776 5.34665 184.905 +1 1 3 205 2.205 323.15 0 0 -0.0472 0.0254593 0.0254593 0 0 0 831.614 -7.49854e-08 -7.49881e-08 0 0 0 195.372 5.11995 5.34665 184.905 +1 1 3 206 2.206 323.15 0 0 -0.04704 0.0254035 0.0254035 0 0 0 842.42 -7.48913e-08 -7.48941e-08 0 0 0 195.506 5.25387 5.34665 184.905 +1 1 3 207 2.207 323.15 0 0 -0.04688 0.0253476 0.0253476 0 0 0 853.227 -7.47972e-08 -7.48e-08 0 0 0 195.641 5.38953 5.34665 184.905 +1 1 3 208 2.208 323.15 0 0 -0.04672 0.0252918 0.0252918 0 0 0 864.033 -7.4703e-08 -7.47058e-08 0 0 0 195.779 5.52691 5.34665 184.905 +1 1 3 209 2.209 323.15 0 0 -0.04656 0.0252359 0.0252359 0 0 0 874.839 -7.4609e-08 -7.46117e-08 0 0 0 195.918 5.66602 5.34665 184.905 +1 1 3 210 2.21 323.15 0 0 -0.0464 0.0251801 0.0251801 0 0 0 885.645 -7.45149e-08 -7.45176e-08 0 0 0 196.059 5.80685 5.34665 184.905 +1 1 3 211 2.211 323.15 0 0 -0.04624 0.0251243 0.0251243 0 0 0 896.451 -7.44207e-08 -7.44235e-08 0 0 0 196.201 5.94942 5.34665 184.905 +1 1 3 212 2.212 323.15 0 0 -0.04608 0.0250684 0.0250684 0 0 0 907.257 -7.43266e-08 -7.43294e-08 0 0 0 196.346 6.09372 5.34665 184.905 +1 1 3 213 2.213 323.15 0 0 -0.04592 0.0250126 0.0250126 0 0 0 918.063 -7.42325e-08 -7.42353e-08 0 0 0 196.492 6.23974 5.34665 184.905 +1 1 3 214 2.214 323.15 0 0 -0.04576 0.0249567 0.0249567 0 0 0 928.869 -7.41383e-08 -7.41411e-08 0 0 0 196.639 6.3875 5.34665 184.905 +1 1 3 215 2.215 323.15 0 0 -0.0456 0.0249009 0.0249009 0 0 0 939.675 -7.40443e-08 -7.40471e-08 0 0 0 196.789 6.53698 5.34665 184.905 +1 1 3 216 2.216 323.15 0 0 -0.04544 0.0248451 0.0248451 0 0 0 950.481 -7.39502e-08 -7.3953e-08 0 0 0 196.94 6.6882 5.34665 184.905 +1 1 3 217 2.217 323.15 0 0 -0.04528 0.0247892 0.0247892 0 0 0 961.287 -7.38561e-08 -7.38589e-08 0 0 0 197.093 6.84114 5.34665 184.905 +1 1 3 218 2.218 323.15 0 0 -0.04512 0.0247334 0.0247334 0 0 0 972.093 -7.37619e-08 -7.37648e-08 0 0 0 197.248 6.99581 5.34665 184.905 +1 1 3 219 2.219 323.15 0 0 -0.04496 0.0246775 0.0246775 0 0 0 982.9 -7.36679e-08 -7.36706e-08 0 0 0 197.404 7.15221 5.34665 184.905 +1 1 3 220 2.22 323.15 0 0 -0.0448 0.0246217 0.0246217 0 0 0 993.706 -7.35738e-08 -7.35766e-08 0 0 0 197.562 7.31034 5.34665 184.905 +1 1 3 221 2.221 323.15 0 0 -0.04464 0.0245659 0.0245659 0 0 0 1004.51 -7.34796e-08 -7.34823e-08 0 0 0 197.722 7.47019 5.34665 184.905 +1 1 3 222 2.222 323.15 0 0 -0.04448 0.02451 0.02451 0 0 0 1015.32 -7.33855e-08 -7.33883e-08 0 0 0 197.884 7.63178 5.34665 184.905 +1 1 3 223 2.223 323.15 0 0 -0.04432 0.0244542 0.0244542 0 0 0 1026.12 -7.32915e-08 -7.32942e-08 0 0 0 198.047 7.79509 5.34665 184.905 +1 1 3 224 2.224 323.15 0 0 -0.04416 0.0243766 0.0243766 0 0 0 1027.2 8.93506e-08 8.93478e-08 0 0 0 198.211 7.81138 5.32097 185.079 +1 1 3 225 2.225 323.15 0 0 -0.044 0.0242981 0.0242981 0 0 0 1027.87 8.9445e-08 8.94423e-08 0 0 0 198.376 7.82157 5.29431 185.26 +1 1 3 226 2.226 323.15 0 0 -0.04384 0.0242196 0.0242196 0 0 0 1028.53 8.95392e-08 8.95365e-08 0 0 0 198.54 7.83176 5.26771 185.441 +1 1 3 227 2.227 323.15 0 0 -0.04368 0.0241411 0.0241411 0 0 0 1029.2 8.96336e-08 8.96308e-08 0 0 0 198.705 7.84196 5.24119 185.622 +1 1 3 228 2.228 323.15 0 0 -0.04352 0.0240626 0.0240626 0 0 0 1029.87 8.97276e-08 8.97247e-08 0 0 0 198.869 7.85216 5.21472 185.803 +1 1 3 229 2.229 323.15 0 0 -0.04336 0.0239841 0.0239841 0 0 0 1030.54 8.98216e-08 8.98188e-08 0 0 0 199.034 7.86237 5.18833 185.984 +1 1 3 230 2.23 323.15 0 0 -0.0432 0.0239056 0.0239056 0 0 0 1031.21 8.9916e-08 8.99133e-08 0 0 0 199.199 7.87258 5.162 186.165 +1 1 3 231 2.231 323.15 0 0 -0.04304 0.0238271 0.0238271 0 0 0 1031.88 9.00106e-08 9.00078e-08 0 0 0 199.364 7.8828 5.13574 186.346 +1 1 3 232 2.232 323.15 0 0 -0.04288 0.0237486 0.0237486 0 0 0 1032.55 9.01052e-08 9.01025e-08 0 0 0 199.529 7.89302 5.10955 186.527 +1 1 3 233 2.233 323.15 0 0 -0.04272 0.02367 0.02367 0 0 0 1033.22 9.01998e-08 9.0197e-08 0 0 0 199.695 7.90325 5.08342 186.708 +1 1 3 234 2.234 323.15 0 0 -0.04256 0.0235915 0.0235915 0 0 0 1033.89 9.0294e-08 9.0291e-08 0 0 0 199.86 7.91348 5.05736 186.889 +1 1 3 235 2.235 323.15 0 0 -0.0424 0.023513 0.023513 0 0 0 1034.55 9.03881e-08 9.03851e-08 0 0 0 200.026 7.92371 5.03137 187.07 +1 1 3 236 2.236 323.15 0 0 -0.04224 0.0234345 0.0234345 0 0 0 1035.22 9.04824e-08 9.04793e-08 0 0 0 200.191 7.93395 5.00545 187.252 +1 1 3 237 2.237 323.15 0 0 -0.04208 0.023356 0.023356 0 0 0 1035.89 9.05767e-08 9.05736e-08 0 0 0 200.357 7.9442 4.97959 187.433 +1 1 3 238 2.238 323.15 0 0 -0.04192 0.0232775 0.0232775 0 0 0 1036.56 9.06709e-08 9.06677e-08 0 0 0 200.523 7.95445 4.9538 187.614 +1 1 3 239 2.239 323.15 0 0 -0.04176 0.023199 0.023199 0 0 0 1037.23 9.07645e-08 9.07615e-08 0 0 0 200.688 7.96471 4.92808 187.796 +1 1 3 240 2.24 323.15 0 0 -0.0416 0.0231205 0.0231205 0 0 0 1037.9 9.08587e-08 9.08556e-08 0 0 0 200.854 7.97497 4.90243 187.977 +1 1 3 241 2.241 323.15 0 0 -0.04144 0.023042 0.023042 0 0 0 1038.56 9.0953e-08 9.09499e-08 0 0 0 201.021 7.98523 4.87684 188.159 +1 1 3 242 2.242 323.15 0 0 -0.04128 0.0229635 0.0229635 0 0 0 1039.23 9.10474e-08 9.10442e-08 0 0 0 201.187 7.9955 4.85132 188.34 +1 1 3 243 2.243 323.15 0 0 -0.04112 0.022885 0.022885 0 0 0 1039.9 9.11418e-08 9.11383e-08 0 0 0 201.353 8.00578 4.82587 188.522 +1 1 3 244 2.244 323.15 0 0 -0.04096 0.0228065 0.0228065 0 0 0 1040.57 9.12358e-08 9.12326e-08 0 0 0 201.52 8.01606 4.80048 188.703 +1 1 3 245 2.245 323.15 0 0 -0.0408 0.022728 0.022728 0 0 0 1041.23 9.13299e-08 9.13268e-08 0 0 0 201.686 8.02634 4.77517 188.885 +1 1 3 246 2.246 323.15 0 0 -0.04064 0.0226495 0.0226495 0 0 0 1041.9 9.14241e-08 9.14207e-08 0 0 0 201.853 8.03663 4.74992 189.066 +1 1 3 247 2.247 323.15 0 0 -0.04048 0.0225709 0.0225709 0 0 0 1042.57 9.15184e-08 9.1515e-08 0 0 0 202.02 8.04692 4.72473 189.248 +1 1 3 248 2.248 323.15 0 0 -0.04032 0.0224924 0.0224924 0 0 0 1043.23 9.16123e-08 9.16086e-08 0 0 0 202.186 8.05722 4.69962 189.43 +1 1 3 249 2.249 323.15 0 0 -0.04016 0.0224139 0.0224139 0 0 0 1043.9 9.17062e-08 9.17027e-08 0 0 0 202.353 8.06753 4.67457 189.611 +1 1 3 250 2.25 323.15 0 0 -0.04 0.0223354 0.0223354 0 0 0 1044.57 9.18005e-08 9.17971e-08 0 0 0 202.52 8.07783 4.64959 189.793 +1 1 3 251 2.251 323.15 0 0 -0.03984 0.0222569 0.0222569 0 0 0 1045.23 9.18946e-08 9.18909e-08 0 0 0 202.688 8.08815 4.62467 189.975 +1 1 3 252 2.252 323.15 0 0 -0.03968 0.0221784 0.0221784 0 0 0 1045.9 9.19889e-08 9.19853e-08 0 0 0 202.855 8.09847 4.59983 190.157 +1 1 3 253 2.253 323.15 0 0 -0.03952 0.0220999 0.0220999 0 0 0 1046.57 9.20833e-08 9.20797e-08 0 0 0 203.022 8.10879 4.57505 190.338 +1 1 3 254 2.254 323.15 0 0 -0.03936 0.0220214 0.0220214 0 0 0 1047.23 9.21783e-08 9.21742e-08 0 0 0 203.19 8.11912 4.55034 190.52 +1 1 3 255 2.255 323.15 0 0 -0.0392 0.0219429 0.0219429 0 0 0 1047.9 9.22727e-08 9.22685e-08 0 0 0 203.357 8.12945 4.52569 190.702 +1 1 3 256 2.256 323.15 0 0 -0.03904 0.0218644 0.0218644 0 0 0 1048.57 9.23666e-08 9.23622e-08 0 0 0 203.525 8.13979 4.50111 190.884 +1 1 3 257 2.257 323.15 0 0 -0.03888 0.0217858 0.0217858 0 0 0 1049.23 9.2461e-08 9.24565e-08 0 0 0 203.693 8.15013 4.4766 191.066 +1 1 3 258 2.258 323.15 0 0 -0.03872 0.0217073 0.0217073 0 0 0 1049.9 9.25554e-08 9.2551e-08 0 0 0 203.861 8.16048 4.45216 191.248 +1 1 3 259 2.259 323.15 0 0 -0.03856 0.0216288 0.0216288 0 0 0 1050.56 9.26494e-08 9.26448e-08 0 0 0 204.029 8.17083 4.42779 191.43 +1 1 3 260 2.26 323.15 0 0 -0.0384 0.0215503 0.0215503 0 0 0 1051.23 9.27436e-08 9.27391e-08 0 0 0 204.197 8.18119 4.40348 191.612 +1 1 3 261 2.261 323.15 0 0 -0.03824 0.0214718 0.0214718 0 0 0 1051.89 9.28376e-08 9.28332e-08 0 0 0 204.365 8.19155 4.37924 191.795 +1 1 3 262 2.262 323.15 0 0 -0.03808 0.0213933 0.0213933 0 0 0 1052.56 9.2932e-08 9.29277e-08 0 0 0 204.534 8.20192 4.35507 191.977 +1 1 3 263 2.263 323.15 0 0 -0.03792 0.0213148 0.0213148 0 0 0 1053.23 9.30263e-08 9.30221e-08 0 0 0 204.702 8.21229 4.33096 192.159 +1 1 3 264 2.264 323.15 0 0 -0.03776 0.0212363 0.0212363 0 0 0 1053.89 9.31211e-08 9.31167e-08 0 0 0 204.871 8.22267 4.30692 192.341 +1 1 3 265 2.265 323.15 0 0 -0.0376 0.0211578 0.0211578 0 0 0 1054.56 9.32155e-08 9.32111e-08 0 0 0 205.039 8.23305 4.28295 192.523 +1 1 3 266 2.266 323.15 0 0 -0.03744 0.0210792 0.0210792 0 0 0 1055.22 9.33093e-08 9.3305e-08 0 0 0 205.208 8.24343 4.25905 192.706 +1 1 3 267 2.267 323.15 0 0 -0.03728 0.0210007 0.0210007 0 0 0 1055.89 9.34033e-08 9.33988e-08 0 0 0 205.377 8.25382 4.23521 192.888 +1 1 3 268 2.268 323.15 0 0 -0.03712 0.0209222 0.0209222 0 0 0 1056.55 9.34978e-08 9.34932e-08 0 0 0 205.546 8.26422 4.21144 193.07 +1 1 3 269 2.269 323.15 0 0 -0.03696 0.0208437 0.0208437 0 0 0 1057.21 9.35919e-08 9.35874e-08 0 0 0 205.715 8.27462 4.18774 193.253 +1 1 3 270 2.27 323.15 0 0 -0.0368 0.0207652 0.0207652 0 0 0 1057.88 9.36859e-08 9.36815e-08 0 0 0 205.884 8.28503 4.16411 193.435 +1 1 3 271 2.271 323.15 0 0 -0.03664 0.0206867 0.0206867 0 0 0 1058.54 9.37802e-08 9.37759e-08 0 0 0 206.054 8.29544 4.14054 193.618 +1 1 3 272 2.272 323.15 0 0 -0.03648 0.0206082 0.0206082 0 0 0 1059.21 9.38746e-08 9.38702e-08 0 0 0 206.223 8.30585 4.11704 193.8 +1 1 3 273 2.273 323.15 0 0 -0.03632 0.0205296 0.0205296 0 0 0 1059.87 9.39689e-08 9.39646e-08 0 0 0 206.393 8.31627 4.09361 193.983 +1 1 3 274 2.274 323.15 0 0 -0.03616 0.0204511 0.0204511 0 0 0 1060.54 9.40627e-08 9.40586e-08 0 0 0 206.562 8.32669 4.07025 194.165 +1 1 3 275 2.275 323.15 0 0 -0.036 0.0203726 0.0203726 0 0 0 1061.2 9.41569e-08 9.41529e-08 0 0 0 206.732 8.33712 4.04695 194.348 +1 1 3 276 2.276 323.15 0 0 -0.03584 0.0202941 0.0202941 0 0 0 1061.86 9.42513e-08 9.42471e-08 0 0 0 206.902 8.34756 4.02372 194.531 +1 1 3 277 2.277 323.15 0 0 -0.03568 0.0202156 0.0202156 0 0 0 1062.53 9.43458e-08 9.43416e-08 0 0 0 207.072 8.358 4.00056 194.713 +1 1 3 278 2.278 323.15 0 0 -0.03552 0.0201371 0.0201371 0 0 0 1063.19 9.44398e-08 9.44358e-08 0 0 0 207.242 8.36844 3.97746 194.896 +1 1 3 279 2.279 323.15 0 0 -0.03536 0.0200585 0.0200585 0 0 0 1063.85 9.45342e-08 9.45302e-08 0 0 0 207.412 8.37889 3.95444 195.079 +1 1 3 280 2.28 323.15 0 0 -0.0352 0.01998 0.01998 0 0 0 1064.52 9.46284e-08 9.46242e-08 0 0 0 207.582 8.38934 3.93148 195.261 +1 1 3 281 2.281 323.15 0 0 -0.03504 0.0199015 0.0199015 0 0 0 1065.18 9.47227e-08 9.47187e-08 0 0 0 207.753 8.3998 3.90858 195.444 +1 1 3 282 2.282 323.15 0 0 -0.03488 0.019823 0.019823 0 0 0 1065.84 9.48168e-08 9.48129e-08 0 0 0 207.923 8.41027 3.88576 195.627 +1 1 3 283 2.283 323.15 0 0 -0.03472 0.0197445 0.0197445 0 0 0 1066.51 9.49114e-08 9.49076e-08 0 0 0 208.094 8.42073 3.863 195.81 +1 1 3 284 2.284 323.15 0 0 -0.03456 0.019666 0.019666 0 0 0 1067.17 9.5006e-08 9.50021e-08 0 0 0 208.264 8.43121 3.84031 195.993 +1 1 3 285 2.285 323.15 0 0 -0.0344 0.0195874 0.0195874 0 0 0 1067.83 9.50999e-08 9.50962e-08 0 0 0 208.435 8.44168 3.81769 196.176 +1 1 3 286 2.286 323.15 0 0 -0.03424 0.0195089 0.0195089 0 0 0 1068.5 9.5194e-08 9.51904e-08 0 0 0 208.606 8.45217 3.79513 196.359 +1 1 3 287 2.287 323.15 0 0 -0.03408 0.0194304 0.0194304 0 0 0 1069.16 9.52882e-08 9.52845e-08 0 0 0 208.777 8.46265 3.77265 196.542 +1 1 3 288 2.288 323.15 0 0 -0.03392 0.0193519 0.0193519 0 0 0 1069.82 9.53827e-08 9.53791e-08 0 0 0 208.948 8.47315 3.75023 196.725 +1 1 3 289 2.289 323.15 0 0 -0.03376 0.0192734 0.0192734 0 0 0 1070.48 9.54767e-08 9.54731e-08 0 0 0 209.12 8.48364 3.72787 196.908 +1 1 3 290 2.29 323.15 0 0 -0.0336 0.0191948 0.0191948 0 0 0 1071.15 9.55708e-08 9.55674e-08 0 0 0 209.291 8.49414 3.70559 197.091 +1 1 3 291 2.291 323.15 0 0 -0.03344 0.0191163 0.0191163 0 0 0 1071.81 9.5665e-08 9.56615e-08 0 0 0 209.462 8.50465 3.68337 197.274 +1 1 3 292 2.292 323.15 0 0 -0.03328 0.0190378 0.0190378 0 0 0 1072.47 9.5759e-08 9.57557e-08 0 0 0 209.634 8.51516 3.66122 197.457 +1 1 3 293 2.293 323.15 0 0 -0.03312 0.0189593 0.0189593 0 0 0 1073.13 9.58534e-08 9.58505e-08 0 0 0 209.805 8.52568 3.63913 197.641 +1 1 3 294 2.294 323.15 0 0 -0.03296 0.0188808 0.0188808 0 0 0 1073.79 9.59476e-08 9.59447e-08 0 0 0 209.977 8.5362 3.61712 197.824 +1 1 3 295 2.295 323.15 0 0 -0.0328 0.0188022 0.0188022 0 0 0 1074.46 9.60417e-08 9.60386e-08 0 0 0 210.149 8.54672 3.59517 198.007 +1 1 3 296 2.296 323.15 0 0 -0.03264 0.0187237 0.0187237 0 0 0 1075.12 9.61359e-08 9.61328e-08 0 0 0 210.321 8.55725 3.57329 198.19 +1 1 3 297 2.297 323.15 0 0 -0.03248 0.0186452 0.0186452 0 0 0 1075.78 9.62302e-08 9.62271e-08 0 0 0 210.493 8.56779 3.55148 198.374 +1 1 3 298 2.298 323.15 0 0 -0.03232 0.0185667 0.0185667 0 0 0 1076.44 9.63247e-08 9.63217e-08 0 0 0 210.665 8.57833 3.52973 198.557 +1 1 3 299 2.299 323.15 0 0 -0.03216 0.0184882 0.0184882 0 0 0 1077.1 9.64188e-08 9.64156e-08 0 0 0 210.838 8.58887 3.50805 198.741 +1 1 3 300 2.3 323.15 0 0 -0.032 0.0184096 0.0184096 0 0 0 1077.76 9.65129e-08 9.65098e-08 0 0 0 211.01 8.59942 3.48644 198.924 +1 1 3 301 2.301 323.15 0 0 -0.03184 0.0183311 0.0183311 0 0 0 1078.43 9.66072e-08 9.66039e-08 0 0 0 211.182 8.60998 3.4649 199.108 +1 1 3 302 2.302 323.15 0 0 -0.03168 0.0182526 0.0182526 0 0 0 1079.09 9.67014e-08 9.66981e-08 0 0 0 211.355 8.62054 3.44342 199.291 +1 1 3 303 2.303 323.15 0 0 -0.03152 0.0181741 0.0181741 0 0 0 1079.75 9.67961e-08 9.67926e-08 0 0 0 211.528 8.6311 3.42201 199.475 +1 1 3 304 2.304 323.15 0 0 -0.03136 0.0180956 0.0180956 0 0 0 1080.41 9.68905e-08 9.6887e-08 0 0 0 211.701 8.64167 3.40067 199.658 +1 1 3 305 2.305 323.15 0 0 -0.0312 0.018017 0.018017 0 0 0 1081.07 9.6985e-08 9.69816e-08 0 0 0 211.873 8.65224 3.3794 199.842 +1 1 3 306 2.306 323.15 0 0 -0.03104 0.0179385 0.0179385 0 0 0 1081.73 9.70793e-08 9.70758e-08 0 0 0 212.047 8.66282 3.35819 200.026 +1 1 3 307 2.307 323.15 0 0 -0.03088 0.01786 0.01786 0 0 0 1082.39 9.71732e-08 9.71695e-08 0 0 0 212.22 8.67341 3.33705 200.209 +1 1 3 308 2.308 323.15 0 0 -0.03072 0.0177815 0.0177815 0 0 0 1083.05 9.72671e-08 9.72637e-08 0 0 0 212.393 8.68399 3.31598 200.393 +1 1 3 309 2.309 323.15 0 0 -0.03056 0.0177029 0.0177029 0 0 0 1083.71 9.73612e-08 9.73578e-08 0 0 0 212.566 8.69459 3.29498 200.577 +1 1 3 310 2.31 323.15 0 0 -0.0304 0.0176244 0.0176244 0 0 0 1084.37 9.74557e-08 9.74523e-08 0 0 0 212.74 8.70518 3.27404 200.76 +1 1 3 311 2.311 323.15 0 0 -0.03024 0.0175459 0.0175459 0 0 0 1085.03 9.755e-08 9.75466e-08 0 0 0 212.913 8.71579 3.25317 200.944 +1 1 3 312 2.312 323.15 0 0 -0.03008 0.0174674 0.0174674 0 0 0 1085.69 9.76444e-08 9.7641e-08 0 0 0 213.087 8.72639 3.23237 201.128 +1 1 3 313 2.313 323.15 0 0 -0.02992 0.0173888 0.0173888 0 0 0 1086.35 9.77389e-08 9.77356e-08 0 0 0 213.261 8.737 3.21164 201.312 +1 1 3 314 2.314 323.15 0 0 -0.02976 0.0173103 0.0173103 0 0 0 1087.01 9.78336e-08 9.78302e-08 0 0 0 213.435 8.74762 3.19097 201.496 +1 1 3 315 2.315 323.15 0 0 -0.0296 0.0172318 0.0172318 0 0 0 1087.67 9.79277e-08 9.79242e-08 0 0 0 213.608 8.75824 3.17037 201.68 +1 1 3 316 2.316 323.15 0 0 -0.02944 0.0171533 0.0171533 0 0 0 1088.33 9.80212e-08 9.80182e-08 0 0 0 213.783 8.76887 3.14984 201.864 +1 1 3 317 2.317 323.15 0 0 -0.02928 0.0170747 0.0170747 0 0 0 1088.99 9.81152e-08 9.81122e-08 0 0 0 213.957 8.7795 3.12938 202.048 +1 1 3 318 2.318 323.15 0 0 -0.02912 0.0169962 0.0169962 0 0 0 1089.65 9.82093e-08 9.82065e-08 0 0 0 214.131 8.79014 3.10898 202.232 +1 1 3 319 2.319 323.15 0 0 -0.02896 0.0169177 0.0169177 0 0 0 1090.31 9.83032e-08 9.83006e-08 0 0 0 214.305 8.80078 3.08865 202.416 +1 1 3 320 2.32 323.15 0 0 -0.0288 0.0168392 0.0168392 0 0 0 1090.97 9.83976e-08 9.83952e-08 0 0 0 214.48 8.81142 3.06839 202.6 +1 1 3 321 2.321 323.15 0 0 -0.02864 0.0167606 0.0167606 0 0 0 1091.63 9.8492e-08 9.84895e-08 0 0 0 214.655 8.82207 3.0482 202.784 +1 1 3 322 2.322 323.15 0 0 -0.02848 0.0166821 0.0166821 0 0 0 1092.29 9.85858e-08 9.85835e-08 0 0 0 214.829 8.83273 3.02807 202.968 +1 1 3 323 2.323 323.15 0 0 -0.02832 0.0166036 0.0166036 0 0 0 1092.95 9.86799e-08 9.86776e-08 0 0 0 215.004 8.84339 3.00801 203.153 +1 1 3 324 2.324 323.15 0 0 -0.02816 0.0165251 0.0165251 0 0 0 1093.6 9.8774e-08 9.87718e-08 0 0 0 215.179 8.85405 2.98802 203.337 +1 1 3 325 2.325 323.15 0 0 -0.028 0.0164465 0.0164465 0 0 0 1094.26 9.88683e-08 9.88663e-08 0 0 0 215.354 8.86472 2.9681 203.521 +1 1 3 326 2.326 323.15 0 0 -0.02784 0.016368 0.016368 0 0 0 1094.92 9.89628e-08 9.89607e-08 0 0 0 215.529 8.87539 2.94824 203.706 +1 1 3 327 2.327 323.15 0 0 -0.02768 0.0162895 0.0162895 0 0 0 1095.58 9.9057e-08 9.9055e-08 0 0 0 215.704 8.88607 2.92845 203.89 +1 1 3 328 2.328 323.15 0 0 -0.02752 0.0162109 0.0162109 0 0 0 1096.24 9.91514e-08 9.91496e-08 0 0 0 215.88 8.89675 2.90873 204.074 +1 1 3 329 2.329 323.15 0 0 -0.02736 0.0161324 0.0161324 0 0 0 1096.9 9.92457e-08 9.92438e-08 0 0 0 216.055 8.90744 2.88908 204.259 +1 1 3 330 2.33 323.15 0 0 -0.0272 0.0160539 0.0160539 0 0 0 1097.55 9.93398e-08 9.93378e-08 0 0 0 216.231 8.91814 2.86949 204.443 +1 1 3 331 2.331 323.15 0 0 -0.02704 0.0159754 0.0159754 0 0 0 1098.21 9.94337e-08 9.94314e-08 0 0 0 216.406 8.92883 2.84997 204.628 +1 1 3 332 2.332 323.15 0 0 -0.02688 0.0158968 0.0158968 0 0 0 1098.87 9.9528e-08 9.95258e-08 0 0 0 216.582 8.93954 2.83052 204.812 +1 1 3 333 2.333 323.15 0 0 -0.02672 0.0158183 0.0158183 0 0 0 1099.53 9.96219e-08 9.96195e-08 0 0 0 216.758 8.95024 2.81114 204.997 +1 1 3 334 2.334 323.15 0 0 -0.02656 0.0157398 0.0157398 0 0 0 1100.19 9.97158e-08 9.97133e-08 0 0 0 216.934 8.96096 2.79182 205.181 +1 1 3 335 2.335 323.15 0 0 -0.0264 0.0156612 0.0156612 0 0 0 1100.84 9.9811e-08 9.9808e-08 0 0 0 217.11 8.97167 2.77257 205.366 +1 1 3 336 2.336 323.15 0 0 -0.02624 0.0155827 0.0155827 0 0 0 1101.5 9.99052e-08 9.99021e-08 0 0 0 217.286 8.98239 2.75339 205.551 +1 1 3 337 2.337 323.15 0 0 -0.02608 0.0155042 0.0155042 0 0 0 1102.16 9.99991e-08 9.99961e-08 0 0 0 217.463 8.99312 2.73428 205.735 +1 1 3 338 2.338 323.15 0 0 -0.02592 0.0154257 0.0154257 0 0 0 1102.82 1.00093e-07 1.0009e-07 0 0 0 217.639 9.00385 2.71523 205.92 +1 1 3 339 2.339 323.15 0 0 -0.02576 0.0153471 0.0153471 0 0 0 1103.47 1.00187e-07 1.00184e-07 0 0 0 217.816 9.01459 2.69625 206.105 +1 1 3 340 2.34 323.15 0 0 -0.0256 0.0152686 0.0152686 0 0 0 1104.13 1.00282e-07 1.00279e-07 0 0 0 217.992 9.02533 2.67734 206.289 +1 1 3 341 2.341 323.15 0 0 -0.02544 0.0151901 0.0151901 0 0 0 1104.79 1.00376e-07 1.00373e-07 0 0 0 218.169 9.03607 2.6585 206.474 +1 1 3 342 2.342 323.15 0 0 -0.02528 0.0151115 0.0151115 0 0 0 1105.44 1.0047e-07 1.00467e-07 0 0 0 218.346 9.04682 2.63973 206.659 +1 1 3 343 2.343 323.15 0 0 -0.02512 0.015033 0.015033 0 0 0 1106.1 1.00565e-07 1.00562e-07 0 0 0 218.523 9.05758 2.62102 206.844 +1 1 3 344 2.344 323.15 0 0 -0.02496 0.0149545 0.0149545 0 0 0 1106.76 1.00659e-07 1.00656e-07 0 0 0 218.7 9.06834 2.60238 207.029 +1 1 3 345 2.345 323.15 0 0 -0.0248 0.0148759 0.0148759 0 0 0 1107.42 1.00754e-07 1.0075e-07 0 0 0 218.877 9.0791 2.5838 207.214 +1 1 3 346 2.346 323.15 0 0 -0.02464 0.0147974 0.0147974 0 0 0 1108.07 1.00848e-07 1.00844e-07 0 0 0 219.054 9.08987 2.5653 207.399 +1 1 3 347 2.347 323.15 0 0 -0.02448 0.0147189 0.0147189 0 0 0 1108.73 1.00942e-07 1.00939e-07 0 0 0 219.231 9.10064 2.54686 207.584 +1 1 3 348 2.348 323.15 0 0 -0.02432 0.0146403 0.0146403 0 0 0 1109.38 1.01037e-07 1.01033e-07 0 0 0 219.409 9.11142 2.52849 207.769 +1 1 3 349 2.349 323.15 0 0 -0.02416 0.0145618 0.0145618 0 0 0 1110.04 1.0113e-07 1.01127e-07 0 0 0 219.586 9.12221 2.51019 207.954 +1 1 3 350 2.35 323.15 0 0 -0.024 0.0144833 0.0144833 0 0 0 1110.7 1.01225e-07 1.01221e-07 0 0 0 219.764 9.13299 2.49195 208.139 +1 1 3 351 2.351 323.15 0 0 -0.02384 0.0144047 0.0144047 0 0 0 1111.35 1.01319e-07 1.01315e-07 0 0 0 219.942 9.14379 2.47379 208.324 +1 1 3 352 2.352 323.15 0 0 -0.02368 0.0143262 0.0143262 0 0 0 1112.01 1.01414e-07 1.0141e-07 0 0 0 220.12 9.15458 2.45569 208.509 +1 1 3 353 2.353 323.15 0 0 -0.02352 0.0142477 0.0142477 0 0 0 1112.67 1.01508e-07 1.01504e-07 0 0 0 220.298 9.16539 2.43765 208.695 +1 1 3 354 2.354 323.15 0 0 -0.02336 0.0141691 0.0141691 0 0 0 1113.32 1.01602e-07 1.01598e-07 0 0 0 220.476 9.17619 2.41969 208.88 +1 1 3 355 2.355 323.15 0 0 -0.0232 0.0140906 0.0140906 0 0 0 1113.98 1.01696e-07 1.01692e-07 0 0 0 220.654 9.187 2.40179 209.065 +1 1 3 356 2.356 323.15 0 0 -0.02304 0.0140121 0.0140121 0 0 0 1114.63 1.0179e-07 1.01786e-07 0 0 0 220.832 9.19782 2.38396 209.25 +1 1 3 357 2.357 323.15 0 0 -0.02288 0.0139335 0.0139335 0 0 0 1115.29 1.01885e-07 1.01881e-07 0 0 0 221.011 9.20864 2.3662 209.436 +1 1 3 358 2.358 323.15 0 0 -0.02272 0.013855 0.013855 0 0 0 1115.94 1.01979e-07 1.01975e-07 0 0 0 221.189 9.21947 2.34851 209.621 +1 1 3 359 2.359 323.15 0 0 -0.02256 0.0137765 0.0137765 0 0 0 1116.6 1.02074e-07 1.02069e-07 0 0 0 221.368 9.2303 2.33088 209.806 +1 1 3 360 2.36 323.15 0 0 -0.0224 0.0136979 0.0136979 0 0 0 1117.25 1.02168e-07 1.02164e-07 0 0 0 221.546 9.24113 2.31332 209.992 +1 1 3 361 2.361 323.15 0 0 -0.02224 0.0136194 0.0136194 0 0 0 1117.91 1.02262e-07 1.02258e-07 0 0 0 221.725 9.25197 2.29583 210.177 +1 1 3 362 2.362 323.15 0 0 -0.02208 0.0135409 0.0135409 0 0 0 1118.56 1.02356e-07 1.02352e-07 0 0 0 221.904 9.26282 2.27841 210.363 +1 1 3 363 2.363 323.15 0 0 -0.02192 0.0134623 0.0134623 0 0 0 1119.22 1.0245e-07 1.02446e-07 0 0 0 222.083 9.27367 2.26105 210.548 +1 1 3 364 2.364 323.15 0 0 -0.02176 0.0133838 0.0133838 0 0 0 1119.87 1.02544e-07 1.0254e-07 0 0 0 222.262 9.28452 2.24376 210.734 +1 1 3 365 2.365 323.15 0 0 -0.0216 0.0133053 0.0133053 0 0 0 1120.53 1.02639e-07 1.02635e-07 0 0 0 222.441 9.29538 2.22654 210.92 +1 1 3 366 2.366 323.15 0 0 -0.02144 0.0132267 0.0132267 0 0 0 1121.18 1.02733e-07 1.02729e-07 0 0 0 222.621 9.30625 2.20939 211.105 +1 1 3 367 2.367 323.15 0 0 -0.02128 0.0131482 0.0131482 0 0 0 1121.84 1.02827e-07 1.02824e-07 0 0 0 222.8 9.31711 2.1923 211.291 +1 1 3 368 2.368 323.15 0 0 -0.02112 0.0130696 0.0130696 0 0 0 1122.49 1.02921e-07 1.02918e-07 0 0 0 222.98 9.32799 2.17528 211.477 +1 1 3 369 2.369 323.15 0 0 -0.02096 0.0129911 0.0129911 0 0 0 1123.15 1.03015e-07 1.03012e-07 0 0 0 223.159 9.33887 2.15833 211.662 +1 1 3 370 2.37 323.15 0 0 -0.0208 0.0129126 0.0129126 0 0 0 1123.8 1.0311e-07 1.03106e-07 0 0 0 223.339 9.34975 2.14145 211.848 +1 1 3 371 2.371 323.15 0 0 -0.02064 0.012834 0.012834 0 0 0 1124.45 1.03204e-07 1.032e-07 0 0 0 223.519 9.36064 2.12463 212.034 +1 1 3 372 2.372 323.15 0 0 -0.02048 0.0127555 0.0127555 0 0 0 1125.11 1.03298e-07 1.03294e-07 0 0 0 223.699 9.37153 2.10789 212.22 +1 1 3 373 2.373 323.15 0 0 -0.02032 0.012677 0.012677 0 0 0 1125.76 1.03393e-07 1.03389e-07 0 0 0 223.879 9.38243 2.09121 212.405 +1 1 3 374 2.374 323.15 0 0 -0.02016 0.0125984 0.0125984 0 0 0 1126.42 1.03488e-07 1.03484e-07 0 0 0 224.059 9.39333 2.07459 212.591 +1 1 3 375 2.375 323.15 0 0 -0.02 0.0125199 0.0125199 0 0 0 1127.07 1.03582e-07 1.03579e-07 0 0 0 224.24 9.40423 2.05805 212.777 +1 1 3 376 2.376 323.15 0 0 -0.01984 0.0124413 0.0124413 0 0 0 1127.72 1.03676e-07 1.03673e-07 0 0 0 224.42 9.41514 2.04157 212.963 +1 1 3 377 2.377 323.15 0 0 -0.01968 0.0123628 0.0123628 0 0 0 1128.38 1.03771e-07 1.03767e-07 0 0 0 224.6 9.42606 2.02516 213.149 +1 1 3 378 2.378 323.15 0 0 -0.01952 0.0122843 0.0122843 0 0 0 1129.03 1.03865e-07 1.03861e-07 0 0 0 224.781 9.43698 2.00882 213.335 +1 1 3 379 2.379 323.15 0 0 -0.01936 0.0122057 0.0122057 0 0 0 1129.68 1.03959e-07 1.03956e-07 0 0 0 224.962 9.44791 1.99255 213.521 +1 1 3 380 2.38 323.15 0 0 -0.0192 0.0121272 0.0121272 0 0 0 1130.34 1.04054e-07 1.0405e-07 0 0 0 225.142 9.45884 1.97634 213.707 +1 1 3 381 2.381 323.15 0 0 -0.01904 0.0120486 0.0120486 0 0 0 1130.99 1.04148e-07 1.04144e-07 0 0 0 225.323 9.46977 1.9602 213.893 +1 1 3 382 2.382 323.15 0 0 -0.01888 0.0119701 0.0119701 0 0 0 1131.64 1.04242e-07 1.04239e-07 0 0 0 225.504 9.48071 1.94413 214.08 +1 1 3 383 2.383 323.15 0 0 -0.01872 0.0118916 0.0118916 0 0 0 1132.3 1.04336e-07 1.04333e-07 0 0 0 225.686 9.49165 1.92812 214.266 +1 1 3 384 2.384 323.15 0 0 -0.01856 0.011813 0.011813 0 0 0 1132.95 1.04431e-07 1.04427e-07 0 0 0 225.867 9.5026 1.91219 214.452 +1 1 3 385 2.385 323.15 0 0 -0.0184 0.0117345 0.0117345 0 0 0 1133.6 1.04525e-07 1.04521e-07 0 0 0 226.048 9.51356 1.89632 214.638 +1 1 3 386 2.386 323.15 0 0 -0.01824 0.0116559 0.0116559 0 0 0 1134.25 1.04619e-07 1.04615e-07 0 0 0 226.23 9.52451 1.88052 214.824 +1 1 3 387 2.387 323.15 0 0 -0.01808 0.0115774 0.0115774 0 0 0 1134.91 1.04713e-07 1.0471e-07 0 0 0 226.411 9.53548 1.86479 215.011 +1 1 3 388 2.388 323.15 0 0 -0.01792 0.0114989 0.0114989 0 0 0 1135.56 1.04808e-07 1.04804e-07 0 0 0 226.593 9.54645 1.84912 215.197 +1 1 3 389 2.389 323.15 0 0 -0.01776 0.0114203 0.0114203 0 0 0 1136.21 1.04902e-07 1.04899e-07 0 0 0 226.774 9.55742 1.83352 215.383 +1 1 3 390 2.39 323.15 0 0 -0.0176 0.0113418 0.0113418 0 0 0 1136.86 1.04996e-07 1.04993e-07 0 0 0 226.956 9.56839 1.81799 215.57 +1 1 3 391 2.391 323.15 0 0 -0.01744 0.0112632 0.0112632 0 0 0 1137.52 1.05091e-07 1.05087e-07 0 0 0 227.138 9.57938 1.80253 215.756 +1 1 3 392 2.392 323.15 0 0 -0.01728 0.0111847 0.0111847 0 0 0 1138.17 1.05185e-07 1.05182e-07 0 0 0 227.32 9.59036 1.78714 215.943 +1 1 3 393 2.393 323.15 0 0 -0.01712 0.0111062 0.0111062 0 0 0 1138.82 1.05279e-07 1.05276e-07 0 0 0 227.502 9.60135 1.77181 216.129 +1 1 3 394 2.394 323.15 0 0 -0.01696 0.0110276 0.0110276 0 0 0 1139.47 1.05374e-07 1.0537e-07 0 0 0 227.685 9.61235 1.75655 216.316 +1 1 3 395 2.395 323.15 0 0 -0.0168 0.0109491 0.0109491 0 0 0 1140.12 1.05468e-07 1.05464e-07 0 0 0 227.867 9.62335 1.74136 216.502 +1 1 3 396 2.396 323.15 0 0 -0.01664 0.0108705 0.0108705 0 0 0 1140.78 1.05562e-07 1.05559e-07 0 0 0 228.05 9.63436 1.72623 216.689 +1 1 3 397 2.397 323.15 0 0 -0.01648 0.010792 0.010792 0 0 0 1141.43 1.05656e-07 1.05653e-07 0 0 0 228.232 9.64537 1.71118 216.876 +1 1 3 398 2.398 323.15 0 0 -0.01632 0.0107134 0.0107134 0 0 0 1142.08 1.0575e-07 1.05747e-07 0 0 0 228.415 9.65638 1.69619 217.062 +1 1 3 399 2.399 323.15 0 0 -0.01616 0.0106349 0.0106349 0 0 0 1142.73 1.05844e-07 1.05841e-07 0 0 0 228.598 9.6674 1.68127 217.249 +1 1 3 400 2.4 323.15 0 0 -0.016 0.0105563 0.0105563 0 0 0 1143.38 1.05938e-07 1.05934e-07 0 0 0 228.78 9.67842 1.66641 217.436 +1 1 3 401 2.401 323.15 0 0 -0.01584 0.0104778 0.0104778 0 0 0 1144.03 1.06032e-07 1.06029e-07 0 0 0 228.963 9.68945 1.65163 217.622 +1 1 3 402 2.402 323.15 0 0 -0.01568 0.0103993 0.0103993 0 0 0 1144.68 1.06126e-07 1.06123e-07 0 0 0 229.147 9.70049 1.63691 217.809 +1 1 3 403 2.403 323.15 0 0 -0.01552 0.0103207 0.0103207 0 0 0 1145.34 1.06221e-07 1.06217e-07 0 0 0 229.33 9.71153 1.62226 217.996 +1 1 3 404 2.404 323.15 0 0 -0.01536 0.0102422 0.0102422 0 0 0 1145.99 1.06315e-07 1.06311e-07 0 0 0 229.513 9.72257 1.60768 218.183 +1 1 3 405 2.405 323.15 0 0 -0.0152 0.0101636 0.0101636 0 0 0 1146.64 1.06409e-07 1.06405e-07 0 0 0 229.696 9.73362 1.59316 218.37 +1 1 3 406 2.406 323.15 0 0 -0.01504 0.0100851 0.0100851 0 0 0 1147.29 1.06503e-07 1.06499e-07 0 0 0 229.88 9.74467 1.57871 218.557 +1 1 3 407 2.407 323.15 0 0 -0.01488 0.0100065 0.0100065 0 0 0 1147.94 1.06597e-07 1.06594e-07 0 0 0 230.064 9.75573 1.56434 218.744 +1 1 3 408 2.408 323.15 0 0 -0.01472 0.00992799 0.00992799 0 0 0 1148.59 1.06691e-07 1.06688e-07 0 0 0 230.247 9.76679 1.55002 218.931 +1 1 3 409 2.409 323.15 0 0 -0.01456 0.00984945 0.00984945 0 0 0 1149.24 1.06786e-07 1.06782e-07 0 0 0 230.431 9.77785 1.53578 219.118 +1 1 3 410 2.41 323.15 0 0 -0.0144 0.0097709 0.0097709 0 0 0 1149.89 1.0688e-07 1.06876e-07 0 0 0 230.615 9.78892 1.5216 219.305 +1 1 3 411 2.411 323.15 0 0 -0.01424 0.00969235 0.00969235 0 0 0 1150.54 1.06975e-07 1.06971e-07 0 0 0 230.799 9.8 1.50749 219.492 +1 1 3 412 2.412 323.15 0 0 -0.01408 0.00961381 0.00961381 0 0 0 1151.19 1.07069e-07 1.07065e-07 0 0 0 230.983 9.81108 1.49345 219.679 +1 1 3 413 2.413 323.15 0 0 -0.01392 0.00953526 0.00953526 0 0 0 1151.84 1.07163e-07 1.07159e-07 0 0 0 231.167 9.82217 1.47948 219.866 +1 1 3 414 2.414 323.15 0 0 -0.01376 0.00945672 0.00945672 0 0 0 1152.49 1.07257e-07 1.07253e-07 0 0 0 231.352 9.83326 1.46557 220.053 +1 1 3 415 2.415 323.15 0 0 -0.0136 0.00937817 0.00937817 0 0 0 1153.14 1.07351e-07 1.07347e-07 0 0 0 231.536 9.84435 1.45174 220.24 +1 1 3 416 2.416 323.15 0 0 -0.01344 0.00929962 0.00929962 0 0 0 1153.79 1.07446e-07 1.07442e-07 0 0 0 231.721 9.85545 1.43797 220.427 +1 1 3 417 2.417 323.15 0 0 -0.01328 0.00922107 0.00922107 0 0 0 1154.44 1.0754e-07 1.07536e-07 0 0 0 231.906 9.86655 1.42426 220.615 +1 1 3 418 2.418 323.15 0 0 -0.01312 0.00914253 0.00914253 0 0 0 1155.09 1.07635e-07 1.07631e-07 0 0 0 232.09 9.87766 1.41063 220.802 +1 1 3 419 2.419 323.15 0 0 -0.01296 0.00906398 0.00906398 0 0 0 1155.74 1.07729e-07 1.07725e-07 0 0 0 232.275 9.88878 1.39706 220.989 +1 1 3 420 2.42 323.15 0 0 -0.0128 0.00898543 0.00898543 0 0 0 1156.39 1.07823e-07 1.07819e-07 0 0 0 232.46 9.89989 1.38356 221.177 +1 1 3 421 2.421 323.15 0 0 -0.01264 0.00890688 0.00890688 0 0 0 1157.04 1.07917e-07 1.07913e-07 0 0 0 232.645 9.91102 1.37013 221.364 +1 1 3 422 2.422 323.15 0 0 -0.01248 0.00882834 0.00882834 0 0 0 1157.69 1.08011e-07 1.08008e-07 0 0 0 232.83 9.92214 1.35677 221.551 +1 1 3 423 2.423 323.15 0 0 -0.01232 0.00874979 0.00874979 0 0 0 1158.34 1.08105e-07 1.08102e-07 0 0 0 233.016 9.93328 1.34347 221.739 +1 1 3 424 2.424 323.15 0 0 -0.01216 0.00867124 0.00867124 0 0 0 1158.99 1.08199e-07 1.08196e-07 0 0 0 233.201 9.94441 1.33024 221.926 +1 1 3 425 2.425 323.15 0 0 -0.012 0.00859269 0.00859269 0 0 0 1159.64 1.08293e-07 1.0829e-07 0 0 0 233.387 9.95555 1.31708 222.114 +1 1 3 426 2.426 323.15 0 0 -0.01184 0.00851414 0.00851414 0 0 0 1160.29 1.08388e-07 1.08384e-07 0 0 0 233.572 9.9667 1.30399 222.301 +1 1 3 427 2.427 323.15 0 0 -0.01168 0.00843559 0.00843559 0 0 0 1160.93 1.08482e-07 1.08478e-07 0 0 0 233.758 9.97785 1.29096 222.489 +1 1 3 428 2.428 323.15 0 0 -0.01152 0.00835704 0.00835704 0 0 0 1161.58 1.08576e-07 1.08572e-07 0 0 0 233.944 9.98901 1.27801 222.677 +1 1 3 429 2.429 323.15 0 0 -0.01136 0.00827849 0.00827849 0 0 0 1162.23 1.0867e-07 1.08667e-07 0 0 0 234.13 10.0002 1.26512 222.864 +1 1 3 430 2.43 323.15 0 0 -0.0112 0.00819994 0.00819994 0 0 0 1162.88 1.08764e-07 1.08761e-07 0 0 0 234.316 10.0113 1.25229 223.052 +1 1 3 431 2.431 323.15 0 0 -0.01104 0.00812139 0.00812139 0 0 0 1163.53 1.08858e-07 1.08855e-07 0 0 0 234.502 10.0225 1.23954 223.24 +1 1 3 432 2.432 323.15 0 0 -0.01088 0.00804284 0.00804284 0 0 0 1164.18 1.08953e-07 1.08949e-07 0 0 0 234.688 10.0337 1.22685 223.427 +1 1 3 433 2.433 323.15 0 0 -0.01072 0.00796429 0.00796429 0 0 0 1164.83 1.09047e-07 1.09043e-07 0 0 0 234.874 10.0449 1.21424 223.615 +1 1 3 434 2.434 323.15 0 0 -0.01056 0.00788574 0.00788574 0 0 0 1165.47 1.09141e-07 1.09137e-07 0 0 0 235.061 10.056 1.20168 223.803 +1 1 3 435 2.435 323.15 0 0 -0.0104 0.00780719 0.00780719 0 0 0 1166.12 1.09235e-07 1.09232e-07 0 0 0 235.247 10.0672 1.1892 223.991 +1 1 3 436 2.436 323.15 0 0 -0.01024 0.00772864 0.00772864 0 0 0 1166.77 1.09329e-07 1.09326e-07 0 0 0 235.434 10.0784 1.17679 224.179 +1 1 3 437 2.437 323.15 0 0 -0.01008 0.00765009 0.00765009 0 0 0 1167.42 1.09424e-07 1.0942e-07 0 0 0 235.62 10.0896 1.16444 224.366 +1 1 3 438 2.438 323.15 0 0 -0.00992 0.00757154 0.00757154 0 0 0 1168.07 1.09518e-07 1.09514e-07 0 0 0 235.807 10.1008 1.15216 224.554 +1 1 3 439 2.439 323.15 0 0 -0.00976 0.00749299 0.00749299 0 0 0 1168.71 1.09612e-07 1.09608e-07 0 0 0 235.994 10.112 1.13995 224.742 +1 1 3 440 2.44 323.15 0 0 -0.0096 0.00741443 0.00741443 0 0 0 1169.36 1.09706e-07 1.09702e-07 0 0 0 236.181 10.1232 1.1278 224.93 +1 1 3 441 2.441 323.15 0 0 -0.00944 0.00733588 0.00733588 0 0 0 1170.01 1.09801e-07 1.09797e-07 0 0 0 236.368 10.1345 1.11572 225.118 +1 1 3 442 2.442 323.15 0 0 -0.00928 0.00725733 0.00725733 0 0 0 1170.66 1.09895e-07 1.09891e-07 0 0 0 236.556 10.1457 1.10372 225.306 +1 1 3 443 2.443 323.15 0 0 -0.00912 0.00717878 0.00717878 0 0 0 1171.3 1.09989e-07 1.09985e-07 0 0 0 236.743 10.1569 1.09177 225.494 +1 1 3 444 2.444 323.15 0 0 -0.00896 0.00710022 0.00710022 0 0 0 1171.95 1.10083e-07 1.10079e-07 0 0 0 236.931 10.1681 1.0799 225.683 +1 1 3 445 2.445 323.15 0 0 -0.0088 0.00702167 0.00702167 0 0 0 1172.6 1.10177e-07 1.10173e-07 0 0 0 237.118 10.1794 1.0681 225.871 +1 1 3 446 2.446 323.15 0 0 -0.00864 0.00694312 0.00694312 0 0 0 1173.25 1.10271e-07 1.10267e-07 0 0 0 237.306 10.1906 1.05636 226.059 +1 1 3 447 2.447 323.15 0 0 -0.00848 0.00686456 0.00686456 0 0 0 1173.89 1.10365e-07 1.10362e-07 0 0 0 237.494 10.2018 1.04469 226.247 +1 1 3 448 2.448 323.15 0 0 -0.00832 0.00678601 0.00678601 0 0 0 1174.54 1.10459e-07 1.10456e-07 0 0 0 237.681 10.2131 1.03309 226.435 +1 1 3 449 2.449 323.15 0 0 -0.00816 0.00670746 0.00670746 0 0 0 1175.19 1.10554e-07 1.1055e-07 0 0 0 237.869 10.2244 1.02155 226.623 +1 1 3 450 2.45 323.15 0 0 -0.008 0.0066289 0.0066289 0 0 0 1175.83 1.10648e-07 1.10644e-07 0 0 0 238.057 10.2356 1.01008 226.812 +1 1 3 451 2.451 323.15 0 0 -0.00784 0.00655035 0.00655035 0 0 0 1176.48 1.10742e-07 1.10738e-07 0 0 0 238.246 10.2469 0.998685 227 +1 1 3 452 2.452 323.15 0 0 -0.00768 0.0064718 0.0064718 0 0 0 1177.13 1.10836e-07 1.10832e-07 0 0 0 238.434 10.2581 0.987354 227.188 +1 1 3 453 2.453 323.15 0 0 -0.00752 0.00639324 0.00639324 0 0 0 1177.77 1.10931e-07 1.10927e-07 0 0 0 238.622 10.2694 0.976091 227.377 +1 1 3 454 2.454 323.15 0 0 -0.00736 0.00631469 0.00631469 0 0 0 1178.42 1.11025e-07 1.11021e-07 0 0 0 238.811 10.2807 0.964895 227.565 +1 1 3 455 2.455 323.15 0 0 -0.0072 0.00623613 0.00623613 0 0 0 1179.07 1.11119e-07 1.11115e-07 0 0 0 238.999 10.292 0.953768 227.754 +1 1 3 456 2.456 323.15 0 0 -0.00704 0.00615758 0.00615758 0 0 0 1179.71 1.11214e-07 1.1121e-07 0 0 0 239.188 10.3033 0.942708 227.942 +1 1 3 457 2.457 323.15 0 0 -0.00688 0.00607902 0.00607902 0 0 0 1180.36 1.11308e-07 1.11304e-07 0 0 0 239.377 10.3145 0.931715 228.131 +1 1 3 458 2.458 323.15 0 0 -0.00672 0.00600047 0.00600047 0 0 0 1181.01 1.11402e-07 1.11398e-07 0 0 0 239.566 10.3258 0.920791 228.319 +1 1 3 459 2.459 323.15 0 0 -0.00656 0.00592191 0.00592191 0 0 0 1181.65 1.11496e-07 1.11492e-07 0 0 0 239.755 10.3371 0.909934 228.508 +1 1 3 460 2.46 323.15 0 0 -0.0064 0.00584335 0.00584335 0 0 0 1182.3 1.1159e-07 1.11586e-07 0 0 0 239.944 10.3484 0.899146 228.696 +1 1 3 461 2.461 323.15 0 0 -0.00624 0.0057648 0.0057648 0 0 0 1182.94 1.11685e-07 1.11681e-07 0 0 0 240.133 10.3598 0.888425 228.885 +1 1 3 462 2.462 323.15 0 0 -0.00608 0.00568624 0.00568624 0 0 0 1183.59 1.11779e-07 1.11776e-07 0 0 0 240.323 10.3711 0.877771 229.074 +1 1 3 463 2.463 323.15 0 0 -0.00592 0.00560769 0.00560769 0 0 0 1184.23 1.11874e-07 1.1187e-07 0 0 0 240.512 10.3824 0.867186 229.262 +1 1 3 464 2.464 323.15 0 0 -0.00576 0.00552913 0.00552913 0 0 0 1184.88 1.11968e-07 1.11964e-07 0 0 0 240.701 10.3937 0.856668 229.451 +1 1 3 465 2.465 323.15 0 0 -0.0056 0.00545057 0.00545057 0 0 0 1185.53 1.12062e-07 1.12058e-07 0 0 0 240.891 10.405 0.846219 229.64 +1 1 3 466 2.466 323.15 0 0 -0.00544 0.00537202 0.00537202 0 0 0 1186.17 1.12156e-07 1.12152e-07 0 0 0 241.081 10.4164 0.835837 229.829 +1 1 3 467 2.467 323.15 0 0 -0.00528 0.00529346 0.00529346 0 0 0 1186.82 1.1225e-07 1.12247e-07 0 0 0 241.271 10.4277 0.825523 230.017 +1 1 3 468 2.468 323.15 0 0 -0.00512 0.0052149 0.0052149 0 0 0 1187.46 1.12345e-07 1.12341e-07 0 0 0 241.461 10.4391 0.815276 230.206 +1 1 3 469 2.469 323.15 0 0 -0.00496 0.00513634 0.00513634 0 0 0 1188.11 1.12439e-07 1.12435e-07 0 0 0 241.651 10.4504 0.805098 230.395 +1 1 3 470 2.47 323.15 0 0 -0.0048 0.00505779 0.00505779 0 0 0 1188.75 1.12534e-07 1.1253e-07 0 0 0 241.841 10.4618 0.794987 230.584 +1 1 3 471 2.471 323.15 0 0 -0.00464 0.00497923 0.00497923 0 0 0 1189.4 1.12628e-07 1.12624e-07 0 0 0 242.031 10.4731 0.784944 230.773 +1 1 3 472 2.472 323.15 0 0 -0.00448 0.00490067 0.00490067 0 0 0 1190.04 1.12722e-07 1.12718e-07 0 0 0 242.221 10.4845 0.774969 230.962 +1 1 3 473 2.473 323.15 0 0 -0.00432 0.00482211 0.00482211 0 0 0 1190.69 1.12816e-07 1.12812e-07 0 0 0 242.412 10.4958 0.765062 231.151 +1 1 3 474 2.474 323.15 0 0 -0.00416 0.00474355 0.00474355 0 0 0 1191.33 1.1291e-07 1.12906e-07 0 0 0 242.602 10.5072 0.755222 231.34 +1 1 3 475 2.475 323.15 0 0 -0.004 0.00466499 0.00466499 0 0 0 1191.98 1.13005e-07 1.13001e-07 0 0 0 242.793 10.5186 0.745451 231.529 +1 1 3 476 2.476 323.15 0 0 -0.00384 0.00458644 0.00458644 0 0 0 1192.62 1.13099e-07 1.13095e-07 0 0 0 242.984 10.53 0.735747 231.718 +1 1 3 477 2.477 323.15 0 0 -0.00368 0.00450788 0.00450788 0 0 0 1193.27 1.13193e-07 1.13189e-07 0 0 0 243.175 10.5413 0.726111 231.907 +1 1 3 478 2.478 323.15 0 0 -0.00352 0.00442932 0.00442932 0 0 0 1193.91 1.13288e-07 1.13284e-07 0 0 0 243.366 10.5527 0.716543 232.096 +1 1 3 479 2.479 323.15 0 0 -0.00336 0.00435076 0.00435076 0 0 0 1194.55 1.13382e-07 1.13378e-07 0 0 0 243.557 10.5641 0.707043 232.286 +1 1 3 480 2.48 323.15 0 0 -0.0032 0.0042722 0.0042722 0 0 0 1195.2 1.13477e-07 1.13473e-07 0 0 0 243.748 10.5755 0.69761 232.475 +1 1 3 481 2.481 323.15 0 0 -0.00304 0.00419364 0.00419364 0 0 0 1195.84 1.13571e-07 1.13567e-07 0 0 0 243.939 10.5869 0.688246 232.664 +1 1 3 482 2.482 323.15 0 0 -0.00288 0.00411508 0.00411508 0 0 0 1196.49 1.13665e-07 1.13661e-07 0 0 0 244.131 10.5983 0.678949 232.853 +1 1 3 483 2.483 323.15 0 0 -0.00272 0.00403652 0.00403652 0 0 0 1197.13 1.1376e-07 1.13755e-07 0 0 0 244.322 10.6097 0.66972 233.043 +1 1 3 484 2.484 323.15 0 0 -0.00256 0.00395796 0.00395796 0 0 0 1197.77 1.13853e-07 1.13849e-07 0 0 0 244.514 10.6212 0.660559 233.232 +1 1 3 485 2.485 323.15 0 0 -0.0024 0.0038794 0.0038794 0 0 0 1198.42 1.13948e-07 1.13944e-07 0 0 0 244.705 10.6326 0.651466 233.421 +1 1 3 486 2.486 323.15 0 0 -0.00224 0.00380084 0.00380084 0 0 0 1199.06 1.14043e-07 1.14038e-07 0 0 0 244.897 10.644 0.642441 233.611 +1 1 3 487 2.487 323.15 0 0 -0.00208 0.00372228 0.00372228 0 0 0 1199.71 1.14137e-07 1.14133e-07 0 0 0 245.089 10.6554 0.633483 233.8 +1 1 3 488 2.488 323.15 0 0 -0.00192 0.00364371 0.00364371 0 0 0 1200.35 1.14231e-07 1.14227e-07 0 0 0 245.281 10.6669 0.624593 233.99 +1 1 3 489 2.489 323.15 0 0 -0.00176 0.00356515 0.00356515 0 0 0 1200.99 1.14326e-07 1.14321e-07 0 0 0 245.473 10.6783 0.615772 234.179 +1 1 3 490 2.49 323.15 0 0 -0.0016 0.00348659 0.00348659 0 0 0 1201.64 1.1442e-07 1.14415e-07 0 0 0 245.665 10.6898 0.607018 234.369 +1 1 3 491 2.491 323.15 0 0 -0.00144 0.00340803 0.00340803 0 0 0 1202.28 1.14514e-07 1.1451e-07 0 0 0 245.858 10.7012 0.598332 234.558 +1 1 3 492 2.492 323.15 0 0 -0.00128 0.00332947 0.00332947 0 0 0 1202.92 1.14608e-07 1.14604e-07 0 0 0 246.05 10.7127 0.589713 234.748 +1 1 3 493 2.493 323.15 0 0 -0.00112 0.00325091 0.00325091 0 0 0 1203.57 1.14702e-07 1.14698e-07 0 0 0 246.243 10.7241 0.581163 234.937 +1 1 3 494 2.494 323.15 0 0 -0.00096 0.00317234 0.00317234 0 0 0 1204.21 1.14797e-07 1.14792e-07 0 0 0 246.435 10.7356 0.57268 235.127 +1 1 3 495 2.495 323.15 0 0 -0.0008 0.00309378 0.00309378 0 0 0 1204.85 1.14891e-07 1.14886e-07 0 0 0 246.628 10.747 0.564266 235.317 +1 1 3 496 2.496 323.15 0 0 -0.00064 0.00301522 0.00301522 0 0 0 1205.49 1.14985e-07 1.1498e-07 0 0 0 246.821 10.7585 0.555919 235.506 +1 1 3 497 2.497 323.15 0 0 -0.00048 0.00293666 0.00293666 0 0 0 1206.14 1.15079e-07 1.15075e-07 0 0 0 247.014 10.77 0.54764 235.696 +1 1 3 498 2.498 323.15 0 0 -0.00032 0.00285809 0.00285809 0 0 0 1206.78 1.15174e-07 1.15169e-07 0 0 0 247.207 10.7815 0.539429 235.886 +1 1 3 499 2.499 323.15 0 0 -0.00016 0.00277953 0.00277953 0 0 0 1207.42 1.15268e-07 1.15263e-07 0 0 0 247.4 10.793 0.531286 236.076 +1 1 3 500 2.5 323.15 0 0 -3.10516e-16 0.00270097 0.00270097 0 0 0 1208.07 1.15362e-07 1.15358e-07 0 0 0 247.593 10.8044 0.52321 236.266 +1 1 3 501 2.501 323.15 0 0 0.00016 0.0026224 0.0026224 0 0 0 1208.71 1.15456e-07 1.15452e-07 0 0 0 247.787 10.8159 0.515203 236.455 +1 1 3 502 2.502 323.15 0 0 0.00032 0.00254384 0.00254384 0 0 0 1209.35 1.1555e-07 1.15546e-07 0 0 0 247.98 10.8274 0.507263 236.645 +1 1 3 503 2.503 323.15 0 0 0.00048 0.00246527 0.00246527 0 0 0 1209.99 1.15644e-07 1.1564e-07 0 0 0 248.174 10.8389 0.499392 236.835 +1 1 3 504 2.504 323.15 0 0 0.00064 0.00238671 0.00238671 0 0 0 1210.63 1.15738e-07 1.15734e-07 0 0 0 248.367 10.8505 0.491588 237.025 +1 1 3 505 2.505 323.15 0 0 0.0008 0.00230815 0.00230815 0 0 0 1211.28 1.15833e-07 1.15828e-07 0 0 0 248.561 10.862 0.483852 237.215 +1 1 3 506 2.506 323.15 0 0 0.00096 0.00222958 0.00222958 0 0 0 1211.92 1.15927e-07 1.15922e-07 0 0 0 248.755 10.8735 0.476184 237.405 +1 1 3 507 2.507 323.15 0 0 0.00112 0.00215102 0.00215102 0 0 0 1212.56 1.16021e-07 1.16016e-07 0 0 0 248.949 10.885 0.468584 237.595 +1 1 3 508 2.508 323.15 0 0 0.00128 0.00207245 0.00207245 0 0 0 1213.2 1.16115e-07 1.16111e-07 0 0 0 249.143 10.8965 0.461051 237.785 +1 1 3 509 2.509 323.15 0 0 0.00144 0.00199389 0.00199389 0 0 0 1213.84 1.16209e-07 1.16205e-07 0 0 0 249.337 10.9081 0.453587 237.975 +1 1 3 510 2.51 323.15 0 0 0.0016 0.00191532 0.00191532 0 0 0 1214.49 1.16304e-07 1.16299e-07 0 0 0 249.531 10.9196 0.446191 238.165 +1 1 3 511 2.511 323.15 0 0 0.00176 0.00183676 0.00183676 0 0 0 1215.13 1.16398e-07 1.16394e-07 0 0 0 249.726 10.9311 0.438862 238.356 +1 1 3 512 2.512 323.15 0 0 0.00192 0.00175819 0.00175819 0 0 0 1215.77 1.16492e-07 1.16487e-07 0 0 0 249.92 10.9427 0.431601 238.546 +1 1 3 513 2.513 323.15 0 0 0.00208 0.00167962 0.00167962 0 0 0 1216.41 1.16587e-07 1.16582e-07 0 0 0 250.115 10.9542 0.424408 238.736 +1 1 3 514 2.514 323.15 0 0 0.00224 0.00160106 0.00160106 0 0 0 1217.05 1.16681e-07 1.16676e-07 0 0 0 250.309 10.9658 0.417283 238.926 +1 1 3 515 2.515 323.15 0 0 0.0024 0.00152249 0.00152249 0 0 0 1217.69 1.16775e-07 1.1677e-07 0 0 0 250.504 10.9774 0.410226 239.117 +1 1 3 516 2.516 323.15 0 0 0.00256 0.00144393 0.00144393 0 0 0 1218.33 1.16869e-07 1.16865e-07 0 0 0 250.699 10.9889 0.403237 239.307 +1 1 3 517 2.517 323.15 0 0 0.00272 0.00136536 0.00136536 0 0 0 1218.98 1.16964e-07 1.16959e-07 0 0 0 250.894 11.0005 0.396316 239.497 +1 1 3 518 2.518 323.15 0 0 0.00288 0.00128679 0.00128679 0 0 0 1219.62 1.17058e-07 1.17053e-07 0 0 0 251.089 11.0121 0.389463 239.688 +1 1 3 519 2.519 323.15 0 0 0.00304 0.00120823 0.00120823 0 0 0 1220.26 1.17152e-07 1.17147e-07 0 0 0 251.284 11.0236 0.382677 239.878 +1 1 3 520 2.52 323.15 0 0 0.0032 0.00112966 0.00112966 0 0 0 1220.9 1.17246e-07 1.17241e-07 0 0 0 251.48 11.0352 0.37596 240.068 +1 1 3 521 2.521 323.15 0 0 0.00336 0.00105109 0.00105109 0 0 0 1221.54 1.17341e-07 1.17336e-07 0 0 0 251.675 11.0468 0.36931 240.259 +1 1 3 522 2.522 323.15 0 0 0.00352 0.000972524 0.000972524 0 0 0 1222.18 1.17435e-07 1.1743e-07 0 0 0 251.87 11.0584 0.362728 240.449 +1 1 3 523 2.523 323.15 0 0 0.00368 0.000893957 0.000893957 0 0 0 1222.82 1.17529e-07 1.17524e-07 0 0 0 252.066 11.07 0.356214 240.64 +1 1 3 524 2.524 323.15 0 0 0.00384 0.000815389 0.000815389 0 0 0 1223.46 1.17623e-07 1.17618e-07 0 0 0 252.262 11.0816 0.349769 240.83 +1 1 3 525 2.525 323.15 0 0 0.004 0.000736821 0.000736821 0 0 0 1224.1 1.17718e-07 1.17712e-07 0 0 0 252.458 11.0932 0.343391 241.021 +1 1 3 526 2.526 323.15 0 0 0.00416 0.000658253 0.000658253 0 0 0 1224.74 1.17812e-07 1.17807e-07 0 0 0 252.653 11.1048 0.337081 241.212 +1 1 3 527 2.527 323.15 0 0 0.00432 0.000579684 0.000579684 0 0 0 1225.38 1.17906e-07 1.17901e-07 0 0 0 252.849 11.1164 0.330838 241.402 +1 1 3 528 2.528 323.15 0 0 0.00448 0.000501116 0.000501116 0 0 0 1226.02 1.18e-07 1.17995e-07 0 0 0 253.046 11.1281 0.324664 241.593 +1 1 3 529 2.529 323.15 0 0 0.00464 0.000422547 0.000422547 0 0 0 1226.66 1.18094e-07 1.18089e-07 0 0 0 253.242 11.1397 0.318558 241.784 +1 1 3 530 2.53 323.15 0 0 0.0048 0.000343978 0.000343978 0 0 0 1227.3 1.18188e-07 1.18183e-07 0 0 0 253.438 11.1513 0.31252 241.974 +1 1 3 531 2.531 323.15 0 0 0.00496 0.000265409 0.000265409 0 0 0 1227.94 1.18282e-07 1.18277e-07 0 0 0 253.635 11.1629 0.306549 242.165 +1 1 3 532 2.532 323.15 0 0 0.00512 0.00018684 0.00018684 0 0 0 1228.58 1.18376e-07 1.18371e-07 0 0 0 253.831 11.1746 0.300647 242.356 +1 1 3 533 2.533 323.15 0 0 0.00528 0.00010827 0.00010827 0 0 0 1229.22 1.1847e-07 1.18465e-07 0 0 0 254.028 11.1862 0.294812 242.547 +1 1 3 534 2.534 323.15 0 0 0.00544 2.97008e-05 2.97008e-05 0 0 0 1229.86 1.18565e-07 1.1856e-07 0 0 0 254.224 11.1979 0.289045 242.738 +1 1 3 535 2.535 323.15 0 0 0.0056 -4.8869e-05 -4.8869e-05 0 0 0 1230.5 1.18659e-07 1.18654e-07 0 0 0 254.421 11.2095 0.283347 242.928 +1 1 3 536 2.536 323.15 0 0 0.00576 -0.000127439 -0.000127439 0 0 0 1231.14 1.18753e-07 1.18748e-07 0 0 0 254.618 11.2212 0.277716 243.119 +1 1 3 537 2.537 323.15 0 0 0.00592 -0.000206009 -0.000206009 0 0 0 1231.78 1.18847e-07 1.18842e-07 0 0 0 254.815 11.2328 0.272153 243.31 +1 1 3 538 2.538 323.15 0 0 0.00608 -0.00028458 -0.00028458 0 0 0 1232.42 1.18941e-07 1.18936e-07 0 0 0 255.012 11.2445 0.266658 243.501 +1 1 3 539 2.539 323.15 0 0 0.00624 -0.00036315 -0.00036315 0 0 0 1233.06 1.19036e-07 1.19031e-07 0 0 0 255.21 11.2562 0.261231 243.692 +1 1 3 540 2.54 323.15 0 0 0.0064 -0.000441721 -0.000441721 0 0 0 1233.7 1.1913e-07 1.19125e-07 0 0 0 255.407 11.2678 0.255872 243.883 +1 1 3 541 2.541 323.15 0 0 0.00656 -0.000520292 -0.000520292 0 0 0 1234.34 1.19224e-07 1.19219e-07 0 0 0 255.604 11.2795 0.250581 244.074 +1 1 3 542 2.542 323.15 0 0 0.00672 -0.000598863 -0.000598863 0 0 0 1234.98 1.19318e-07 1.19314e-07 0 0 0 255.802 11.2912 0.245358 244.265 +1 1 3 543 2.543 323.15 0 0 0.00688 -0.000677434 -0.000677434 0 0 0 1235.62 1.19413e-07 1.19408e-07 0 0 0 256 11.3029 0.240202 244.456 +1 1 3 544 2.544 323.15 0 0 0.00704 -0.000756005 -0.000756005 0 0 0 1236.26 1.19507e-07 1.19502e-07 0 0 0 256.197 11.3146 0.235115 244.648 +1 1 3 545 2.545 323.15 0 0 0.0072 -0.000834577 -0.000834577 0 0 0 1236.89 1.19601e-07 1.19596e-07 0 0 0 256.395 11.3263 0.230096 244.839 +1 1 3 546 2.546 323.15 0 0 0.00736 -0.000913149 -0.000913149 0 0 0 1237.53 1.19695e-07 1.1969e-07 0 0 0 256.593 11.338 0.225144 245.03 +1 1 3 547 2.547 323.15 0 0 0.00752 -0.000991721 -0.000991721 0 0 0 1238.17 1.19789e-07 1.19784e-07 0 0 0 256.791 11.3497 0.220261 245.221 +1 1 3 548 2.548 323.15 0 0 0.00768 -0.00107029 -0.00107029 0 0 0 1238.81 1.19883e-07 1.19878e-07 0 0 0 256.989 11.3614 0.215445 245.412 +1 1 3 549 2.549 323.15 0 0 0.00784 -0.00114887 -0.00114887 0 0 0 1239.45 1.19978e-07 1.19973e-07 0 0 0 257.188 11.3731 0.210698 245.604 +1 1 3 550 2.55 323.15 0 0 0.008 -0.00122744 -0.00122744 0 0 0 1240.09 1.20072e-07 1.20067e-07 0 0 0 257.386 11.3848 0.206018 245.795 +1 1 3 551 2.551 323.15 0 0 0.00816 -0.00130601 -0.00130601 0 0 0 1240.73 1.20166e-07 1.20161e-07 0 0 0 257.584 11.3966 0.201407 245.986 +1 1 3 552 2.552 323.15 0 0 0.00832 -0.00138458 -0.00138458 0 0 0 1241.36 1.20261e-07 1.20256e-07 0 0 0 257.783 11.4083 0.196863 246.178 +1 1 3 553 2.553 323.15 0 0 0.00848 -0.00146316 -0.00146316 0 0 0 1242 1.20355e-07 1.2035e-07 0 0 0 257.982 11.42 0.192387 246.369 +1 1 3 554 2.554 323.15 0 0 0.00864 -0.00154173 -0.00154173 0 0 0 1242.64 1.20449e-07 1.20444e-07 0 0 0 258.18 11.4318 0.187979 246.561 +1 1 3 555 2.555 323.15 0 0 0.0088 -0.0016203 -0.0016203 0 0 0 1243.28 1.20543e-07 1.20538e-07 0 0 0 258.379 11.4435 0.18364 246.752 +1 1 3 556 2.556 323.15 0 0 0.00896 -0.00169888 -0.00169888 0 0 0 1243.92 1.20637e-07 1.20632e-07 0 0 0 258.578 11.4553 0.179368 246.944 +1 1 3 557 2.557 323.15 0 0 0.00912 -0.00177745 -0.00177745 0 0 0 1244.56 1.20731e-07 1.20726e-07 0 0 0 258.777 11.467 0.175164 247.135 +1 1 3 558 2.558 323.15 0 0 0.00928 -0.00185602 -0.00185602 0 0 0 1245.19 1.20825e-07 1.20821e-07 0 0 0 258.977 11.4788 0.171028 247.327 +1 1 3 559 2.559 323.15 0 0 0.00944 -0.0019346 -0.0019346 0 0 0 1245.83 1.20919e-07 1.20915e-07 0 0 0 259.176 11.4905 0.16696 247.518 +1 1 3 560 2.56 323.15 0 0 0.0096 -0.00201317 -0.00201317 0 0 0 1246.47 1.21014e-07 1.21009e-07 0 0 0 259.375 11.5023 0.16296 247.71 +1 1 3 561 2.561 323.15 0 0 0.00976 -0.00209175 -0.00209175 0 0 0 1247.11 1.21108e-07 1.21103e-07 0 0 0 259.575 11.5141 0.159028 247.902 +1 1 3 562 2.562 323.15 0 0 0.00992 -0.00217032 -0.00217032 0 0 0 1247.74 1.21202e-07 1.21197e-07 0 0 0 259.774 11.5258 0.155164 248.093 +1 1 3 563 2.563 323.15 0 0 0.01008 -0.0022489 -0.0022489 0 0 0 1248.38 1.21296e-07 1.21291e-07 0 0 0 259.974 11.5376 0.151368 248.285 +1 1 3 564 2.564 323.15 0 0 0.01024 -0.00232747 -0.00232747 0 0 0 1249.02 1.2139e-07 1.21386e-07 0 0 0 260.174 11.5494 0.14764 248.477 +1 1 3 565 2.565 323.15 0 0 0.0104 -0.00240605 -0.00240605 0 0 0 1249.66 1.21484e-07 1.2148e-07 0 0 0 260.374 11.5612 0.14398 248.668 +1 1 3 566 2.566 323.15 0 0 0.01056 -0.00248462 -0.00248462 0 0 0 1250.29 1.21579e-07 1.21574e-07 0 0 0 260.574 11.573 0.140388 248.86 +1 1 3 567 2.567 323.15 0 0 0.01072 -0.0025632 -0.0025632 0 0 0 1250.93 1.21673e-07 1.21668e-07 0 0 0 260.774 11.5848 0.136864 249.052 +1 1 3 568 2.568 323.15 0 0 0.01088 -0.00264177 -0.00264177 0 0 0 1251.57 1.21767e-07 1.21762e-07 0 0 0 260.974 11.5966 0.133408 249.244 +1 1 3 569 2.569 323.15 0 0 0.01104 -0.00272035 -0.00272035 0 0 0 1252.2 1.21861e-07 1.21856e-07 0 0 0 261.174 11.6084 0.13002 249.436 +1 1 3 570 2.57 323.15 0 0 0.0112 -0.00279892 -0.00279892 0 0 0 1252.84 1.21955e-07 1.2195e-07 0 0 0 261.375 11.6202 0.1267 249.628 +1 1 3 571 2.571 323.15 0 0 0.01136 -0.0028775 -0.0028775 0 0 0 1253.48 1.22049e-07 1.22044e-07 0 0 0 261.575 11.632 0.123448 249.82 +1 1 3 572 2.572 323.15 0 0 0.01152 -0.00295608 -0.00295608 0 0 0 1254.12 1.22143e-07 1.22138e-07 0 0 0 261.776 11.6439 0.120263 250.012 +1 1 3 573 2.573 323.15 0 0 0.01168 -0.00303465 -0.00303465 0 0 0 1254.75 1.22237e-07 1.22232e-07 0 0 0 261.976 11.6557 0.117147 250.204 +1 1 3 574 2.574 323.15 0 0 0.01184 -0.00311323 -0.00311323 0 0 0 1255.39 1.22331e-07 1.22326e-07 0 0 0 262.177 11.6675 0.114099 250.396 +1 1 3 575 2.575 323.15 0 0 0.012 -0.00319181 -0.00319181 0 0 0 1256.03 1.22426e-07 1.22421e-07 0 0 0 262.378 11.6793 0.111119 250.588 +1 1 3 576 2.576 323.15 0 0 0.01216 -0.00327038 -0.00327038 0 0 0 1256.66 1.2252e-07 1.22515e-07 0 0 0 262.579 11.6912 0.108207 250.78 +1 1 3 577 2.577 323.15 0 0 0.01232 -0.00334896 -0.00334896 0 0 0 1257.3 1.22615e-07 1.2261e-07 0 0 0 262.78 11.703 0.105363 250.972 +1 1 3 578 2.578 323.15 0 0 0.01248 -0.00342754 -0.00342754 0 0 0 1257.93 1.22709e-07 1.22704e-07 0 0 0 262.982 11.7149 0.102586 251.164 +1 1 3 579 2.579 323.15 0 0 0.01264 -0.00350612 -0.00350612 0 0 0 1258.57 1.22803e-07 1.22798e-07 0 0 0 263.183 11.7267 0.0998782 251.356 +1 1 3 580 2.58 323.15 0 0 0.0128 -0.00358469 -0.00358469 0 0 0 1259.21 1.22897e-07 1.22892e-07 0 0 0 263.384 11.7386 0.0972381 251.548 +1 1 3 581 2.581 323.15 0 0 0.01296 -0.00366327 -0.00366327 0 0 0 1259.84 1.22992e-07 1.22987e-07 0 0 0 263.586 11.7505 0.0946659 251.741 +1 1 3 582 2.582 323.15 0 0 0.01312 -0.00374185 -0.00374185 0 0 0 1260.48 1.23086e-07 1.23081e-07 0 0 0 263.787 11.7623 0.0921618 251.933 +1 1 3 583 2.583 323.15 0 0 0.01328 -0.00382043 -0.00382043 0 0 0 1261.11 1.23181e-07 1.23175e-07 0 0 0 263.989 11.7742 0.0897256 252.125 +1 1 3 584 2.584 323.15 0 0 0.01344 -0.00389901 -0.00389901 0 0 0 1261.75 1.23275e-07 1.2327e-07 0 0 0 264.191 11.7861 0.0873575 252.318 +1 1 3 585 2.585 323.15 0 0 0.0136 -0.00397758 -0.00397758 0 0 0 1262.39 1.23369e-07 1.23364e-07 0 0 0 264.393 11.7979 0.0850573 252.51 +1 1 3 586 2.586 323.15 0 0 0.01376 -0.00405616 -0.00405616 0 0 0 1263.02 1.23463e-07 1.23458e-07 0 0 0 264.595 11.8098 0.0828252 252.702 +1 1 3 587 2.587 323.15 0 0 0.01392 -0.00413474 -0.00413474 0 0 0 1263.66 1.23558e-07 1.23553e-07 0 0 0 264.797 11.8217 0.0806611 252.895 +1 1 3 588 2.588 323.15 0 0 0.01408 -0.00421332 -0.00421332 0 0 0 1264.29 1.23652e-07 1.23647e-07 0 0 0 264.999 11.8336 0.078565 253.087 +1 1 3 589 2.589 323.15 0 0 0.01424 -0.0042919 -0.0042919 0 0 0 1264.93 1.23746e-07 1.23741e-07 0 0 0 265.202 11.8455 0.076537 253.28 +1 1 3 590 2.59 323.15 0 0 0.0144 -0.00437048 -0.00437048 0 0 0 1265.56 1.2384e-07 1.23835e-07 0 0 0 265.404 11.8574 0.0745769 253.472 +1 1 3 591 2.591 323.15 0 0 0.01456 -0.00444906 -0.00444906 0 0 0 1266.2 1.23935e-07 1.2393e-07 0 0 0 265.607 11.8693 0.0726849 253.665 +1 1 3 592 2.592 323.15 0 0 0.01472 -0.00452764 -0.00452764 0 0 0 1266.83 1.24029e-07 1.24024e-07 0 0 0 265.809 11.8812 0.0708609 253.857 +1 1 3 593 2.593 323.15 0 0 0.01488 -0.00460622 -0.00460622 0 0 0 1267.47 1.24123e-07 1.24118e-07 0 0 0 266.012 11.8932 0.0691049 254.05 +1 1 3 594 2.594 323.15 0 0 0.01504 -0.0046848 -0.0046848 0 0 0 1268.1 1.24217e-07 1.24212e-07 0 0 0 266.215 11.9051 0.0674169 254.242 +1 1 3 595 2.595 323.15 0 0 0.0152 -0.00476338 -0.00476338 0 0 0 1268.74 1.24312e-07 1.24307e-07 0 0 0 266.418 11.917 0.065797 254.435 +1 1 3 596 2.596 323.15 0 0 0.01536 -0.00484196 -0.00484196 0 0 0 1269.37 1.24406e-07 1.24401e-07 0 0 0 266.621 11.9289 0.0642451 254.628 +1 1 3 597 2.597 323.15 0 0 0.01552 -0.00492054 -0.00492054 0 0 0 1270.01 1.245e-07 1.24495e-07 0 0 0 266.824 11.9409 0.0627612 254.82 +1 1 3 598 2.598 323.15 0 0 0.01568 -0.00499912 -0.00499912 0 0 0 1270.64 1.24595e-07 1.2459e-07 0 0 0 267.027 11.9528 0.0613453 255.013 +1 1 3 599 2.599 323.15 0 0 0.01584 -0.0050777 -0.0050777 0 0 0 1271.28 1.24689e-07 1.24684e-07 0 0 0 267.231 11.9648 0.0599975 255.206 +1 1 3 600 2.6 323.15 0 0 0.016 -0.00515628 -0.00515628 0 0 0 1271.91 1.24783e-07 1.24778e-07 0 0 0 267.434 11.9767 0.0587178 255.399 +1 1 3 601 2.601 323.15 0 0 0.01616 -0.00523486 -0.00523486 0 0 0 1272.55 1.24877e-07 1.24872e-07 0 0 0 267.638 11.9887 0.057506 255.591 +1 1 3 602 2.602 323.15 0 0 0.01632 -0.00531344 -0.00531344 0 0 0 1273.18 1.24971e-07 1.24966e-07 0 0 0 267.841 12.0006 0.0563623 255.784 +1 1 3 603 2.603 323.15 0 0 0.01648 -0.00539203 -0.00539203 0 0 0 1273.82 1.25065e-07 1.2506e-07 0 0 0 268.045 12.0126 0.0552866 255.977 +1 1 3 604 2.604 323.15 0 0 0.01664 -0.00547061 -0.00547061 0 0 0 1274.45 1.2516e-07 1.25154e-07 0 0 0 268.249 12.0245 0.054279 256.17 +1 1 3 605 2.605 323.15 0 0 0.0168 -0.00554919 -0.00554919 0 0 0 1275.09 1.25254e-07 1.25249e-07 0 0 0 268.453 12.0365 0.0533394 256.363 +1 1 3 606 2.606 323.15 0 0 0.01696 -0.00562777 -0.00562777 0 0 0 1275.72 1.25348e-07 1.25343e-07 0 0 0 268.657 12.0485 0.0524679 256.556 +1 1 3 607 2.607 323.15 0 0 0.01712 -0.00570635 -0.00570635 0 0 0 1276.35 1.25442e-07 1.25437e-07 0 0 0 268.861 12.0605 0.0516644 256.749 +1 1 3 608 2.608 323.15 0 0 0.01728 -0.00578494 -0.00578494 0 0 0 1276.99 1.25536e-07 1.25531e-07 0 0 0 269.065 12.0725 0.0509289 256.942 +1 1 3 609 2.609 323.15 0 0 0.01744 -0.00586352 -0.00586352 0 0 0 1277.62 1.2563e-07 1.25625e-07 0 0 0 269.27 12.0844 0.0502615 257.135 +1 1 3 610 2.61 323.15 0 0 0.0176 -0.0059421 -0.0059421 0 0 0 1278.26 1.25725e-07 1.25719e-07 0 0 0 269.474 12.0964 0.0496621 257.328 +1 1 3 611 2.611 323.15 0 0 0.01776 -0.00602068 -0.00602068 0 0 0 1278.89 1.25819e-07 1.25813e-07 0 0 0 269.679 12.1084 0.0491308 257.521 +1 1 3 612 2.612 323.15 0 0 0.01792 -0.00609927 -0.00609927 0 0 0 1279.52 1.25913e-07 1.25908e-07 0 0 0 269.883 12.1204 0.0486676 257.714 +1 1 3 613 2.613 323.15 0 0 0.01808 -0.00617785 -0.00617785 0 0 0 1280.16 1.26007e-07 1.26002e-07 0 0 0 270.088 12.1325 0.0482724 257.908 +1 1 3 614 2.614 323.15 0 0 0.01824 -0.00625643 -0.00625643 0 0 0 1280.79 1.26102e-07 1.26096e-07 0 0 0 270.293 12.1445 0.0479452 258.101 +1 1 3 615 2.615 323.15 0 0 0.0184 -0.00633502 -0.00633502 0 0 0 1281.42 1.26196e-07 1.26191e-07 0 0 0 270.498 12.1565 0.0476861 258.294 +1 1 3 616 2.616 323.15 0 0 0.01856 -0.0064136 -0.0064136 0 0 0 1282.06 1.2629e-07 1.26285e-07 0 0 0 270.703 12.1685 0.0474951 258.487 +1 1 3 617 2.617 323.15 0 0 0.01872 -0.00649219 -0.00649219 0 0 0 1282.69 1.26384e-07 1.26379e-07 0 0 0 270.908 12.1805 0.0473721 258.68 +1 1 3 618 2.618 323.15 0 0 0.01888 -0.00657077 -0.00657077 0 0 0 1283.32 1.26478e-07 1.26473e-07 0 0 0 271.114 12.1926 0.0473172 258.874 +1 1 3 619 2.619 323.15 0 0 0.01904 -0.00664935 -0.00664935 0 0 0 1283.96 1.26572e-07 1.26567e-07 0 0 0 271.319 12.2046 0.0473304 259.067 +1 1 3 620 2.62 323.15 0 0 0.0192 -0.00672794 -0.00672794 0 0 0 1284.59 1.26667e-07 1.26662e-07 0 0 0 271.525 12.2166 0.0474116 259.26 +1 1 3 621 2.621 323.15 0 0 0.01936 -0.00680652 -0.00680652 0 0 0 1285.22 1.26761e-07 1.26756e-07 0 0 0 271.73 12.2287 0.0475609 259.454 +1 1 3 622 2.622 323.15 0 0 0.01952 -0.00688511 -0.00688511 0 0 0 1285.86 1.26855e-07 1.2685e-07 0 0 0 271.936 12.2407 0.0477782 259.647 +1 1 3 623 2.623 323.15 0 0 0.01968 -0.00696369 -0.00696369 0 0 0 1286.49 1.26949e-07 1.26945e-07 0 0 0 272.142 12.2528 0.0480636 259.841 +1 1 3 624 2.624 323.15 0 0 0.01984 -0.00704228 -0.00704228 0 0 0 1287.12 1.27043e-07 1.27039e-07 0 0 0 272.347 12.2648 0.0484171 260.034 +1 1 3 625 2.625 323.15 0 0 0.02 -0.00712086 -0.00712086 0 0 0 1287.76 1.27138e-07 1.27133e-07 0 0 0 272.553 12.2769 0.0488387 260.228 +1 1 3 626 2.626 323.15 0 0 0.02016 -0.00719945 -0.00719945 0 0 0 1288.39 1.27232e-07 1.27227e-07 0 0 0 272.76 12.289 0.0493283 260.421 +1 1 3 627 2.627 323.15 0 0 0.02032 -0.00727803 -0.00727803 0 0 0 1289.02 1.27327e-07 1.27322e-07 0 0 0 272.966 12.301 0.049886 260.615 +1 1 3 628 2.628 323.15 0 0 0.02048 -0.00735662 -0.00735662 0 0 0 1289.65 1.27421e-07 1.27416e-07 0 0 0 273.172 12.3131 0.0505118 260.808 +1 1 3 629 2.629 323.15 0 0 0.02064 -0.00743521 -0.00743521 0 0 0 1290.29 1.27515e-07 1.27511e-07 0 0 0 273.378 12.3252 0.0512056 261.002 +1 1 3 630 2.63 323.15 0 0 0.0208 -0.00751379 -0.00751379 0 0 0 1290.92 1.2761e-07 1.27605e-07 0 0 0 273.585 12.3373 0.0519676 261.196 +1 1 3 631 2.631 323.15 0 0 0.02096 -0.00759238 -0.00759238 0 0 0 1291.55 1.27704e-07 1.277e-07 0 0 0 273.792 12.3494 0.0527976 261.389 +1 1 3 632 2.632 323.15 0 0 0.02112 -0.00767096 -0.00767096 0 0 0 1292.18 1.27799e-07 1.27794e-07 0 0 0 273.998 12.3615 0.0536957 261.583 +1 1 3 633 2.633 323.15 0 0 0.02128 -0.00774955 -0.00774955 0 0 0 1292.82 1.27893e-07 1.27888e-07 0 0 0 274.205 12.3736 0.0546618 261.777 +1 1 3 634 2.634 323.15 0 0 0.02144 -0.00782814 -0.00782814 0 0 0 1293.45 1.27987e-07 1.27983e-07 0 0 0 274.412 12.3857 0.0556961 261.971 +1 1 3 635 2.635 323.15 0 0 0.0216 -0.00790672 -0.00790672 0 0 0 1294.08 1.28081e-07 1.28077e-07 0 0 0 274.619 12.3978 0.0567984 262.164 +1 1 3 636 2.636 323.15 0 0 0.02176 -0.00798531 -0.00798531 0 0 0 1294.71 1.28176e-07 1.28171e-07 0 0 0 274.826 12.4099 0.0579689 262.358 +1 1 3 637 2.637 323.15 0 0 0.02192 -0.0080639 -0.0080639 0 0 0 1295.34 1.2827e-07 1.28265e-07 0 0 0 275.033 12.422 0.0592074 262.552 +1 1 3 638 2.638 323.15 0 0 0.02208 -0.00814249 -0.00814249 0 0 0 1295.98 1.28364e-07 1.28359e-07 0 0 0 275.241 12.4341 0.060514 262.746 +1 1 3 639 2.639 323.15 0 0 0.02224 -0.00822107 -0.00822107 0 0 0 1296.61 1.28458e-07 1.28454e-07 0 0 0 275.448 12.4463 0.0618887 262.94 +1 1 3 640 2.64 323.15 0 0 0.0224 -0.00829966 -0.00829966 0 0 0 1297.24 1.28553e-07 1.28548e-07 0 0 0 275.655 12.4584 0.0633315 263.134 +1 1 3 641 2.641 323.15 0 0 0.02256 -0.00837825 -0.00837825 0 0 0 1297.87 1.28647e-07 1.28642e-07 0 0 0 275.863 12.4705 0.0648424 263.328 +1 1 3 642 2.642 323.15 0 0 0.02272 -0.00845684 -0.00845684 0 0 0 1298.5 1.28741e-07 1.28736e-07 0 0 0 276.071 12.4827 0.0664214 263.522 +1 1 3 643 2.643 323.15 0 0 0.02288 -0.00853542 -0.00853542 0 0 0 1299.13 1.28835e-07 1.28831e-07 0 0 0 276.279 12.4948 0.0680685 263.716 +1 1 3 644 2.644 323.15 0 0 0.02304 -0.00861401 -0.00861401 0 0 0 1299.77 1.2893e-07 1.28925e-07 0 0 0 276.486 12.507 0.0697836 263.91 +1 1 3 645 2.645 323.15 0 0 0.0232 -0.0086926 -0.0086926 0 0 0 1300.4 1.29024e-07 1.29019e-07 0 0 0 276.695 12.5191 0.0715669 264.104 +1 1 3 646 2.646 323.15 0 0 0.02336 -0.00877119 -0.00877119 0 0 0 1301.03 1.29118e-07 1.29114e-07 0 0 0 276.903 12.5313 0.0734183 264.298 +1 1 3 647 2.647 323.15 0 0 0.02352 -0.00884978 -0.00884978 0 0 0 1301.66 1.29213e-07 1.29208e-07 0 0 0 277.111 12.5434 0.0753378 264.492 +1 1 3 648 2.648 323.15 0 0 0.02368 -0.00892837 -0.00892837 0 0 0 1302.29 1.29307e-07 1.29302e-07 0 0 0 277.319 12.5556 0.0773254 264.686 +1 1 3 649 2.649 323.15 0 0 0.02384 -0.00900696 -0.00900696 0 0 0 1302.92 1.29401e-07 1.29397e-07 0 0 0 277.528 12.5678 0.0793811 264.88 +1 1 3 650 2.65 323.15 0 0 0.024 -0.00908555 -0.00908555 0 0 0 1303.55 1.29496e-07 1.29491e-07 0 0 0 277.736 12.5799 0.0815049 265.075 +1 1 3 651 2.651 323.15 0 0 0.02416 -0.00916413 -0.00916413 0 0 0 1304.18 1.2959e-07 1.29585e-07 0 0 0 277.945 12.5921 0.0836968 265.269 +1 1 3 652 2.652 323.15 0 0 0.02432 -0.00924272 -0.00924272 0 0 0 1304.81 1.29684e-07 1.29679e-07 0 0 0 278.153 12.6043 0.0859568 265.463 +1 1 3 653 2.653 323.15 0 0 0.02448 -0.00932131 -0.00932131 0 0 0 1305.45 1.29778e-07 1.29774e-07 0 0 0 278.362 12.6165 0.088285 265.657 +1 1 3 654 2.654 323.15 0 0 0.02464 -0.0093999 -0.0093999 0 0 0 1306.08 1.29873e-07 1.29868e-07 0 0 0 278.571 12.6287 0.0906812 265.852 +1 1 3 655 2.655 323.15 0 0 0.0248 -0.00947849 -0.00947849 0 0 0 1306.71 1.29967e-07 1.29963e-07 0 0 0 278.78 12.6409 0.0931456 266.046 +1 1 3 656 2.656 323.15 0 0 0.02496 -0.00955708 -0.00955708 0 0 0 1307.34 1.30062e-07 1.30057e-07 0 0 0 278.989 12.6531 0.095678 266.241 +1 1 3 657 2.657 323.15 0 0 0.02512 -0.00963567 -0.00963567 0 0 0 1307.97 1.30156e-07 1.30151e-07 0 0 0 279.199 12.6653 0.0982786 266.435 +1 1 3 658 2.658 323.15 0 0 0.02528 -0.00971427 -0.00971427 0 0 0 1308.6 1.3025e-07 1.30245e-07 0 0 0 279.408 12.6775 0.100947 266.629 +1 1 3 659 2.659 323.15 0 0 0.02544 -0.00979286 -0.00979286 0 0 0 1309.23 1.30344e-07 1.3034e-07 0 0 0 279.617 12.6897 0.103684 266.824 +1 1 3 660 2.66 323.15 0 0 0.0256 -0.00987145 -0.00987145 0 0 0 1309.86 1.30439e-07 1.30434e-07 0 0 0 279.827 12.702 0.106489 267.018 +1 1 3 661 2.661 323.15 0 0 0.02576 -0.00995004 -0.00995004 0 0 0 1310.49 1.30533e-07 1.30528e-07 0 0 0 280.036 12.7142 0.109362 267.213 +1 1 3 662 2.662 323.15 0 0 0.02592 -0.0100286 -0.0100286 0 0 0 1311.12 1.30627e-07 1.30622e-07 0 0 0 280.246 12.7264 0.112303 267.407 +1 1 3 663 2.663 323.15 0 0 0.02608 -0.0101072 -0.0101072 0 0 0 1311.75 1.30721e-07 1.30716e-07 0 0 0 280.456 12.7386 0.115313 267.602 +1 1 3 664 2.664 323.15 0 0 0.02624 -0.0101858 -0.0101858 0 0 0 1312.38 1.30815e-07 1.30811e-07 0 0 0 280.666 12.7509 0.11839 267.797 +1 1 3 665 2.665 323.15 0 0 0.0264 -0.0102644 -0.0102644 0 0 0 1313.01 1.30909e-07 1.30905e-07 0 0 0 280.876 12.7631 0.121536 267.991 +1 1 3 666 2.666 323.15 0 0 0.02656 -0.010343 -0.010343 0 0 0 1313.64 1.31003e-07 1.30999e-07 0 0 0 281.086 12.7754 0.124749 268.186 +1 1 3 667 2.667 323.15 0 0 0.02672 -0.0104216 -0.0104216 0 0 0 1314.27 1.31098e-07 1.31093e-07 0 0 0 281.296 12.7876 0.128031 268.381 +1 1 3 668 2.668 323.15 0 0 0.02688 -0.0105002 -0.0105002 0 0 0 1314.9 1.31192e-07 1.31187e-07 0 0 0 281.507 12.7999 0.131381 268.575 +1 1 3 669 2.669 323.15 0 0 0.02704 -0.0105788 -0.0105788 0 0 0 1315.53 1.31286e-07 1.31281e-07 0 0 0 281.717 12.8121 0.134799 268.77 +1 1 3 670 2.67 323.15 0 0 0.0272 -0.0106574 -0.0106574 0 0 0 1316.16 1.3138e-07 1.31376e-07 0 0 0 281.928 12.8244 0.138286 268.965 +1 1 3 671 2.671 323.15 0 0 0.02736 -0.010736 -0.010736 0 0 0 1316.79 1.31474e-07 1.3147e-07 0 0 0 282.138 12.8367 0.14184 269.16 +1 1 3 672 2.672 323.15 0 0 0.02752 -0.0108145 -0.0108145 0 0 0 1317.42 1.31569e-07 1.31564e-07 0 0 0 282.349 12.849 0.145463 269.355 +1 1 3 673 2.673 323.15 0 0 0.02768 -0.0108931 -0.0108931 0 0 0 1318.05 1.31663e-07 1.31658e-07 0 0 0 282.56 12.8612 0.149153 269.549 +1 1 3 674 2.674 323.15 0 0 0.02784 -0.0109717 -0.0109717 0 0 0 1318.68 1.31757e-07 1.31753e-07 0 0 0 282.771 12.8735 0.152912 269.744 +1 1 3 675 2.675 323.15 0 0 0.028 -0.0110503 -0.0110503 0 0 0 1319.3 1.31851e-07 1.31847e-07 0 0 0 282.982 12.8858 0.156739 269.939 +1 1 3 676 2.676 323.15 0 0 0.02816 -0.0111289 -0.0111289 0 0 0 1319.93 1.31946e-07 1.31942e-07 0 0 0 283.193 12.8981 0.160634 270.134 +1 1 3 677 2.677 323.15 0 0 0.02832 -0.0112075 -0.0112075 0 0 0 1320.56 1.32041e-07 1.32036e-07 0 0 0 283.404 12.9104 0.164597 270.329 +1 1 3 678 2.678 323.15 0 0 0.02848 -0.0112861 -0.0112861 0 0 0 1321.19 1.32135e-07 1.3213e-07 0 0 0 283.616 12.9227 0.168629 270.524 +1 1 3 679 2.679 323.15 0 0 0.02864 -0.0113647 -0.0113647 0 0 0 1321.82 1.32229e-07 1.32225e-07 0 0 0 283.827 12.935 0.172728 270.719 +1 1 3 680 2.68 323.15 0 0 0.0288 -0.0114433 -0.0114433 0 0 0 1322.45 1.32323e-07 1.32319e-07 0 0 0 284.039 12.9473 0.176896 270.914 +1 1 3 681 2.681 323.15 0 0 0.02896 -0.0115219 -0.0115219 0 0 0 1323.08 1.32418e-07 1.32413e-07 0 0 0 284.25 12.9596 0.181132 271.109 +1 1 3 682 2.682 323.15 0 0 0.02912 -0.0116005 -0.0116005 0 0 0 1323.71 1.32512e-07 1.32507e-07 0 0 0 284.462 12.972 0.185436 271.305 +1 1 3 683 2.683 323.15 0 0 0.02928 -0.0116791 -0.0116791 0 0 0 1324.34 1.32606e-07 1.32602e-07 0 0 0 284.674 12.9843 0.189808 271.5 +1 1 3 684 2.684 323.15 0 0 0.02944 -0.0117577 -0.0117577 0 0 0 1324.96 1.327e-07 1.32696e-07 0 0 0 284.886 12.9966 0.194248 271.695 +1 1 3 685 2.685 323.15 0 0 0.0296 -0.0118363 -0.0118363 0 0 0 1325.59 1.32794e-07 1.3279e-07 0 0 0 285.098 13.009 0.198756 271.89 +1 1 3 686 2.686 323.15 0 0 0.02976 -0.0119149 -0.0119149 0 0 0 1326.22 1.32888e-07 1.32884e-07 0 0 0 285.31 13.0213 0.203333 272.085 +1 1 3 687 2.687 323.15 0 0 0.02992 -0.0119935 -0.0119935 0 0 0 1326.85 1.32983e-07 1.32979e-07 0 0 0 285.522 13.0336 0.207978 272.281 +1 1 3 688 2.688 323.15 0 0 0.03008 -0.0120721 -0.0120721 0 0 0 1327.48 1.33077e-07 1.33073e-07 0 0 0 285.734 13.046 0.212691 272.476 +1 1 3 689 2.689 323.15 0 0 0.03024 -0.0121506 -0.0121506 0 0 0 1328.11 1.33171e-07 1.33167e-07 0 0 0 285.947 13.0583 0.217472 272.671 +1 1 3 690 2.69 323.15 0 0 0.0304 -0.0122292 -0.0122292 0 0 0 1328.73 1.33265e-07 1.33261e-07 0 0 0 286.159 13.0707 0.222321 272.866 +1 1 3 691 2.691 323.15 0 0 0.03056 -0.0123078 -0.0123078 0 0 0 1329.36 1.33359e-07 1.33355e-07 0 0 0 286.372 13.083 0.227238 273.062 +1 1 3 692 2.692 323.15 0 0 0.03072 -0.0123864 -0.0123864 0 0 0 1329.99 1.33453e-07 1.33449e-07 0 0 0 286.585 13.0954 0.232224 273.257 +1 1 3 693 2.693 323.15 0 0 0.03088 -0.012465 -0.012465 0 0 0 1330.62 1.33547e-07 1.33543e-07 0 0 0 286.798 13.1078 0.237278 273.453 +1 1 3 694 2.694 323.15 0 0 0.03104 -0.0125436 -0.0125436 0 0 0 1331.25 1.33641e-07 1.33638e-07 0 0 0 287.011 13.1202 0.242399 273.648 +1 1 3 695 2.695 323.15 0 0 0.0312 -0.0126222 -0.0126222 0 0 0 1331.87 1.33736e-07 1.33732e-07 0 0 0 287.224 13.1325 0.24759 273.844 +1 1 3 696 2.696 323.15 0 0 0.03136 -0.0127008 -0.0127008 0 0 0 1332.5 1.33829e-07 1.33826e-07 0 0 0 287.437 13.1449 0.252848 274.039 +1 1 3 697 2.697 323.15 0 0 0.03152 -0.0127794 -0.0127794 0 0 0 1333.13 1.33924e-07 1.3392e-07 0 0 0 287.65 13.1573 0.258174 274.235 +1 1 3 698 2.698 323.15 0 0 0.03168 -0.012858 -0.012858 0 0 0 1333.76 1.34017e-07 1.34013e-07 0 0 0 287.863 13.1697 0.263569 274.43 +1 1 3 699 2.699 323.15 0 0 0.03184 -0.0129366 -0.0129366 0 0 0 1334.39 1.34111e-07 1.34107e-07 0 0 0 288.077 13.1821 0.269031 274.626 +1 1 3 700 2.7 323.15 0 0 0.032 -0.0130152 -0.0130152 0 0 0 1335.01 1.34206e-07 1.34202e-07 0 0 0 288.29 13.1945 0.274562 274.821 +1 1 3 701 2.701 323.15 0 0 0.03216 -0.0130938 -0.0130938 0 0 0 1335.64 1.343e-07 1.34296e-07 0 0 0 288.504 13.2069 0.280161 275.017 +1 1 3 702 2.702 323.15 0 0 0.03232 -0.0131724 -0.0131724 0 0 0 1336.27 1.34395e-07 1.34391e-07 0 0 0 288.718 13.2193 0.285829 275.213 +1 1 3 703 2.703 323.15 0 0 0.03248 -0.013251 -0.013251 0 0 0 1336.9 1.34489e-07 1.34485e-07 0 0 0 288.932 13.2317 0.291564 275.408 +1 1 3 704 2.704 323.15 0 0 0.03264 -0.0133296 -0.0133296 0 0 0 1337.52 1.34583e-07 1.34579e-07 0 0 0 289.146 13.2441 0.297368 275.604 +1 1 3 705 2.705 323.15 0 0 0.0328 -0.0134082 -0.0134082 0 0 0 1338.15 1.34677e-07 1.34673e-07 0 0 0 289.36 13.2566 0.30324 275.8 +1 1 3 706 2.706 323.15 0 0 0.03296 -0.0134868 -0.0134868 0 0 0 1338.78 1.34772e-07 1.34768e-07 0 0 0 289.574 13.269 0.30918 275.996 +1 1 3 707 2.707 323.15 0 0 0.03312 -0.0135654 -0.0135654 0 0 0 1339.4 1.34866e-07 1.34862e-07 0 0 0 289.788 13.2814 0.315188 276.192 +1 1 3 708 2.708 323.15 0 0 0.03328 -0.013644 -0.013644 0 0 0 1340.03 1.3496e-07 1.34956e-07 0 0 0 290.002 13.2939 0.321264 276.387 +1 1 3 709 2.709 323.15 0 0 0.03344 -0.0137226 -0.0137226 0 0 0 1340.66 1.35054e-07 1.3505e-07 0 0 0 290.217 13.3063 0.327409 276.583 +1 1 3 710 2.71 323.15 0 0 0.0336 -0.0138012 -0.0138012 0 0 0 1341.28 1.35148e-07 1.35144e-07 0 0 0 290.432 13.3188 0.333622 276.779 +1 1 3 711 2.711 323.15 0 0 0.03376 -0.0138798 -0.0138798 0 0 0 1341.91 1.35242e-07 1.35239e-07 0 0 0 290.646 13.3312 0.339903 276.975 +1 1 3 712 2.712 323.15 0 0 0.03392 -0.0139584 -0.0139584 0 0 0 1342.54 1.35337e-07 1.35333e-07 0 0 0 290.861 13.3437 0.346252 277.171 +1 1 3 713 2.713 323.15 0 0 0.03408 -0.014037 -0.014037 0 0 0 1343.16 1.35431e-07 1.35427e-07 0 0 0 291.076 13.3561 0.352669 277.367 +1 1 3 714 2.714 323.15 0 0 0.03424 -0.0141156 -0.0141156 0 0 0 1343.79 1.35525e-07 1.35521e-07 0 0 0 291.291 13.3686 0.359154 277.563 +1 1 3 715 2.715 323.15 0 0 0.0344 -0.0141942 -0.0141942 0 0 0 1344.42 1.35619e-07 1.35615e-07 0 0 0 291.506 13.3811 0.365708 277.759 +1 1 3 716 2.716 323.15 0 0 0.03456 -0.0142728 -0.0142728 0 0 0 1345.04 1.35713e-07 1.3571e-07 0 0 0 291.721 13.3935 0.37233 277.955 +1 1 3 717 2.717 323.15 0 0 0.03472 -0.0143514 -0.0143514 0 0 0 1345.67 1.35808e-07 1.35804e-07 0 0 0 291.936 13.406 0.37902 278.151 +1 1 3 718 2.718 323.15 0 0 0.03488 -0.01443 -0.01443 0 0 0 1346.3 1.35902e-07 1.35898e-07 0 0 0 292.152 13.4185 0.385779 278.347 +1 1 3 719 2.719 323.15 0 0 0.03504 -0.0145086 -0.0145086 0 0 0 1346.92 1.35997e-07 1.35993e-07 0 0 0 292.367 13.431 0.392605 278.543 +1 1 3 720 2.72 323.15 0 0 0.0352 -0.0145872 -0.0145872 0 0 0 1347.55 1.36091e-07 1.36087e-07 0 0 0 292.583 13.4435 0.3995 278.74 +1 1 3 721 2.721 323.15 0 0 0.03536 -0.0146658 -0.0146658 0 0 0 1348.18 1.36185e-07 1.36181e-07 0 0 0 292.798 13.456 0.406463 278.936 +1 1 3 722 2.722 323.15 0 0 0.03552 -0.0147444 -0.0147444 0 0 0 1348.8 1.36279e-07 1.36276e-07 0 0 0 293.014 13.4685 0.413494 279.132 +1 1 3 723 2.723 323.15 0 0 0.03568 -0.014823 -0.014823 0 0 0 1349.43 1.36374e-07 1.3637e-07 0 0 0 293.23 13.481 0.420593 279.328 +1 1 3 724 2.724 323.15 0 0 0.03584 -0.0149016 -0.0149016 0 0 0 1350.05 1.36468e-07 1.36464e-07 0 0 0 293.446 13.4935 0.427761 279.525 +1 1 3 725 2.725 323.15 0 0 0.036 -0.0149802 -0.0149802 0 0 0 1350.68 1.36562e-07 1.36558e-07 0 0 0 293.662 13.506 0.434996 279.721 +1 1 3 726 2.726 323.15 0 0 0.03616 -0.0150588 -0.0150588 0 0 0 1351.31 1.36657e-07 1.36653e-07 0 0 0 293.878 13.5185 0.4423 279.917 +1 1 3 727 2.727 323.15 0 0 0.03632 -0.0151374 -0.0151374 0 0 0 1351.93 1.36751e-07 1.36747e-07 0 0 0 294.094 13.531 0.449672 280.114 +1 1 3 728 2.728 323.15 0 0 0.03648 -0.015216 -0.015216 0 0 0 1352.56 1.36846e-07 1.36841e-07 0 0 0 294.311 13.5436 0.457113 280.31 +1 1 3 729 2.729 323.15 0 0 0.03664 -0.0152946 -0.0152946 0 0 0 1353.18 1.3694e-07 1.36936e-07 0 0 0 294.527 13.5561 0.464621 280.506 +1 1 3 730 2.73 323.15 0 0 0.0368 -0.0153732 -0.0153732 0 0 0 1353.81 1.37035e-07 1.3703e-07 0 0 0 294.744 13.5686 0.472198 280.703 +1 1 3 731 2.731 323.15 0 0 0.03696 -0.0154518 -0.0154518 0 0 0 1354.43 1.37129e-07 1.37124e-07 0 0 0 294.96 13.5812 0.479843 280.899 +1 1 3 732 2.732 323.15 0 0 0.03712 -0.0155304 -0.0155304 0 0 0 1355.06 1.37223e-07 1.37218e-07 0 0 0 295.177 13.5937 0.487556 281.096 +1 1 3 733 2.733 323.15 0 0 0.03728 -0.015609 -0.015609 0 0 0 1355.68 1.37317e-07 1.37313e-07 0 0 0 295.394 13.6063 0.495338 281.292 +1 1 3 734 2.734 323.15 0 0 0.03744 -0.0156876 -0.0156876 0 0 0 1356.31 1.37411e-07 1.37407e-07 0 0 0 295.611 13.6188 0.503188 281.489 +1 1 3 735 2.735 323.15 0 0 0.0376 -0.0157662 -0.0157662 0 0 0 1356.93 1.37506e-07 1.37501e-07 0 0 0 295.828 13.6314 0.511106 281.685 +1 1 3 736 2.736 323.15 0 0 0.03776 -0.0158448 -0.0158448 0 0 0 1357.56 1.376e-07 1.37595e-07 0 0 0 296.045 13.6439 0.519092 281.882 +1 1 3 737 2.737 323.15 0 0 0.03792 -0.0159234 -0.0159234 0 0 0 1358.18 1.37694e-07 1.37689e-07 0 0 0 296.262 13.6565 0.527146 282.079 +1 1 3 738 2.738 323.15 0 0 0.03808 -0.016002 -0.016002 0 0 0 1358.81 1.37789e-07 1.37784e-07 0 0 0 296.48 13.6691 0.535269 282.275 +1 1 3 739 2.739 323.15 0 0 0.03824 -0.0160806 -0.0160806 0 0 0 1359.43 1.37883e-07 1.37878e-07 0 0 0 296.697 13.6816 0.543459 282.472 +1 1 3 740 2.74 323.15 0 0 0.0384 -0.0161592 -0.0161592 0 0 0 1360.06 1.37977e-07 1.37973e-07 0 0 0 296.915 13.6942 0.551718 282.669 +1 1 3 741 2.741 323.15 0 0 0.03856 -0.0162378 -0.0162378 0 0 0 1360.68 1.38072e-07 1.38067e-07 0 0 0 297.132 13.7068 0.560046 282.866 +1 1 3 742 2.742 323.15 0 0 0.03872 -0.0163164 -0.0163164 0 0 0 1361.31 1.38166e-07 1.38161e-07 0 0 0 297.35 13.7194 0.568441 283.062 +1 1 3 743 2.743 323.15 0 0 0.03888 -0.016395 -0.016395 0 0 0 1361.93 1.38261e-07 1.38256e-07 0 0 0 297.568 13.732 0.576905 283.259 +1 1 3 744 2.744 323.15 0 0 0.03904 -0.0164736 -0.0164736 0 0 0 1362.56 1.38354e-07 1.3835e-07 0 0 0 297.786 13.7446 0.585437 283.456 +1 1 3 745 2.745 323.15 0 0 0.0392 -0.0165522 -0.0165522 0 0 0 1363.18 1.38449e-07 1.38444e-07 0 0 0 298.004 13.7572 0.594037 283.653 +1 1 3 746 2.746 323.15 0 0 0.03936 -0.0166308 -0.0166308 0 0 0 1363.81 1.38544e-07 1.38539e-07 0 0 0 298.222 13.7698 0.602705 283.85 +1 1 3 747 2.747 323.15 0 0 0.03952 -0.0167094 -0.0167094 0 0 0 1364.43 1.38638e-07 1.38633e-07 0 0 0 298.44 13.7824 0.611442 284.047 +1 1 3 748 2.748 323.15 0 0 0.03968 -0.016788 -0.016788 0 0 0 1365.06 1.38732e-07 1.38727e-07 0 0 0 298.659 13.795 0.620247 284.244 +1 1 3 749 2.749 323.15 0 0 0.03984 -0.0168666 -0.0168666 0 0 0 1365.68 1.38826e-07 1.38822e-07 0 0 0 298.877 13.8077 0.62912 284.441 +1 1 3 750 2.75 323.15 0 0 0.04 -0.0169452 -0.0169452 0 0 0 1366.3 1.3892e-07 1.38916e-07 0 0 0 299.096 13.8203 0.638061 284.638 +1 1 3 751 2.751 323.15 0 0 0.04016 -0.0170239 -0.0170239 0 0 0 1366.93 1.39015e-07 1.39011e-07 0 0 0 299.315 13.8329 0.647071 284.835 +1 1 3 752 2.752 323.15 0 0 0.04032 -0.0171025 -0.0171025 0 0 0 1367.55 1.39109e-07 1.39105e-07 0 0 0 299.533 13.8455 0.656149 285.032 +1 1 3 753 2.753 323.15 0 0 0.04048 -0.0171811 -0.0171811 0 0 0 1368.18 1.39203e-07 1.39199e-07 0 0 0 299.752 13.8582 0.665295 285.229 +1 1 3 754 2.754 323.15 0 0 0.04064 -0.0172597 -0.0172597 0 0 0 1368.8 1.39297e-07 1.39293e-07 0 0 0 299.971 13.8708 0.674509 285.426 +1 1 3 755 2.755 323.15 0 0 0.0408 -0.0173383 -0.0173383 0 0 0 1369.42 1.39391e-07 1.39387e-07 0 0 0 300.19 13.8835 0.683792 285.623 +1 1 3 756 2.756 323.15 0 0 0.04096 -0.0174169 -0.0174169 0 0 0 1370.05 1.39485e-07 1.39481e-07 0 0 0 300.409 13.8961 0.693142 285.82 +1 1 3 757 2.757 323.15 0 0 0.04112 -0.0174955 -0.0174955 0 0 0 1370.67 1.39579e-07 1.39576e-07 0 0 0 300.629 13.9088 0.702562 286.017 +1 1 3 758 2.758 323.15 0 0 0.04128 -0.0175741 -0.0175741 0 0 0 1371.3 1.39674e-07 1.3967e-07 0 0 0 300.848 13.9214 0.712049 286.214 +1 1 3 759 2.759 323.15 0 0 0.04144 -0.0176527 -0.0176527 0 0 0 1371.92 1.39768e-07 1.39764e-07 0 0 0 301.067 13.9341 0.721604 286.412 +1 1 3 760 2.76 323.15 0 0 0.0416 -0.0177313 -0.0177313 0 0 0 1372.54 1.39862e-07 1.39859e-07 0 0 0 301.287 13.9468 0.731228 286.609 +1 1 3 761 2.761 323.15 0 0 0.04176 -0.0178099 -0.0178099 0 0 0 1373.17 1.39957e-07 1.39953e-07 0 0 0 301.507 13.9594 0.74092 286.806 +1 1 3 762 2.762 323.15 0 0 0.04192 -0.0178885 -0.0178885 0 0 0 1373.79 1.40052e-07 1.40048e-07 0 0 0 301.726 13.9721 0.750681 287.004 +1 1 3 763 2.763 323.15 0 0 0.04208 -0.0179671 -0.0179671 0 0 0 1374.41 1.40146e-07 1.40143e-07 0 0 0 301.946 13.9848 0.760509 287.201 +1 1 3 764 2.764 323.15 0 0 0.04224 -0.0180457 -0.0180457 0 0 0 1375.04 1.4024e-07 1.40237e-07 0 0 0 302.166 13.9975 0.770406 287.398 +1 1 3 765 2.765 323.15 0 0 0.0424 -0.0181243 -0.0181243 0 0 0 1375.66 1.40335e-07 1.40331e-07 0 0 0 302.386 14.0102 0.780371 287.596 +1 1 3 766 2.766 323.15 0 0 0.04256 -0.0182029 -0.0182029 0 0 0 1376.28 1.40429e-07 1.40425e-07 0 0 0 302.606 14.0229 0.790405 287.793 +1 1 3 767 2.767 323.15 0 0 0.04272 -0.0182815 -0.0182815 0 0 0 1376.91 1.40523e-07 1.4052e-07 0 0 0 302.827 14.0356 0.800506 287.991 +1 1 3 768 2.768 323.15 0 0 0.04288 -0.0183601 -0.0183601 0 0 0 1377.53 1.40617e-07 1.40614e-07 0 0 0 303.047 14.0483 0.810676 288.188 +1 1 3 769 2.769 323.15 0 0 0.04304 -0.0184388 -0.0184388 0 0 0 1378.15 1.40711e-07 1.40708e-07 0 0 0 303.267 14.061 0.820914 288.386 +1 1 3 770 2.77 323.15 0 0 0.0432 -0.0185174 -0.0185174 0 0 0 1378.78 1.40806e-07 1.40802e-07 0 0 0 303.488 14.0737 0.831221 288.583 +1 1 3 771 2.771 323.15 0 0 0.04336 -0.018596 -0.018596 0 0 0 1379.4 1.409e-07 1.40897e-07 0 0 0 303.709 14.0864 0.841595 288.781 +1 1 3 772 2.772 323.15 0 0 0.04352 -0.0186746 -0.0186746 0 0 0 1380.02 1.40994e-07 1.40991e-07 0 0 0 303.929 14.0992 0.852038 288.978 +1 1 3 773 2.773 323.15 0 0 0.04368 -0.0187532 -0.0187532 0 0 0 1380.64 1.41088e-07 1.41085e-07 0 0 0 304.15 14.1119 0.862549 289.176 +1 1 3 774 2.774 323.15 0 0 0.04384 -0.0188318 -0.0188318 0 0 0 1381.27 1.41182e-07 1.41178e-07 0 0 0 304.371 14.1246 0.873129 289.373 +1 1 3 775 2.775 323.15 0 0 0.044 -0.0189104 -0.0189104 0 0 0 1381.89 1.41276e-07 1.41272e-07 0 0 0 304.592 14.1374 0.883777 289.571 +1 1 3 776 2.776 323.15 0 0 0.04416 -0.018989 -0.018989 0 0 0 1382.51 1.4137e-07 1.41366e-07 0 0 0 304.813 14.1501 0.894493 289.769 +1 1 3 777 2.777 323.15 0 0 0.04432 -0.0190676 -0.0190676 0 0 0 1383.13 1.41464e-07 1.4146e-07 0 0 0 305.035 14.1628 0.905277 289.967 +1 1 3 778 2.778 323.15 0 0 0.04448 -0.0191462 -0.0191462 0 0 0 1383.76 1.41558e-07 1.41555e-07 0 0 0 305.256 14.1756 0.91613 290.164 +1 1 3 779 2.779 323.15 0 0 0.04464 -0.0192248 -0.0192248 0 0 0 1384.38 1.41653e-07 1.41649e-07 0 0 0 305.477 14.1883 0.92705 290.362 +1 1 3 780 2.78 323.15 0 0 0.0448 -0.0193034 -0.0193034 0 0 0 1385 1.41747e-07 1.41743e-07 0 0 0 305.699 14.2011 0.93804 290.56 +1 1 3 781 2.781 323.15 0 0 0.04496 -0.0193821 -0.0193821 0 0 0 1385.62 1.41841e-07 1.41837e-07 0 0 0 305.921 14.2139 0.949097 290.758 +1 1 3 782 2.782 323.15 0 0 0.04512 -0.0194607 -0.0194607 0 0 0 1386.25 1.41935e-07 1.41931e-07 0 0 0 306.142 14.2266 0.960223 290.956 +1 1 3 783 2.783 323.15 0 0 0.04528 -0.0195393 -0.0195393 0 0 0 1386.87 1.42029e-07 1.42026e-07 0 0 0 306.364 14.2394 0.971417 291.153 +1 1 3 784 2.784 323.15 0 0 0.04544 -0.0196179 -0.0196179 0 0 0 1387.49 1.42123e-07 1.4212e-07 0 0 0 306.586 14.2522 0.982679 291.351 +1 1 3 785 2.785 323.15 0 0 0.0456 -0.0196965 -0.0196965 0 0 0 1388.11 1.42217e-07 1.42214e-07 0 0 0 306.808 14.265 0.994009 291.549 +1 1 3 786 2.786 323.15 0 0 0.04576 -0.0197751 -0.0197751 0 0 0 1388.73 1.42312e-07 1.42309e-07 0 0 0 307.03 14.2778 1.00541 291.747 +1 1 3 787 2.787 323.15 0 0 0.04592 -0.0198537 -0.0198537 0 0 0 1389.36 1.42407e-07 1.42403e-07 0 0 0 307.253 14.2905 1.01688 291.945 +1 1 3 788 2.788 323.15 0 0 0.04608 -0.0199323 -0.0199323 0 0 0 1389.98 1.42501e-07 1.42497e-07 0 0 0 307.475 14.3033 1.02841 292.143 +1 1 3 789 2.789 323.15 0 0 0.04624 -0.0200109 -0.0200109 0 0 0 1390.6 1.42595e-07 1.42591e-07 0 0 0 307.697 14.3161 1.04001 292.341 +1 1 3 790 2.79 323.15 0 0 0.0464 -0.0200895 -0.0200895 0 0 0 1391.22 1.42688e-07 1.42685e-07 0 0 0 307.92 14.3289 1.05169 292.539 +1 1 3 791 2.791 323.15 0 0 0.04656 -0.0201681 -0.0201681 0 0 0 1391.84 1.42783e-07 1.42779e-07 0 0 0 308.143 14.3417 1.06343 292.737 +1 1 3 792 2.792 323.15 0 0 0.04672 -0.0202468 -0.0202468 0 0 0 1392.46 1.42877e-07 1.42874e-07 0 0 0 308.365 14.3546 1.07523 292.936 +1 1 3 793 2.793 323.15 0 0 0.04688 -0.0203254 -0.0203254 0 0 0 1393.09 1.42971e-07 1.42967e-07 0 0 0 308.588 14.3674 1.08711 293.134 +1 1 3 794 2.794 323.15 0 0 0.04704 -0.020404 -0.020404 0 0 0 1393.71 1.43065e-07 1.43062e-07 0 0 0 308.811 14.3802 1.09906 293.332 +1 1 3 795 2.795 323.15 0 0 0.0472 -0.0204826 -0.0204826 0 0 0 1394.33 1.4316e-07 1.43156e-07 0 0 0 309.034 14.393 1.11107 293.53 +1 1 3 796 2.796 323.15 0 0 0.04736 -0.0205612 -0.0205612 0 0 0 1394.95 1.43254e-07 1.43251e-07 0 0 0 309.257 14.4059 1.12315 293.728 +1 1 3 797 2.797 323.15 0 0 0.04752 -0.0206398 -0.0206398 0 0 0 1395.57 1.43348e-07 1.43345e-07 0 0 0 309.481 14.4187 1.1353 293.927 +1 1 3 798 2.798 323.15 0 0 0.04768 -0.0207184 -0.0207184 0 0 0 1396.19 1.43443e-07 1.4344e-07 0 0 0 309.704 14.4315 1.14752 294.125 +1 1 3 799 2.799 323.15 0 0 0.04784 -0.020797 -0.020797 0 0 0 1396.81 1.43538e-07 1.43534e-07 0 0 0 309.927 14.4444 1.15981 294.323 +1 1 3 800 2.8 323.15 0 0 0.048 -0.0208756 -0.0208756 0 0 0 1397.43 1.43632e-07 1.43628e-07 0 0 0 310.151 14.4572 1.17216 294.522 +1 1 3 801 2.801 323.15 0 0 0.04816 -0.0209543 -0.0209543 0 0 0 1398.06 1.43726e-07 1.43722e-07 0 0 0 310.375 14.4701 1.18459 294.72 +1 1 3 802 2.802 323.15 0 0 0.04832 -0.0210329 -0.0210329 0 0 0 1398.68 1.4382e-07 1.43817e-07 0 0 0 310.598 14.4829 1.19708 294.918 +1 1 3 803 2.803 323.15 0 0 0.04848 -0.0211115 -0.0211115 0 0 0 1399.3 1.43915e-07 1.43911e-07 0 0 0 310.822 14.4958 1.20964 295.117 +1 1 3 804 2.804 323.15 0 0 0.04864 -0.0211901 -0.0211901 0 0 0 1399.92 1.44009e-07 1.44005e-07 0 0 0 311.046 14.5087 1.22226 295.315 +1 1 3 805 2.805 323.15 0 0 0.0488 -0.0212687 -0.0212687 0 0 0 1400.54 1.44103e-07 1.44099e-07 0 0 0 311.27 14.5215 1.23496 295.514 +1 1 3 806 2.806 323.15 0 0 0.04896 -0.0213473 -0.0213473 0 0 0 1401.16 1.44197e-07 1.44194e-07 0 0 0 311.494 14.5344 1.24773 295.712 +1 1 3 807 2.807 323.15 0 0 0.04912 -0.0214259 -0.0214259 0 0 0 1401.78 1.44292e-07 1.44288e-07 0 0 0 311.718 14.5473 1.26056 295.911 +1 1 3 808 2.808 323.15 0 0 0.04928 -0.0215045 -0.0215045 0 0 0 1402.4 1.44386e-07 1.44382e-07 0 0 0 311.943 14.5602 1.27346 296.109 +1 1 3 809 2.809 323.15 0 0 0.04944 -0.0215832 -0.0215832 0 0 0 1403.02 1.4448e-07 1.44476e-07 0 0 0 312.167 14.573 1.28643 296.308 +1 1 3 810 2.81 323.15 0 0 0.0496 -0.0216618 -0.0216618 0 0 0 1403.64 1.44574e-07 1.4457e-07 0 0 0 312.392 14.5859 1.29947 296.506 +1 1 3 811 2.811 323.15 0 0 0.04976 -0.0217404 -0.0217404 0 0 0 1404.26 1.44669e-07 1.44665e-07 0 0 0 312.616 14.5988 1.31257 296.705 +1 1 3 812 2.812 323.15 0 0 0.04992 -0.021819 -0.021819 0 0 0 1404.88 1.44763e-07 1.44759e-07 0 0 0 312.841 14.6117 1.32575 296.904 +1 1 3 813 2.813 323.15 0 0 0.05008 -0.0218976 -0.0218976 0 0 0 1405.5 1.44857e-07 1.44853e-07 0 0 0 313.066 14.6246 1.33899 297.102 +1 1 3 814 2.814 323.15 0 0 0.05024 -0.0219762 -0.0219762 0 0 0 1406.12 1.44952e-07 1.44947e-07 0 0 0 313.291 14.6375 1.3523 297.301 +1 1 3 815 2.815 323.15 0 0 0.0504 -0.0220548 -0.0220548 0 0 0 1406.74 1.45046e-07 1.45042e-07 0 0 0 313.516 14.6505 1.36568 297.5 +1 1 3 816 2.816 323.15 0 0 0.05056 -0.0221334 -0.0221334 0 0 0 1407.36 1.4514e-07 1.45136e-07 0 0 0 313.741 14.6634 1.37913 297.699 +1 1 3 817 2.817 323.15 0 0 0.05072 -0.0222121 -0.0222121 0 0 0 1407.98 1.45235e-07 1.45231e-07 0 0 0 313.966 14.6763 1.39265 297.897 +1 1 3 818 2.818 323.15 0 0 0.05088 -0.0222907 -0.0222907 0 0 0 1408.6 1.45329e-07 1.45325e-07 0 0 0 314.192 14.6892 1.40623 298.096 +1 1 3 819 2.819 323.15 0 0 0.05104 -0.0223693 -0.0223693 0 0 0 1409.22 1.45423e-07 1.45419e-07 0 0 0 314.417 14.7022 1.41988 298.295 +1 1 3 820 2.82 323.15 0 0 0.0512 -0.0224479 -0.0224479 0 0 0 1409.84 1.45517e-07 1.45513e-07 0 0 0 314.643 14.7151 1.4336 298.494 +1 1 3 821 2.821 323.15 0 0 0.05136 -0.0225265 -0.0225265 0 0 0 1410.46 1.45612e-07 1.45607e-07 0 0 0 314.868 14.728 1.44739 298.693 +1 1 3 822 2.822 323.15 0 0 0.05152 -0.0226051 -0.0226051 0 0 0 1411.08 1.45706e-07 1.45701e-07 0 0 0 315.094 14.741 1.46125 298.892 +1 1 3 823 2.823 323.15 0 0 0.05168 -0.0226837 -0.0226837 0 0 0 1411.7 1.458e-07 1.45796e-07 0 0 0 315.32 14.7539 1.47518 299.091 +1 1 3 824 2.824 323.15 0 0 0.05184 -0.0227624 -0.0227624 0 0 0 1412.32 1.45894e-07 1.4589e-07 0 0 0 315.546 14.7669 1.48917 299.29 +1 1 3 825 2.825 323.15 0 0 0.052 -0.022841 -0.022841 0 0 0 1412.94 1.45989e-07 1.45985e-07 0 0 0 315.772 14.7798 1.50324 299.489 +1 1 3 826 2.826 323.15 0 0 0.05216 -0.0229196 -0.0229196 0 0 0 1413.56 1.46083e-07 1.46079e-07 0 0 0 315.998 14.7928 1.51737 299.688 +1 1 3 827 2.827 323.15 0 0 0.05232 -0.0229982 -0.0229982 0 0 0 1414.18 1.46178e-07 1.46173e-07 0 0 0 316.224 14.8058 1.53157 299.887 +1 1 3 828 2.828 323.15 0 0 0.05248 -0.0230768 -0.0230768 0 0 0 1414.8 1.46272e-07 1.46268e-07 0 0 0 316.45 14.8187 1.54583 300.086 +1 1 3 829 2.829 323.15 0 0 0.05264 -0.0231554 -0.0231554 0 0 0 1415.42 1.46366e-07 1.46362e-07 0 0 0 316.677 14.8317 1.56017 300.285 +1 1 3 830 2.83 323.15 0 0 0.0528 -0.0232341 -0.0232341 0 0 0 1416.04 1.4646e-07 1.46456e-07 0 0 0 316.903 14.8447 1.57457 300.484 +1 1 3 831 2.831 323.15 0 0 0.05296 -0.0233127 -0.0233127 0 0 0 1416.66 1.46554e-07 1.4655e-07 0 0 0 317.13 14.8577 1.58905 300.683 +1 1 3 832 2.832 323.15 0 0 0.05312 -0.0233913 -0.0233913 0 0 0 1417.28 1.46648e-07 1.46644e-07 0 0 0 317.357 14.8707 1.60359 300.882 +1 1 3 833 2.833 323.15 0 0 0.05328 -0.0234699 -0.0234699 0 0 0 1417.9 1.46742e-07 1.46738e-07 0 0 0 317.583 14.8837 1.6182 301.082 +1 1 3 834 2.834 323.15 0 0 0.05344 -0.0235485 -0.0235485 0 0 0 1418.51 1.46836e-07 1.46832e-07 0 0 0 317.81 14.8967 1.63288 301.281 +1 1 3 835 2.835 323.15 0 0 0.0536 -0.0236271 -0.0236271 0 0 0 1419.13 1.4693e-07 1.46926e-07 0 0 0 318.037 14.9097 1.64762 301.48 +1 1 3 836 2.836 323.15 0 0 0.05376 -0.0237057 -0.0237057 0 0 0 1419.75 1.47024e-07 1.4702e-07 0 0 0 318.264 14.9227 1.66244 301.679 +1 1 3 837 2.837 323.15 0 0 0.05392 -0.0237844 -0.0237844 0 0 0 1420.37 1.47118e-07 1.47114e-07 0 0 0 318.492 14.9357 1.67732 301.879 +1 1 3 838 2.838 323.15 0 0 0.05408 -0.023863 -0.023863 0 0 0 1420.99 1.47213e-07 1.47208e-07 0 0 0 318.719 14.9487 1.69227 302.078 +1 1 3 839 2.839 323.15 0 0 0.05424 -0.0239416 -0.0239416 0 0 0 1421.61 1.47307e-07 1.47302e-07 0 0 0 318.946 14.9617 1.70729 302.277 +1 1 3 840 2.84 323.15 0 0 0.0544 -0.0240202 -0.0240202 0 0 0 1422.23 1.47401e-07 1.47396e-07 0 0 0 319.174 14.9748 1.72238 302.477 +1 1 3 841 2.841 323.15 0 0 0.05456 -0.0240988 -0.0240988 0 0 0 1422.85 1.47495e-07 1.4749e-07 0 0 0 319.401 14.9878 1.73753 302.676 +1 1 3 842 2.842 323.15 0 0 0.05472 -0.0241774 -0.0241774 0 0 0 1423.46 1.47589e-07 1.47585e-07 0 0 0 319.629 15.0008 1.75276 302.876 +1 1 3 843 2.843 323.15 0 0 0.05488 -0.0242561 -0.0242561 0 0 0 1424.08 1.47683e-07 1.47679e-07 0 0 0 319.857 15.0139 1.76805 303.075 +1 1 3 844 2.844 323.15 0 0 0.05504 -0.0243347 -0.0243347 0 0 0 1424.7 1.47778e-07 1.47773e-07 0 0 0 320.085 15.0269 1.78341 303.275 +1 1 3 845 2.845 323.15 0 0 0.0552 -0.0244133 -0.0244133 0 0 0 1425.32 1.47872e-07 1.47867e-07 0 0 0 320.313 15.0399 1.79884 303.474 +1 1 3 846 2.846 323.15 0 0 0.05536 -0.0244919 -0.0244919 0 0 0 1425.94 1.47966e-07 1.47962e-07 0 0 0 320.541 15.053 1.81434 303.674 +1 1 3 847 2.847 323.15 0 0 0.05552 -0.0245705 -0.0245705 0 0 0 1426.56 1.4806e-07 1.48056e-07 0 0 0 320.769 15.0661 1.82991 303.873 +1 1 3 848 2.848 323.15 0 0 0.05568 -0.0246492 -0.0246492 0 0 0 1427.17 1.48154e-07 1.48149e-07 0 0 0 320.997 15.0791 1.84554 304.073 +1 1 3 849 2.849 323.15 0 0 0.05584 -0.0247278 -0.0247278 0 0 0 1427.79 1.48248e-07 1.48244e-07 0 0 0 321.226 15.0922 1.86124 304.272 +1 1 3 850 2.85 323.15 0 0 0.056 -0.0248064 -0.0248064 0 0 0 1428.41 1.48342e-07 1.48338e-07 0 0 0 321.454 15.1052 1.87701 304.472 +1 1 3 851 2.851 323.15 0 0 0.05616 -0.024885 -0.024885 0 0 0 1429.03 1.48436e-07 1.48432e-07 0 0 0 321.683 15.1183 1.89285 304.672 +1 1 3 852 2.852 323.15 0 0 0.05632 -0.0249636 -0.0249636 0 0 0 1429.65 1.48531e-07 1.48527e-07 0 0 0 321.912 15.1314 1.90876 304.872 +1 1 3 853 2.853 323.15 0 0 0.05648 -0.0250422 -0.0250422 0 0 0 1430.26 1.48625e-07 1.48621e-07 0 0 0 322.14 15.1445 1.92474 305.071 +1 1 3 854 2.854 323.15 0 0 0.05664 -0.0251209 -0.0251209 0 0 0 1430.88 1.48719e-07 1.48715e-07 0 0 0 322.369 15.1576 1.94078 305.271 +1 1 3 855 2.855 323.15 0 0 0.0568 -0.0251995 -0.0251995 0 0 0 1431.5 1.48813e-07 1.48809e-07 0 0 0 322.598 15.1707 1.9569 305.471 +1 1 3 856 2.856 323.15 0 0 0.05696 -0.0252781 -0.0252781 0 0 0 1432.12 1.48907e-07 1.48903e-07 0 0 0 322.827 15.1838 1.97308 305.671 +1 1 3 857 2.857 323.15 0 0 0.05712 -0.0253567 -0.0253567 0 0 0 1432.74 1.49001e-07 1.48998e-07 0 0 0 323.057 15.1969 1.98933 305.87 +1 1 3 858 2.858 323.15 0 0 0.05728 -0.0254353 -0.0254353 0 0 0 1433.35 1.49095e-07 1.49092e-07 0 0 0 323.286 15.21 2.00565 306.07 +1 1 3 859 2.859 323.15 0 0 0.05744 -0.025514 -0.025514 0 0 0 1433.97 1.4919e-07 1.49186e-07 0 0 0 323.515 15.2231 2.02203 306.27 +1 1 3 860 2.86 323.15 0 0 0.0576 -0.0255926 -0.0255926 0 0 0 1434.59 1.49284e-07 1.4928e-07 0 0 0 323.745 15.2362 2.03849 306.47 +1 1 3 861 2.861 323.15 0 0 0.05776 -0.0256712 -0.0256712 0 0 0 1435.21 1.49379e-07 1.49375e-07 0 0 0 323.974 15.2493 2.05501 306.67 +1 1 3 862 2.862 323.15 0 0 0.05792 -0.0257498 -0.0257498 0 0 0 1435.82 1.49473e-07 1.49469e-07 0 0 0 324.204 15.2624 2.0716 306.87 +1 1 3 863 2.863 323.15 0 0 0.05808 -0.0258284 -0.0258284 0 0 0 1436.44 1.49568e-07 1.49564e-07 0 0 0 324.434 15.2755 2.08826 307.07 +1 1 3 864 2.864 323.15 0 0 0.05824 -0.0259071 -0.0259071 0 0 0 1437.06 1.49662e-07 1.49658e-07 0 0 0 324.664 15.2887 2.10499 307.27 +1 1 3 865 2.865 323.15 0 0 0.0584 -0.0259857 -0.0259857 0 0 0 1437.67 1.49756e-07 1.49752e-07 0 0 0 324.894 15.3018 2.12179 307.47 +1 1 3 866 2.866 323.15 0 0 0.05856 -0.0260643 -0.0260643 0 0 0 1438.29 1.4985e-07 1.49846e-07 0 0 0 325.124 15.3149 2.13865 307.67 +1 1 3 867 2.867 323.15 0 0 0.05872 -0.0261429 -0.0261429 0 0 0 1438.91 1.49945e-07 1.49941e-07 0 0 0 325.354 15.3281 2.15559 307.87 +1 1 3 868 2.868 323.15 0 0 0.05888 -0.0262215 -0.0262215 0 0 0 1439.53 1.50039e-07 1.50035e-07 0 0 0 325.584 15.3412 2.17259 308.07 +1 1 3 869 2.869 323.15 0 0 0.05904 -0.0263002 -0.0263002 0 0 0 1440.14 1.50133e-07 1.50129e-07 0 0 0 325.815 15.3544 2.18966 308.271 +1 1 3 870 2.87 323.15 0 0 0.0592 -0.0263788 -0.0263788 0 0 0 1440.76 1.50227e-07 1.50223e-07 0 0 0 326.045 15.3675 2.2068 308.471 +1 1 3 871 2.871 323.15 0 0 0.05936 -0.0264574 -0.0264574 0 0 0 1441.38 1.50322e-07 1.50318e-07 0 0 0 326.276 15.3807 2.22401 308.671 +1 1 3 872 2.872 323.15 0 0 0.05952 -0.026536 -0.026536 0 0 0 1441.99 1.50416e-07 1.50412e-07 0 0 0 326.506 15.3939 2.24128 308.871 +1 1 3 873 2.873 323.15 0 0 0.05968 -0.0266146 -0.0266146 0 0 0 1442.61 1.5051e-07 1.50506e-07 0 0 0 326.737 15.407 2.25863 309.071 +1 1 3 874 2.874 323.15 0 0 0.05984 -0.0266933 -0.0266933 0 0 0 1443.23 1.50604e-07 1.506e-07 0 0 0 326.968 15.4202 2.27604 309.272 +1 1 3 875 2.875 323.15 0 0 0.06 -0.0267719 -0.0267719 0 0 0 1443.84 1.50698e-07 1.50694e-07 0 0 0 327.199 15.4334 2.29352 309.472 +1 1 3 876 2.876 323.15 0 0 0.06016 -0.0268505 -0.0268505 0 0 0 1444.46 1.50792e-07 1.50789e-07 0 0 0 327.43 15.4466 2.31107 309.672 +1 1 3 877 2.877 323.15 0 0 0.06032 -0.0269291 -0.0269291 0 0 0 1445.08 1.50887e-07 1.50883e-07 0 0 0 327.661 15.4598 2.32868 309.873 +1 1 3 878 2.878 323.15 0 0 0.06048 -0.0270078 -0.0270078 0 0 0 1445.69 1.50981e-07 1.50977e-07 0 0 0 327.892 15.473 2.34637 310.073 +1 1 3 879 2.879 323.15 0 0 0.06064 -0.0270864 -0.0270864 0 0 0 1446.31 1.51076e-07 1.51072e-07 0 0 0 328.124 15.4862 2.36412 310.273 +1 1 3 880 2.88 323.15 0 0 0.0608 -0.027165 -0.027165 0 0 0 1446.92 1.5117e-07 1.51166e-07 0 0 0 328.355 15.4994 2.38195 310.474 +1 1 3 881 2.881 323.15 0 0 0.06096 -0.0272436 -0.0272436 0 0 0 1447.54 1.51264e-07 1.5126e-07 0 0 0 328.587 15.5126 2.39984 310.674 +1 1 3 882 2.882 323.15 0 0 0.06112 -0.0273222 -0.0273222 0 0 0 1448.16 1.51358e-07 1.51355e-07 0 0 0 328.818 15.5258 2.4178 310.875 +1 1 3 883 2.883 323.15 0 0 0.06128 -0.0274009 -0.0274009 0 0 0 1448.77 1.51453e-07 1.51449e-07 0 0 0 329.05 15.539 2.43583 311.075 +1 1 3 884 2.884 323.15 0 0 0.06144 -0.0274795 -0.0274795 0 0 0 1449.39 1.51547e-07 1.51544e-07 0 0 0 329.282 15.5522 2.45392 311.276 +1 1 3 885 2.885 323.15 0 0 0.0616 -0.0275581 -0.0275581 0 0 0 1450.01 1.51642e-07 1.51638e-07 0 0 0 329.514 15.5654 2.47209 311.476 +1 1 3 886 2.886 323.15 0 0 0.06176 -0.0276367 -0.0276367 0 0 0 1450.62 1.51736e-07 1.51733e-07 0 0 0 329.746 15.5787 2.49032 311.677 +1 1 3 887 2.887 323.15 0 0 0.06192 -0.0277154 -0.0277154 0 0 0 1451.24 1.5183e-07 1.51827e-07 0 0 0 329.978 15.5919 2.50862 311.878 +1 1 3 888 2.888 323.15 0 0 0.06208 -0.027794 -0.027794 0 0 0 1451.85 1.51924e-07 1.51921e-07 0 0 0 330.21 15.6051 2.52699 312.078 +1 1 3 889 2.889 323.15 0 0 0.06224 -0.0278726 -0.0278726 0 0 0 1452.47 1.52018e-07 1.52015e-07 0 0 0 330.443 15.6184 2.54543 312.279 +1 1 3 890 2.89 323.15 0 0 0.0624 -0.0279512 -0.0279512 0 0 0 1453.08 1.52112e-07 1.52109e-07 0 0 0 330.675 15.6316 2.56393 312.48 +1 1 3 891 2.891 323.15 0 0 0.06256 -0.0280298 -0.0280298 0 0 0 1453.7 1.52206e-07 1.52203e-07 0 0 0 330.908 15.6449 2.58251 312.68 +1 1 3 892 2.892 323.15 0 0 0.06272 -0.0281085 -0.0281085 0 0 0 1454.32 1.523e-07 1.52297e-07 0 0 0 331.14 15.6581 2.60115 312.881 +1 1 3 893 2.893 323.15 0 0 0.06288 -0.0281871 -0.0281871 0 0 0 1454.93 1.52394e-07 1.52391e-07 0 0 0 331.373 15.6714 2.61986 313.082 +1 1 3 894 2.894 323.15 0 0 0.06304 -0.0282657 -0.0282657 0 0 0 1455.55 1.52489e-07 1.52485e-07 0 0 0 331.606 15.6846 2.63864 313.283 +1 1 3 895 2.895 323.15 0 0 0.0632 -0.0283443 -0.0283443 0 0 0 1456.16 1.52583e-07 1.5258e-07 0 0 0 331.839 15.6979 2.65749 313.484 +1 1 3 896 2.896 323.15 0 0 0.06336 -0.028423 -0.028423 0 0 0 1456.78 1.52677e-07 1.52673e-07 0 0 0 332.072 15.7112 2.67641 313.684 +1 1 3 897 2.897 323.15 0 0 0.06352 -0.0285016 -0.0285016 0 0 0 1457.39 1.52771e-07 1.52768e-07 0 0 0 332.305 15.7244 2.6954 313.885 +1 1 3 898 2.898 323.15 0 0 0.06368 -0.0285802 -0.0285802 0 0 0 1458.01 1.52865e-07 1.52862e-07 0 0 0 332.538 15.7377 2.71445 314.086 +1 1 3 899 2.899 323.15 0 0 0.06384 -0.0286588 -0.0286588 0 0 0 1458.62 1.52959e-07 1.52956e-07 0 0 0 332.772 15.751 2.73357 314.287 +1 1 3 900 2.9 323.15 0 0 0.064 -0.0287375 -0.0287375 0 0 0 1459.24 1.53053e-07 1.5305e-07 0 0 0 333.005 15.7643 2.75276 314.488 +1 1 3 901 2.901 323.15 0 0 0.06416 -0.0288161 -0.0288161 0 0 0 1459.85 1.53147e-07 1.53144e-07 0 0 0 333.239 15.7776 2.77202 314.689 +1 1 3 902 2.902 323.15 0 0 0.06432 -0.0288947 -0.0288947 0 0 0 1460.47 1.53241e-07 1.53239e-07 0 0 0 333.472 15.7909 2.79135 314.89 +1 1 3 903 2.903 323.15 0 0 0.06448 -0.0289733 -0.0289733 0 0 0 1461.08 1.53336e-07 1.53333e-07 0 0 0 333.706 15.8042 2.81074 315.091 +1 1 3 904 2.904 323.15 0 0 0.06464 -0.029052 -0.029052 0 0 0 1461.7 1.53431e-07 1.53428e-07 0 0 0 333.94 15.8175 2.83021 315.292 +1 1 3 905 2.905 323.15 0 0 0.0648 -0.0291306 -0.0291306 0 0 0 1462.31 1.53525e-07 1.53522e-07 0 0 0 334.174 15.8308 2.84974 315.493 +1 1 3 906 2.906 323.15 0 0 0.06496 -0.0292092 -0.0292092 0 0 0 1462.93 1.53619e-07 1.53616e-07 0 0 0 334.408 15.8441 2.86934 315.694 +1 1 3 907 2.907 323.15 0 0 0.06512 -0.0292878 -0.0292878 0 0 0 1463.54 1.53713e-07 1.5371e-07 0 0 0 334.642 15.8574 2.88901 315.895 +1 1 3 908 2.908 323.15 0 0 0.06528 -0.0293665 -0.0293665 0 0 0 1464.16 1.53808e-07 1.53805e-07 0 0 0 334.876 15.8708 2.90875 316.097 +1 1 3 909 2.909 323.15 0 0 0.06544 -0.0294451 -0.0294451 0 0 0 1464.77 1.53902e-07 1.53899e-07 0 0 0 335.11 15.8841 2.92856 316.298 +1 1 3 910 2.91 323.15 0 0 0.0656 -0.0295237 -0.0295237 0 0 0 1465.39 1.53996e-07 1.53993e-07 0 0 0 335.345 15.8974 2.94843 316.499 +1 1 3 911 2.911 323.15 0 0 0.06576 -0.0296023 -0.0296023 0 0 0 1466 1.54091e-07 1.54088e-07 0 0 0 335.579 15.9108 2.96837 316.7 +1 1 3 912 2.912 323.15 0 0 0.06592 -0.029681 -0.029681 0 0 0 1466.62 1.54185e-07 1.54182e-07 0 0 0 335.814 15.9241 2.98839 316.901 +1 1 3 913 2.913 323.15 0 0 0.06608 -0.0297596 -0.0297596 0 0 0 1467.23 1.5428e-07 1.54276e-07 0 0 0 336.049 15.9375 3.00847 317.103 +1 1 3 914 2.914 323.15 0 0 0.06624 -0.0298382 -0.0298382 0 0 0 1467.85 1.54374e-07 1.5437e-07 0 0 0 336.283 15.9508 3.02861 317.304 +1 1 3 915 2.915 323.15 0 0 0.0664 -0.0299168 -0.0299168 0 0 0 1468.46 1.54469e-07 1.54465e-07 0 0 0 336.518 15.9642 3.04883 317.505 +1 1 3 916 2.916 323.15 0 0 0.06656 -0.0299955 -0.0299955 0 0 0 1469.07 1.54563e-07 1.54559e-07 0 0 0 336.753 15.9775 3.06912 317.707 +1 1 3 917 2.917 323.15 0 0 0.06672 -0.0300741 -0.0300741 0 0 0 1469.69 1.54657e-07 1.54653e-07 0 0 0 336.988 15.9909 3.08947 317.908 +1 1 3 918 2.918 323.15 0 0 0.06688 -0.0301527 -0.0301527 0 0 0 1470.3 1.54751e-07 1.54748e-07 0 0 0 337.224 16.0043 3.10989 318.109 +1 1 3 919 2.919 323.15 0 0 0.06704 -0.0302314 -0.0302314 0 0 0 1470.92 1.54845e-07 1.54842e-07 0 0 0 337.459 16.0176 3.13038 318.311 +1 1 3 920 2.92 323.15 0 0 0.0672 -0.03031 -0.03031 0 0 0 1471.53 1.5494e-07 1.54936e-07 0 0 0 337.694 16.031 3.15094 318.512 +1 1 3 921 2.921 323.15 0 0 0.06736 -0.0303886 -0.0303886 0 0 0 1472.14 1.55034e-07 1.5503e-07 0 0 0 337.93 16.0444 3.17157 318.714 +1 1 3 922 2.922 323.15 0 0 0.06752 -0.0304672 -0.0304672 0 0 0 1472.76 1.55128e-07 1.55124e-07 0 0 0 338.165 16.0578 3.19226 318.915 +1 1 3 923 2.923 323.15 0 0 0.06768 -0.0305459 -0.0305459 0 0 0 1473.37 1.55222e-07 1.55219e-07 0 0 0 338.401 16.0712 3.21303 319.117 +1 1 3 924 2.924 323.15 0 0 0.06784 -0.0306245 -0.0306245 0 0 0 1473.99 1.55317e-07 1.55313e-07 0 0 0 338.637 16.0845 3.23386 319.318 +1 1 3 925 2.925 323.15 0 0 0.068 -0.0307031 -0.0307031 0 0 0 1474.6 1.55411e-07 1.55407e-07 0 0 0 338.873 16.0979 3.25476 319.52 +1 1 3 926 2.926 323.15 0 0 0.06816 -0.0307817 -0.0307817 0 0 0 1475.21 1.55504e-07 1.55501e-07 0 0 0 339.109 16.1114 3.27573 319.722 +1 1 3 927 2.927 323.15 0 0 0.06832 -0.0308604 -0.0308604 0 0 0 1475.83 1.55599e-07 1.55595e-07 0 0 0 339.345 16.1248 3.29677 319.923 +1 1 3 928 2.928 323.15 0 0 0.06848 -0.030939 -0.030939 0 0 0 1476.44 1.55693e-07 1.55689e-07 0 0 0 339.581 16.1382 3.31788 320.125 +1 1 3 929 2.929 323.15 0 0 0.06864 -0.0310176 -0.0310176 0 0 0 1477.06 1.55787e-07 1.55784e-07 0 0 0 339.817 16.1516 3.33905 320.327 +1 1 3 930 2.93 323.15 0 0 0.0688 -0.0310963 -0.0310963 0 0 0 1477.67 1.55882e-07 1.55878e-07 0 0 0 340.054 16.165 3.3603 320.528 +1 1 3 931 2.931 323.15 0 0 0.06896 -0.0311749 -0.0311749 0 0 0 1478.28 1.55976e-07 1.55972e-07 0 0 0 340.29 16.1784 3.38161 320.73 +1 1 3 932 2.932 323.15 0 0 0.06912 -0.0312535 -0.0312535 0 0 0 1478.9 1.5607e-07 1.56066e-07 0 0 0 340.527 16.1919 3.40299 320.932 +1 1 3 933 2.933 323.15 0 0 0.06928 -0.0313321 -0.0313321 0 0 0 1479.51 1.56164e-07 1.5616e-07 0 0 0 340.763 16.2053 3.42444 321.134 +1 1 3 934 2.934 323.15 0 0 0.06944 -0.0314108 -0.0314108 0 0 0 1480.12 1.56259e-07 1.56255e-07 0 0 0 341 16.2187 3.44595 321.335 +1 1 3 935 2.935 323.15 0 0 0.0696 -0.0314894 -0.0314894 0 0 0 1480.74 1.56354e-07 1.5635e-07 0 0 0 341.237 16.2322 3.46754 321.537 +1 1 3 936 2.936 323.15 0 0 0.06976 -0.031568 -0.031568 0 0 0 1481.35 1.56449e-07 1.56445e-07 0 0 0 341.474 16.2456 3.48919 321.739 +1 1 3 937 2.937 323.15 0 0 0.06992 -0.0316467 -0.0316467 0 0 0 1481.96 1.56544e-07 1.5654e-07 0 0 0 341.711 16.2591 3.51092 321.941 +1 1 3 938 2.938 323.15 0 0 0.07008 -0.0317253 -0.0317253 0 0 0 1482.57 1.56637e-07 1.56633e-07 0 0 0 341.948 16.2725 3.53271 322.143 +1 1 3 939 2.939 323.15 0 0 0.07024 -0.0318039 -0.0318039 0 0 0 1483.19 1.56732e-07 1.56728e-07 0 0 0 342.185 16.286 3.55457 322.345 +1 1 3 940 2.94 323.15 0 0 0.0704 -0.0318826 -0.0318826 0 0 0 1483.8 1.56826e-07 1.56822e-07 0 0 0 342.423 16.2994 3.57649 322.547 +1 1 3 941 2.941 323.15 0 0 0.07056 -0.0319612 -0.0319612 0 0 0 1484.41 1.5692e-07 1.56916e-07 0 0 0 342.66 16.3129 3.59849 322.749 +1 1 3 942 2.942 323.15 0 0 0.07072 -0.0320398 -0.0320398 0 0 0 1485.03 1.57013e-07 1.5701e-07 0 0 0 342.898 16.3264 3.62055 322.951 +1 1 3 943 2.943 323.15 0 0 0.07088 -0.0321184 -0.0321184 0 0 0 1485.64 1.57108e-07 1.57105e-07 0 0 0 343.136 16.3399 3.64269 323.153 +1 1 3 944 2.944 323.15 0 0 0.07104 -0.0321971 -0.0321971 0 0 0 1486.25 1.57202e-07 1.57199e-07 0 0 0 343.373 16.3533 3.66489 323.355 +1 1 3 945 2.945 323.15 0 0 0.0712 -0.0322757 -0.0322757 0 0 0 1486.86 1.57297e-07 1.57293e-07 0 0 0 343.611 16.3668 3.68716 323.557 +1 1 3 946 2.946 323.15 0 0 0.07136 -0.0323543 -0.0323543 0 0 0 1487.48 1.57391e-07 1.57388e-07 0 0 0 343.849 16.3803 3.7095 323.759 +1 1 3 947 2.947 323.15 0 0 0.07152 -0.032433 -0.032433 0 0 0 1488.09 1.57485e-07 1.57482e-07 0 0 0 344.087 16.3938 3.7319 323.961 +1 1 3 948 2.948 323.15 0 0 0.07168 -0.0325116 -0.0325116 0 0 0 1488.7 1.57579e-07 1.57576e-07 0 0 0 344.325 16.4073 3.75438 324.164 +1 1 3 949 2.949 323.15 0 0 0.07184 -0.0325902 -0.0325902 0 0 0 1489.31 1.57673e-07 1.5767e-07 0 0 0 344.563 16.4208 3.77692 324.366 +1 1 3 950 2.95 323.15 0 0 0.072 -0.0326689 -0.0326689 0 0 0 1489.93 1.57767e-07 1.57764e-07 0 0 0 344.802 16.4343 3.79954 324.568 +1 1 3 951 2.951 323.15 0 0 0.07216 -0.0327475 -0.0327475 0 0 0 1490.54 1.57862e-07 1.57858e-07 0 0 0 345.04 16.4478 3.82222 324.77 +1 1 3 952 2.952 323.15 0 0 0.07232 -0.0328261 -0.0328261 0 0 0 1491.15 1.57956e-07 1.57952e-07 0 0 0 345.279 16.4614 3.84497 324.972 +1 1 3 953 2.953 323.15 0 0 0.07248 -0.0329047 -0.0329047 0 0 0 1491.76 1.58051e-07 1.58047e-07 0 0 0 345.517 16.4749 3.86778 325.175 +1 1 3 954 2.954 323.15 0 0 0.07264 -0.0329834 -0.0329834 0 0 0 1492.38 1.58144e-07 1.58141e-07 0 0 0 345.756 16.4884 3.89067 325.377 +1 1 3 955 2.955 323.15 0 0 0.0728 -0.033062 -0.033062 0 0 0 1492.99 1.58239e-07 1.58235e-07 0 0 0 345.995 16.5019 3.91363 325.579 +1 1 3 956 2.956 323.15 0 0 0.07296 -0.0331406 -0.0331406 0 0 0 1493.6 1.58332e-07 1.58329e-07 0 0 0 346.234 16.5155 3.93665 325.782 +1 1 3 957 2.957 323.15 0 0 0.07312 -0.0332193 -0.0332193 0 0 0 1494.21 1.58427e-07 1.58424e-07 0 0 0 346.473 16.529 3.95974 325.984 +1 1 3 958 2.958 323.15 0 0 0.07328 -0.0332979 -0.0332979 0 0 0 1494.82 1.58522e-07 1.58519e-07 0 0 0 346.712 16.5425 3.9829 326.187 +1 1 3 959 2.959 323.15 0 0 0.07344 -0.0333765 -0.0333765 0 0 0 1495.44 1.58616e-07 1.58613e-07 0 0 0 346.951 16.5561 4.00613 326.389 +1 1 3 960 2.96 323.15 0 0 0.0736 -0.0334552 -0.0334552 0 0 0 1496.05 1.5871e-07 1.58707e-07 0 0 0 347.191 16.5696 4.02943 326.592 +1 1 3 961 2.961 323.15 0 0 0.07376 -0.0335338 -0.0335338 0 0 0 1496.66 1.58804e-07 1.58801e-07 0 0 0 347.43 16.5832 4.05279 326.794 +1 1 3 962 2.962 323.15 0 0 0.07392 -0.0336124 -0.0336124 0 0 0 1497.27 1.58898e-07 1.58895e-07 0 0 0 347.67 16.5968 4.07623 326.997 +1 1 3 963 2.963 323.15 0 0 0.07408 -0.0336911 -0.0336911 0 0 0 1497.88 1.58992e-07 1.58989e-07 0 0 0 347.909 16.6103 4.09973 327.199 +1 1 3 964 2.964 323.15 0 0 0.07424 -0.0337697 -0.0337697 0 0 0 1498.5 1.59086e-07 1.59083e-07 0 0 0 348.149 16.6239 4.1233 327.402 +1 1 3 965 2.965 323.15 0 0 0.0744 -0.0338483 -0.0338483 0 0 0 1499.11 1.59181e-07 1.59177e-07 0 0 0 348.389 16.6375 4.14694 327.604 +1 1 3 966 2.966 323.15 0 0 0.07456 -0.033927 -0.033927 0 0 0 1499.72 1.59275e-07 1.59271e-07 0 0 0 348.629 16.651 4.17065 327.807 +1 1 3 967 2.967 323.15 0 0 0.07472 -0.0340056 -0.0340056 0 0 0 1500.33 1.59369e-07 1.59366e-07 0 0 0 348.869 16.6646 4.19442 328.01 +1 1 3 968 2.968 323.15 0 0 0.07488 -0.0340842 -0.0340842 0 0 0 1500.94 1.59465e-07 1.59461e-07 0 0 0 349.109 16.6782 4.21827 328.212 +1 1 3 969 2.969 323.15 0 0 0.07504 -0.0341629 -0.0341629 0 0 0 1501.55 1.59559e-07 1.59555e-07 0 0 0 349.349 16.6918 4.24218 328.415 +1 1 3 970 2.97 323.15 0 0 0.0752 -0.0342415 -0.0342415 0 0 0 1502.16 1.59653e-07 1.59649e-07 0 0 0 349.589 16.7054 4.26616 328.618 +1 1 3 971 2.971 323.15 0 0 0.07536 -0.0343201 -0.0343201 0 0 0 1502.78 1.59748e-07 1.59744e-07 0 0 0 349.83 16.719 4.29021 328.82 +1 1 3 972 2.972 323.15 0 0 0.07552 -0.0343988 -0.0343988 0 0 0 1503.39 1.59842e-07 1.59839e-07 0 0 0 350.07 16.7326 4.31433 329.023 +1 1 3 973 2.973 323.15 0 0 0.07568 -0.0344774 -0.0344774 0 0 0 1504 1.59937e-07 1.59933e-07 0 0 0 350.311 16.7462 4.33852 329.226 +1 1 3 974 2.974 323.15 0 0 0.07584 -0.034556 -0.034556 0 0 0 1504.61 1.60032e-07 1.60028e-07 0 0 0 350.551 16.7598 4.36278 329.429 +1 1 3 975 2.975 323.15 0 0 0.076 -0.0346347 -0.0346347 0 0 0 1505.22 1.60127e-07 1.60123e-07 0 0 0 350.792 16.7734 4.3871 329.632 +1 1 3 976 2.976 323.15 0 0 0.07616 -0.0347133 -0.0347133 0 0 0 1505.83 1.60221e-07 1.60217e-07 0 0 0 351.033 16.7871 4.41149 329.834 +1 1 3 977 2.977 323.15 0 0 0.07632 -0.0347919 -0.0347919 0 0 0 1506.44 1.60315e-07 1.60311e-07 0 0 0 351.274 16.8007 4.43595 330.037 +1 1 3 978 2.978 323.15 0 0 0.07648 -0.0348706 -0.0348706 0 0 0 1507.05 1.60409e-07 1.60405e-07 0 0 0 351.515 16.8143 4.46048 330.24 +1 1 3 979 2.979 323.15 0 0 0.07664 -0.0349492 -0.0349492 0 0 0 1507.66 1.60503e-07 1.605e-07 0 0 0 351.756 16.8279 4.48508 330.443 +1 1 3 980 2.98 323.15 0 0 0.0768 -0.0350278 -0.0350278 0 0 0 1508.28 1.60598e-07 1.60595e-07 0 0 0 351.998 16.8416 4.50975 330.646 +1 1 3 981 2.981 323.15 0 0 0.07696 -0.0351065 -0.0351065 0 0 0 1508.89 1.60691e-07 1.60688e-07 0 0 0 352.239 16.8552 4.53448 330.849 +1 1 3 982 2.982 323.15 0 0 0.07712 -0.0351851 -0.0351851 0 0 0 1509.5 1.60786e-07 1.60783e-07 0 0 0 352.48 16.8689 4.55929 331.052 +1 1 3 983 2.983 323.15 0 0 0.07728 -0.0352637 -0.0352637 0 0 0 1510.11 1.6088e-07 1.60876e-07 0 0 0 352.722 16.8825 4.58416 331.255 +1 1 3 984 2.984 323.15 0 0 0.07744 -0.0353424 -0.0353424 0 0 0 1510.72 1.60974e-07 1.60971e-07 0 0 0 352.964 16.8962 4.6091 331.458 +1 1 3 985 2.985 323.15 0 0 0.0776 -0.035421 -0.035421 0 0 0 1511.33 1.61068e-07 1.61065e-07 0 0 0 353.205 16.9098 4.63411 331.661 +1 1 3 986 2.986 323.15 0 0 0.07776 -0.0354996 -0.0354996 0 0 0 1511.94 1.61162e-07 1.61159e-07 0 0 0 353.447 16.9235 4.65919 331.865 +1 1 3 987 2.987 323.15 0 0 0.07792 -0.0355783 -0.0355783 0 0 0 1512.55 1.61257e-07 1.61254e-07 0 0 0 353.689 16.9372 4.68433 332.068 +1 1 3 988 2.988 323.15 0 0 0.07808 -0.0356569 -0.0356569 0 0 0 1513.16 1.61351e-07 1.61347e-07 0 0 0 353.931 16.9508 4.70955 332.271 +1 1 3 989 2.989 323.15 0 0 0.07824 -0.0357355 -0.0357355 0 0 0 1513.77 1.61445e-07 1.61442e-07 0 0 0 354.173 16.9645 4.73483 332.474 +1 1 3 990 2.99 323.15 0 0 0.0784 -0.0358142 -0.0358142 0 0 0 1514.38 1.6154e-07 1.61536e-07 0 0 0 354.416 16.9782 4.76018 332.677 +1 1 3 991 2.991 323.15 0 0 0.07856 -0.0358928 -0.0358928 0 0 0 1514.99 1.61634e-07 1.6163e-07 0 0 0 354.658 16.9919 4.7856 332.881 +1 1 3 992 2.992 323.15 0 0 0.07872 -0.0359715 -0.0359715 0 0 0 1515.6 1.61729e-07 1.61725e-07 0 0 0 354.9 17.0056 4.81109 333.084 +1 1 3 993 2.993 323.15 0 0 0.07888 -0.0360501 -0.0360501 0 0 0 1516.21 1.61823e-07 1.6182e-07 0 0 0 355.143 17.0193 4.83665 333.287 +1 1 3 994 2.994 323.15 0 0 0.07904 -0.0361287 -0.0361287 0 0 0 1516.82 1.61917e-07 1.61913e-07 0 0 0 355.386 17.033 4.86227 333.49 +1 1 3 995 2.995 323.15 0 0 0.0792 -0.0362074 -0.0362074 0 0 0 1517.43 1.62011e-07 1.62007e-07 0 0 0 355.628 17.0467 4.88797 333.694 +1 1 3 996 2.996 323.15 0 0 0.07936 -0.036286 -0.036286 0 0 0 1518.04 1.62105e-07 1.62101e-07 0 0 0 355.871 17.0604 4.91373 333.897 +1 1 3 997 2.997 323.15 0 0 0.07952 -0.0363646 -0.0363646 0 0 0 1518.65 1.62198e-07 1.62195e-07 0 0 0 356.114 17.0741 4.93956 334.101 +1 1 3 998 2.998 323.15 0 0 0.07968 -0.0364433 -0.0364433 0 0 0 1519.26 1.62293e-07 1.6229e-07 0 0 0 356.357 17.0878 4.96546 334.304 +1 1 3 999 2.999 323.15 0 0 0.07984 -0.0365219 -0.0365219 0 0 0 1519.87 1.62387e-07 1.62384e-07 0 0 0 356.6 17.1015 4.99143 334.507 +1 1 3 1000 3 323.15 0 0 0.08 -0.0366005 -0.0366005 0 0 0 1520.48 1.62481e-07 1.62478e-07 0 0 0 356.844 17.1153 5.01747 334.711